Add development mode for AWX

This commit is contained in:
Shane McDonald
2021-01-25 12:26:49 -05:00
parent 0d7e047df3
commit 48ba257f67
7 changed files with 41 additions and 23 deletions

View File

@@ -9,7 +9,7 @@
- name: Deploy AWX
k8s:
state: "{{ state | default('present') }}"
namespace: awx
namespace: default
apply: yes
wait: yes
definition:
@@ -22,4 +22,7 @@
tower_admin_email: test@example.com
tower_admin_password: changeme
tower_broadcast_websocket_secret: changeme
tower_ingress_type: Route
tower_ingress_type: "{{ tower_ingress_type | default(omit) }}" # Either Route or Ingress
tower_image: "{{ tower_image | default(omit) }}"
development_mode: "{{ development_mode | default(omit) }}"
tower_image_pull_policy: "{{ tower_image_pull_policy | default(omit) }}"