-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
allows for publishing collections to AAP 2.5 hub (#174)
* modified: roles/ee_builder/templates/ansible.cfg.j2 * modified: roles/ee_builder/README.md * modified: roles/ee_builder/README.md * new file: changelogs/fragments/173-fix-2.5.yml * modified: changelogs/fragments/173-fix-2.5.yml modified: roles/ee_builder/README.md modified: roles/ee_builder/defaults/main.yml modified: roles/ee_builder/templates/ansible.cfg.j2 * updating to greater than
- Loading branch information
1 parent
f87f1fc
commit 41916ad
Showing
4 changed files
with
20 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
minor_changes: | ||
- adds an ee_aap_version var to allow for pushing collections to either AAP 2.4 or 2.5 | ||
bugfixes: | ||
- found some typoes in readme and corrected them. | ||
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
[galaxy] | ||
server_list = automation_hub_pub,automation_hub_cert,automation_hub_validated,automation_hub_comm | ||
ignore_certs = yes | ||
ignore_certs = true | ||
|
||
[galaxy_server.automation_hub_cert] | ||
url=https://{{ ee_ah_host }}/api/galaxy/content/rh-certified/ | ||
url=https://{{ ee_ah_host }}{% if ee_aap_version >= 2.5 %}/pulp_ansible/galaxy/rh-certified/{% else %}/api/galaxy/content/rh-certified/{% endif %} | ||
token={{ ee_ah_token }} | ||
|
||
[galaxy_server.automation_hub_pub] | ||
url=https://{{ ee_ah_host }}/api/galaxy/content/published/ | ||
url=https://{{ ee_ah_host }}{% if ee_aap_version >= 2.5 %}/pulp_ansible/galaxy/published/{% else %}/api/galaxy/content/published/{% endif %} | ||
token={{ ee_ah_token }} | ||
|
||
[galaxy_server.automation_hub_comm] | ||
url=https://{{ ee_ah_host }}/api/galaxy/content/community/ | ||
url=https://{{ ee_ah_host }}{% if ee_aap_version >= 2.5 %}/pulp_ansible/galaxy/community/{% else %}/api/galaxy/content/community/{% endif %} | ||
token={{ ee_ah_token }} | ||
|
||
[galaxy_server.automation_hub_validated] | ||
url=https://{{ ee_ah_host }}/api/galaxy/content/validated/ | ||
url=https://{{ ee_ah_host }}{% if ee_aap_version >= 2.5 %}/pulp_ansible/galaxy/validated/{% else %}/api/galaxy/content/validated/{% endif %} | ||
token={{ ee_ah_token }} |