File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed
.github/controller_install_inventories
roles/workflow_job_templates/tasks Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change
1
+ localhost ansible_connection=local ansible_python_interpreter="/usr/bin/env python3"
2
+
3
+ [all:vars]
4
+
5
+ dockerhub_base=ansible
6
+
7
+ openshift_host=https://api.crc.testing:6443
8
+ openshift_project=awx-github
9
+ openshift_user=developer
10
+ openshift_skip_tls_verify=True
11
+ openshift_pg_pvc_name=awx-github-postgres
12
+
13
+ pg_username=awx
14
+ pg_password=awxpass
15
+ pg_database=awx
16
+ pg_port=5432
17
+
18
+
19
+ admin_user=admin
20
+ admin_password=password
21
+
22
+ create_preload_data=false
23
+
24
+ secret_key=awxsecret
Original file line number Diff line number Diff line change 21
21
webhook_credential : " {{ workflow_loop_var.webhook_credential.name | default(workflow_loop_var.webhook_credential | default(omit, true)) }}"
22
22
survey_enabled : " {{ workflow_loop_var.survey_enabled | default(omit) }}"
23
23
survey : " {{ workflow_loop_var.related.survey_spec | default( workflow_loop_var.survey_spec | default( workflow_loop_var.survey | default(omit, true))) }}"
24
- schema : " {{ workflow_loop_var.related.workflow_nodes | default( workflow_loop_var.workflow_nodes | default(omit, true) ) }}"
25
- destroy_current_schema : " {{ workflow_loop_var.destroy_current_schema | default(omit) }}"
26
24
state : " {{ workflow_loop_var.state | default(tower_state | default('present')) }}"
27
25
notification_templates_started : " {{ workflow_loop_var.notification_templates_started | default(workflow_loop_var.related.notification_templates_started | default([]) | map(attribute='name') | list ) }}"
28
26
notification_templates_success : " {{ workflow_loop_var.notification_templates_success | default(workflow_loop_var.related.notification_templates_success | default([]) | map(attribute='name') | list ) }}"
You can’t perform that action at this time.
0 commit comments