mirror of
https://github.com/ansible/awx.git
synced 2026-03-09 13:39:27 -02:30
Documentation updates
This commit is contained in:
@@ -4,12 +4,12 @@
|
|||||||
[comment]: # (* *)
|
[comment]: # (* *)
|
||||||
[comment]: # (* WARNING *)
|
[comment]: # (* WARNING *)
|
||||||
[comment]: # (* *)
|
[comment]: # (* *)
|
||||||
[comment]: # (* This file is manageed by Ansible and not to be *)
|
[comment]: # (* This file is templated and not to be *)
|
||||||
[comment]: # (* edited directly! Instead modify: *)
|
[comment]: # (* edited directly! Instead modify: *)
|
||||||
[comment]: # (* tools/roles/template_galaxy/templates/README.md.j2 *)
|
[comment]: # (* tools/roles/template_galaxy/templates/README.md.j2 *)
|
||||||
[comment]: # (* *)
|
[comment]: # (* *)
|
||||||
[comment]: # (* Changed to the base README.md file are lost upon *)
|
[comment]: # (* Changes to the base README.md file are refreshed *)
|
||||||
[comment]: # (* the build of the collection *)
|
[comment]: # (* upon build of the collection *)
|
||||||
[comment]: # (*******************************************************)
|
[comment]: # (*******************************************************)
|
||||||
|
|
||||||
This Ansible collection allows for easy interaction with an AWX server via Ansible playbooks.
|
This Ansible collection allows for easy interaction with an AWX server via Ansible playbooks.
|
||||||
@@ -67,6 +67,7 @@ Notable releases of the `awx.awx` collection:
|
|||||||
|
|
||||||
- 7.0.0 is intended to be identical to the content prior to the migration, aside from changes necessary to function as a collection.
|
- 7.0.0 is intended to be identical to the content prior to the migration, aside from changes necessary to function as a collection.
|
||||||
- 11.0.0 has no non-deprecated modules that depend on the deprecated `tower-cli` [PyPI](https://pypi.org/project/ansible-tower-cli/).
|
- 11.0.0 has no non-deprecated modules that depend on the deprecated `tower-cli` [PyPI](https://pypi.org/project/ansible-tower-cli/).
|
||||||
|
- 0.0.1-devel is the version you should see if installing from source, which is intended for development and expected to be unstable.
|
||||||
|
|
||||||
The following notes are changes that may require changes to playbooks:
|
The following notes are changes that may require changes to playbooks:
|
||||||
|
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
# (* edited directly! Instead modify: *)
|
# (* edited directly! Instead modify: *)
|
||||||
# (* tools/roles/template_galaxy/templates/galaxy.yml.j2 *)
|
# (* tools/roles/template_galaxy/templates/galaxy.yml.j2 *)
|
||||||
# (* *)
|
# (* *)
|
||||||
# (* Changed to the base README.md file are lost upon *)
|
# (* Changes to the base galaxy.yml file are refreshed *)
|
||||||
# (* the build of the collection *)
|
# (* upon build of the collection *)
|
||||||
# (********************************************************)
|
# (********************************************************)
|
||||||
---
|
---
|
||||||
authors:
|
authors:
|
||||||
|
|||||||
@@ -4,12 +4,12 @@
|
|||||||
[comment]: # (* *)
|
[comment]: # (* *)
|
||||||
[comment]: # (* WARNING *)
|
[comment]: # (* WARNING *)
|
||||||
[comment]: # (* *)
|
[comment]: # (* *)
|
||||||
[comment]: # (* This file is manageed by Ansible and not to be *)
|
[comment]: # (* This file is templated and not to be *)
|
||||||
[comment]: # (* edited directly! Instead modify: *)
|
[comment]: # (* edited directly! Instead modify: *)
|
||||||
[comment]: # (* tools/roles/template_galaxy/templates/README.md.j2 *)
|
[comment]: # (* tools/roles/template_galaxy/templates/README.md.j2 *)
|
||||||
[comment]: # (* *)
|
[comment]: # (* *)
|
||||||
[comment]: # (* Changed to the base README.md file are lost upon *)
|
[comment]: # (* Changes to the base README.md file are refreshed *)
|
||||||
[comment]: # (* the build of the collection *)
|
[comment]: # (* upon build of the collection *)
|
||||||
[comment]: # (*******************************************************)
|
[comment]: # (*******************************************************)
|
||||||
|
|
||||||
This Ansible collection allows for easy interaction with an {% if collection_package | lower() == 'awx' %}AWX{% else %}Ansible Tower{% endif %} server via Ansible playbooks.
|
This Ansible collection allows for easy interaction with an {% if collection_package | lower() == 'awx' %}AWX{% else %}Ansible Tower{% endif %} server via Ansible playbooks.
|
||||||
@@ -49,13 +49,13 @@ The OAuth2 token is the preferred method. You can obtain a token via the
|
|||||||
AWX CLI [login](https://docs.ansible.com/ansible-tower/latest/html/towercli/reference.html#awx-login)
|
AWX CLI [login](https://docs.ansible.com/ansible-tower/latest/html/towercli/reference.html#awx-login)
|
||||||
command.
|
command.
|
||||||
|
|
||||||
These can be specified via:
|
These can be specified via (from highest to lowest precedence):
|
||||||
|
|
||||||
- environment variables (most useful when running against localhost)
|
|
||||||
- direct module parameters
|
- direct module parameters
|
||||||
|
- environment variables (most useful when running against localhost)
|
||||||
- a config file path specified by the `tower_config_file` parameter
|
- a config file path specified by the `tower_config_file` parameter
|
||||||
- a config file at `/etc/tower/tower_cli.cfg`
|
|
||||||
- a config file at `~/.tower_cli.cfg`
|
- a config file at `~/.tower_cli.cfg`
|
||||||
|
- a config file at `/etc/tower/tower_cli.cfg`
|
||||||
|
|
||||||
Config file syntax looks like this:
|
Config file syntax looks like this:
|
||||||
|
|
||||||
@@ -73,6 +73,7 @@ Notable releases of the `{{ collection_namespace }}.{{ collection_package }}` co
|
|||||||
{% if collection_package | lower() == "awx" %}
|
{% if collection_package | lower() == "awx" %}
|
||||||
- 7.0.0 is intended to be identical to the content prior to the migration, aside from changes necessary to function as a collection.
|
- 7.0.0 is intended to be identical to the content prior to the migration, aside from changes necessary to function as a collection.
|
||||||
- 11.0.0 has no non-deprecated modules that depend on the deprecated `tower-cli` [PyPI](https://pypi.org/project/ansible-tower-cli/).
|
- 11.0.0 has no non-deprecated modules that depend on the deprecated `tower-cli` [PyPI](https://pypi.org/project/ansible-tower-cli/).
|
||||||
|
- 0.0.1-devel is the version you should see if installing from source, which is intended for development and expected to be unstable.
|
||||||
{% else %}
|
{% else %}
|
||||||
- 3.7.0 initial release
|
- 3.7.0 initial release
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
# (* edited directly! Instead modify: *)
|
# (* edited directly! Instead modify: *)
|
||||||
# (* tools/roles/template_galaxy/templates/galaxy.yml.j2 *)
|
# (* tools/roles/template_galaxy/templates/galaxy.yml.j2 *)
|
||||||
# (* *)
|
# (* *)
|
||||||
# (* Changed to the base README.md file are lost upon *)
|
# (* Changes to the base galaxy.yml file are refreshed *)
|
||||||
# (* the build of the collection *)
|
# (* upon build of the collection *)
|
||||||
# (********************************************************)
|
# (********************************************************)
|
||||||
---
|
---
|
||||||
authors:
|
authors:
|
||||||
|
|||||||
@@ -27,13 +27,13 @@
|
|||||||
set_fact:
|
set_fact:
|
||||||
collection_version_override: 0.0.1-devel
|
collection_version_override: 0.0.1-devel
|
||||||
|
|
||||||
- name: Template the galaxy.yml source file
|
- name: Template the galaxy.yml source file (should be commited with your changes)
|
||||||
template:
|
template:
|
||||||
src: "{{ collection_source }}/tools/roles/template_galaxy/templates/galaxy.yml.j2"
|
src: "{{ collection_source }}/tools/roles/template_galaxy/templates/galaxy.yml.j2"
|
||||||
dest: "{{ collection_source }}/galaxy.yml"
|
dest: "{{ collection_source }}/galaxy.yml"
|
||||||
force: true
|
force: true
|
||||||
|
|
||||||
- name: Template the README.md source file
|
- name: Template the README.md source file (should be commited with your changes)
|
||||||
template:
|
template:
|
||||||
src: "{{ collection_source }}/tools/roles/template_galaxy/templates/README.md.j2"
|
src: "{{ collection_source }}/tools/roles/template_galaxy/templates/README.md.j2"
|
||||||
dest: "{{ collection_source }}/README.md"
|
dest: "{{ collection_source }}/README.md"
|
||||||
|
|||||||
Reference in New Issue
Block a user