summaryrefslogtreecommitdiffstats
path: root/docs/collections.md
diff options
context:
space:
mode:
authorAlanCoding <arominge@redhat.com>2019-10-07 20:52:04 +0200
committerAlanCoding <arominge@redhat.com>2019-10-07 20:52:10 +0200
commit06c62c48611d2658a89cd65414e0871c718c02b3 (patch)
treea6dd1fce2fd68dacde10122f4e06810c384cd30c /docs/collections.md
parentAdd setting for auth_url (diff)
downloadawx-06c62c48611d2658a89cd65414e0871c718c02b3.tar.xz
awx-06c62c48611d2658a89cd65414e0871c718c02b3.zip
update docs for galaxy auth URL material
Diffstat (limited to 'docs/collections.md')
-rw-r--r--docs/collections.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/collections.md b/docs/collections.md
index 93d99889ed..5cbf3eab7a 100644
--- a/docs/collections.md
+++ b/docs/collections.md
@@ -5,14 +5,14 @@ AWX supports the use of Ansible Collections. This section will give ways to use
### Project Collections Requirements
If you specify a Collections requirements file in SCM at `collections/requirements.yml`,
-then AWX will install Collections in that file in the implicit project sync
-before a job run. The invocation is:
+then AWX will install Collections from that file in the implicit project sync
+before a job run. The invocation looks like:
```
-ansible-galaxy collection install -r requirements.yml -p <job tmp location>
+ansible-galaxy collection install -r requirements.yml -p <job tmp location>/requirements_collections
```
-Example of `tmp` directory where job is running:
+Example of the resultant `tmp` directory where job is running:
```
├── project
@@ -69,7 +69,7 @@ This is done via the setting `PRIMARY_GALAXY_URL` and similar
If the `PRIMARY_GALAXY_URL` setting is not blank, then the server list is defined
to be `primary_galaxy,galaxy`. The `primary_galaxy` server definition uses the URL
-from those settings, as well as username, password, and/or token if applicable.
+from those settings, as well as username, password, and/or token and auth_url if applicable.
the `galaxy` server definition uses public Galaxy (`https://galaxy.ansible.com`)
with no authentication.