* Indent Jinja2 directives.
* Show version_added and deprecations for ini settings and environment variables.
* Make default conditional, add choices. Copied from #55474.
* Add Ansible variables. Copied from #55474.
* Turn ini keys and environment variables into lists. Copied from #55474.
* Improve formatting. Copied from #55474.
(cherry picked from commit 569d937df8
)
This commit is contained in:
parent
cfa8075537
commit
fc4411adcd
2 changed files with 107 additions and 38 deletions
75
docs/templates/config.rst.j2
vendored
75
docs/templates/config.rst.j2
vendored
|
@ -111,22 +111,80 @@ you can use the command line utility mentioned above (`ansible-config`) to brows
|
||||||
{% if config['type'] %}
|
{% if config['type'] %}
|
||||||
:Type: {{config['type']}}
|
:Type: {{config['type']}}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if 'default' in config %}
|
||||||
:Default: {{config['default']}}
|
:Default: {{config['default']}}
|
||||||
|
{% endif %}
|
||||||
|
{% if config.get('choices', False) %}
|
||||||
|
:Choices:
|
||||||
|
{% if config['choices'] is mapping %}
|
||||||
|
{% for key in config['choices'].keys() %}
|
||||||
|
- :{{key}}: {{ config['choices'][key] }}
|
||||||
|
{% endfor %}
|
||||||
|
{% else %}
|
||||||
|
{% for key in config['choices'] %}
|
||||||
|
- :{{key}}:
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
{% if config['version_added'] %}
|
{% if config['version_added'] %}
|
||||||
:Version Added: {{config['version_added']}}
|
:Version Added: {{config['version_added']}}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% if config.get('ini', False) %}
|
||||||
|
:Ini:
|
||||||
{% for ini_map in config['ini']|sort(attribute='section') %}
|
{% for ini_map in config['ini']|sort(attribute='section') %}
|
||||||
:Ini Section: {{ini_map['section']}}
|
{% if config['ini']|length > 1 %}- {% endif %}:Section: [{{ini_map['section']}}]
|
||||||
:Ini Key: {{ini_map['key']}}
|
{% if config['ini']|length > 1 %} {% endif %}:Key: {{ini_map['key']}}
|
||||||
|
{% if ini_map['version_added'] %}
|
||||||
|
:Version Added: {{ini_map['version_added']}}
|
||||||
|
{% endif %}
|
||||||
|
{% if ini_map['deprecated'] %}
|
||||||
|
:Deprecated in: {{ini_map['deprecated']['version']}}
|
||||||
|
:Deprecated detail: {{ini_map['deprecated']['why']}}
|
||||||
|
{% if ini_map['deprecated']['alternatives'] %}
|
||||||
|
:Deprecated alternatives: {{ini_map['deprecated']['alternatives']}}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
{% if config.get('env', False) %}
|
||||||
|
:Environment:
|
||||||
{% for env_var_map in config['env']|sort(attribute='name') %}
|
{% for env_var_map in config['env']|sort(attribute='name') %}
|
||||||
:Environment: :envvar:`{{env_var_map['name']}}`
|
{% if config['env']|length > 1 %}- {% endif %}:Variable: :envvar:`{{env_var_map['name']}}`
|
||||||
|
{% if env_var_map['version_added'] %}
|
||||||
|
:Version Added: {{env_var_map['version_added']}}
|
||||||
|
{% endif %}
|
||||||
|
{% if env_var_map['deprecated'] %}
|
||||||
|
:Deprecated in: {{env_var_map['deprecated']['version']}}
|
||||||
|
:Deprecated detail: {{env_var_map['deprecated']['why']}}
|
||||||
|
{% if env_var_map['deprecated']['alternatives'] %}
|
||||||
|
:Deprecated alternatives: {{env_var_map['deprecated']['alternatives']}}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
{% if config.get('vars', False) %}
|
||||||
|
:Variables:
|
||||||
|
{% for a_var in config['vars']|sort(attribute='name') %}
|
||||||
|
{% if config['vars']|length > 1 %}- {%endif%}:name: `{{a_var['name']}}`
|
||||||
|
{% if a_var['version_added'] %}
|
||||||
|
:Version Added: {{a_var['version_added']}}
|
||||||
|
{% endif %}
|
||||||
|
{% if a_var['deprecated'] %}
|
||||||
|
:Deprecated in: {{a_var['deprecated']['version']}}
|
||||||
|
:Deprecated detail: {{a_Var['deprecated']['why']}}
|
||||||
|
{% if a_var['deprecated']['alternatives'] %}
|
||||||
|
:Deprecated alternatives: {{a_var['deprecated']['alternatives']}}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
{% if config['deprecated'] %}
|
{% if config['deprecated'] %}
|
||||||
:Deprecated in: {{config['deprecated']['version']}}
|
:Deprecated in: {{config['deprecated']['version']}}
|
||||||
:Deprecated detail: {{config['deprecated']['why']}}
|
:Deprecated detail: {{config['deprecated']['why']}}
|
||||||
|
{% if config['deprecated']['alternatives'] %}
|
||||||
:Deprecated alternatives: {{config['deprecated']['alternatives']}}
|
:Deprecated alternatives: {{config['deprecated']['alternatives']}}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
|
@ -151,6 +209,17 @@ Environment Variables
|
||||||
|
|
||||||
See also :ref:`{{config_option}} <{{config_option}}>`
|
See also :ref:`{{config_option}} <{{config_option}}>`
|
||||||
|
|
||||||
|
{% if env_var_map['version_added'] %}
|
||||||
|
:Version Added: {{env_var_map['version_added']}}
|
||||||
|
{% endif %}
|
||||||
|
{% if env_var_map['deprecated'] %}
|
||||||
|
:Deprecated in: {{env_var_map['deprecated']['version']}}
|
||||||
|
:Deprecated detail: {{env_var_map['deprecated']['why']}}
|
||||||
|
{% if env_var_map['deprecated']['alternatives'] %}
|
||||||
|
:Deprecated alternatives: {{env_var_map['deprecated']['alternatives']}}
|
||||||
|
{% endif %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
|
@ -805,9 +805,9 @@ DEFAULT_LIBVIRT_LXC_NOSECLABEL:
|
||||||
env:
|
env:
|
||||||
- name: LIBVIRT_LXC_NOSECLABEL
|
- name: LIBVIRT_LXC_NOSECLABEL
|
||||||
deprecated:
|
deprecated:
|
||||||
why: environment variables without "ANSIBLE_" prefix are deprecated
|
why: environment variables without ``ANSIBLE_`` prefix are deprecated
|
||||||
version: "2.12"
|
version: "2.12"
|
||||||
alternatives: the "ANSIBLE_LIBVIRT_LXC_NOSECLABEL" environment variable
|
alternatives: the ``ANSIBLE_LIBVIRT_LXC_NOSECLABEL`` environment variable
|
||||||
- name: ANSIBLE_LIBVIRT_LXC_NOSECLABEL
|
- name: ANSIBLE_LIBVIRT_LXC_NOSECLABEL
|
||||||
ini:
|
ini:
|
||||||
- {key: libvirt_lxc_noseclabel, section: selinux}
|
- {key: libvirt_lxc_noseclabel, section: selinux}
|
||||||
|
@ -1312,9 +1312,9 @@ DISPLAY_SKIPPED_HOSTS:
|
||||||
env:
|
env:
|
||||||
- name: DISPLAY_SKIPPED_HOSTS
|
- name: DISPLAY_SKIPPED_HOSTS
|
||||||
deprecated:
|
deprecated:
|
||||||
why: environment variables without "ANSIBLE_" prefix are deprecated
|
why: environment variables without ``ANSIBLE_`` prefix are deprecated
|
||||||
version: "2.12"
|
version: "2.12"
|
||||||
alternatives: the "ANSIBLE_DISPLAY_SKIPPED_HOSTS" environment variable
|
alternatives: the ``ANSIBLE_DISPLAY_SKIPPED_HOSTS`` environment variable
|
||||||
- name: ANSIBLE_DISPLAY_SKIPPED_HOSTS
|
- name: ANSIBLE_DISPLAY_SKIPPED_HOSTS
|
||||||
ini:
|
ini:
|
||||||
- {key: display_skipped_hosts, section: defaults}
|
- {key: display_skipped_hosts, section: defaults}
|
||||||
|
@ -1665,9 +1665,9 @@ NETWORK_GROUP_MODULES:
|
||||||
env:
|
env:
|
||||||
- name: NETWORK_GROUP_MODULES
|
- name: NETWORK_GROUP_MODULES
|
||||||
deprecated:
|
deprecated:
|
||||||
why: environment variables without "ANSIBLE_" prefix are deprecated
|
why: environment variables without ``ANSIBLE_`` prefix are deprecated
|
||||||
version: "2.12"
|
version: "2.12"
|
||||||
alternatives: the "ANSIBLE_NETWORK_GROUP_MODULES" environment variable
|
alternatives: the ``ANSIBLE_NETWORK_GROUP_MODULES`` environment variable
|
||||||
- name: ANSIBLE_NETWORK_GROUP_MODULES
|
- name: ANSIBLE_NETWORK_GROUP_MODULES
|
||||||
ini:
|
ini:
|
||||||
- {key: network_group_modules, section: defaults}
|
- {key: network_group_modules, section: defaults}
|
||||||
|
|
Loading…
Reference in a new issue