Skip to content

Commit

Permalink
Add AAP overrides
Browse files Browse the repository at this point in the history
  • Loading branch information
akrzos committed Nov 6, 2023
1 parent eca3845 commit 689767c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ansible/roles/bm-post-cluster-install/defaults/main/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ setup_performance_dashboards: false
# Deploy ansible-automation-platform operator
setup_ansible_automation_platform: false
aap_channel: stable-2.4-cluster-scoped
aap_enable_overrides: false
# MAX_CONCURRENT_RECONCILES_ANSIBLEJOB_TOWER_ANSIBLE_COM
aap_override_max_concurrent_ajt: 10
# MAX_CONCURRENT_RECONCILES_ANSIBLEWORKFLOW_TOWER_ANSIBLE_COM
aap_override_max_concurrent_awt: 10

# Deploy openshift-gitops-operator
setup_openshift_gitops: false
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,11 @@ spec:
source: redhat-operators
{% endif %}
sourceNamespace: openshift-marketplace
{% if aap_enable_overrides %}
config:
env:
- name: MAX_CONCURRENT_RECONCILES_ANSIBLEJOB_TOWER_ANSIBLE_COM
value: "{{ aap_override_max_concurrent_ajt }}"
- name: MAX_CONCURRENT_RECONCILES_ANSIBLEWORKFLOW_TOWER_ANSIBLE_COM
value: "{{ aap_override_max_concurrent_awt }}"
{% endif %}

0 comments on commit 689767c

Please sign in to comment.