Skip to content

Commit

Permalink
updates for working with product-demos-bootstrap
Browse files Browse the repository at this point in the history
- provide default values for Controller Credential
- specify Product Demos EE for setup templates
- re-enable collection syncing in projects
  • Loading branch information
jce-redhat committed Oct 23, 2024
1 parent 2d436b5 commit 9b1ed9d
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions controller.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
---
# override these in job template extra vars if needed
apd_ee_image_version: '24'
apd_ee_image: quay.io/ansible-product-demos/apd-ee-{{ apd_ee_image_version }}:latest
apd_git_repo: https://github.com/ansible/product-demos
Expand All @@ -8,10 +9,6 @@ apd_verify_ssl: false
controller_validate_certs: false
controller_configuration_async_delay: 3

controller_settings:
- name: AWX_COLLECTIONS_ENABLED
value: false

controller_credentials:
- name: Automation Hub
organization: Default
Expand All @@ -24,10 +21,12 @@ controller_credentials:
- name: Controller Credential
organization: Default
credential_type: Red Hat Ansible Automation Platform
update_secrets: false
state: exists
inputs:
host: https://{{ groups.automationcontroller[0] }}
host: https://{{ groups.automationcontroller[0] | default('REPLACEME') }}
username: admin
password: '{{ controller_admin_password }}'
password: '{{ controller_admin_password | default("REPLACEME") }}'
verify_ssl: '{{ apd_verify_ssl }}'

controller_execution_environments:
Expand Down Expand Up @@ -56,6 +55,7 @@ controller_templates:
project: Ansible Product Demos
playbook: setup_demo.yml
credentials: Controller Credential
execution_environment: Product Demos EE
allow_simultaneous: true
survey_enabled: true
survey_spec:
Expand All @@ -79,6 +79,7 @@ controller_templates:
playbook: multi_select_setup.yml
inventory: Demo Inventory
credentials: Controller Credential
execution_environment: Product Demos EE
survey_enabled: true
survey:
name: ''
Expand Down

0 comments on commit 9b1ed9d

Please sign in to comment.