testing consul_kv.py isolation. I currently see two problems:
- with my first pr can I be sure the behaviour does now not break for the usecase where no token is provided ? #2
- there are other params in the same categroy ansible-collections/community.general#2126 (comment) do we treat then as well
- #3
- see also next section as an attempt to understand this category of parameters.
- I have set a trigger that runs playbook.yml on my infrastructure against my consul.
- Logs are automatically published to https://publog.ci.fkuep.de/consul-kv-github/RUN-NUMBER
- index.html has html of colored output
- console-ascii-consul-kv-github-RUN-NUMBER.log is the console log in ascii with ansi-color removed
- e.g
curl https://publog.ci.fkuep.de/consul-kv-github/9/console-ansi-consul-kv-github-9.log| less
- e.g
- console-ansi-consul-kv-github-RUN-NUMBER.log is the consule log with ansi colors.
- e.g:
curl https://publog.ci.fkuep.de/consul-kv-github/9/console-ansi-consul-kv-github-9.log| less -r
- e.g:
- I am keepinh that as a reference
@startuml
!include https://raw.githubusercontent.com/bschwarz/puml-themes/master/themes/spacelab/puml-theme-spacelab.puml
hide empty description
state config_free_parameters {
config_free_parameters: **parameters** datacenter, index, port, recurse,scheme, token
config_free_parameters: **having defaults:** port, recurse, scheme
config_free_parameters: **being optional:** datacenter, index, token
is_set: ..
has_default: ..
is_optional:..
[*]--> has_default
[*] --> is_optional
is_optional --> is_set
is_set--> [*] : yes: call with param
is_set--> [*] : no: call without param
has_default-->[*] : call with param
}
@enduml