-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a way to import EE from remote registries (#49)
* Add way to import EE from remote registries * Fix undefined variables
- Loading branch information
1 parent
8076d22
commit 4854264
Showing
5 changed files
with
62 additions
and
21 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
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,5 +1,5 @@ | ||
--- | ||
# ah_ee_namespaces: | ||
ah_ee_namespaces: [] | ||
# - name: | ||
# append: | ||
# groups: | ||
|
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,15 +1,19 @@ | ||
--- | ||
# ah_ee_registries: | ||
# - name: | ||
# new_name: | ||
# url: | ||
# username: | ||
# password: | ||
# tls_validation: | ||
# proxy_url: | ||
# proxy_username: | ||
# proxy_password: | ||
# download_concurrency: | ||
# rate_limit: | ||
# state: "{{ target_state }}" | ||
# Documentations: | ||
# - https://github.com/ansible/galaxy_collection/blob/devel/roles/ee_registry/README.md | ||
# - https://github.com/ansible/galaxy_collection/blob/devel/roles/ee_registry_index/README.md | ||
# - https://github.com/ansible/galaxy_collection/blob/devel/roles/ee_registry_sync/README.md | ||
ah_ee_registries: [] | ||
# - name: registry_redhat_io | ||
# url: https://registry.redhat.io | ||
# username: "{{ rh_username }}" | ||
# password: "{{ rh_password }}" | ||
# tls_validation: true | ||
# download_concurrency: 10 | ||
# rate_limit: 8 | ||
# proxy_url: "" | ||
# proxy_username: "" | ||
# proxy_password: "" | ||
# wait: true | ||
# state: present | ||
... |
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,8 +1,18 @@ | ||
--- | ||
# ah_ee_repositories: | ||
# - name: | ||
# description: | ||
# readme: | ||
# readme_file: | ||
# state: "{{ target_state }}" | ||
# Documentation: | ||
# https://github.com/ansible/galaxy_collection/tree/devel/roles/ee_repository | ||
ah_ee_repositories: [] | ||
# - name: ansible-automation-platform/ee-minimal-rhel8 | ||
# readme: "" # mutex with readme_file | ||
# readme_file: "" # mutex with readme | ||
# description: >- | ||
# ee-minimal is an automation execution environment for Red Hat Ansible | ||
# Automation Platform. | ||
# registry: registry_redhat_io | ||
# upstream_name: ansible-automation-platform/ee-minimal-rhel8 | ||
# include_tags: | ||
# - 2.16.3-1 | ||
# exclude_tags: | ||
# - latest # https://access.redhat.com/solutions/6980874 | ||
# state: present | ||
... |
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