From 05d11109bfd43183b0d9ce900796003471a2fc97 Mon Sep 17 00:00:00 2001 From: Atha Kouroussis Date: Thu, 24 Sep 2020 15:43:01 -0300 Subject: [PATCH] Document new vars --- roles/awx/defaults/main.yml | 28 +++++++++++++++++++++++++++- 1 file changed, 27 insertions(+), 1 deletion(-) diff --git a/roles/awx/defaults/main.yml b/roles/awx/defaults/main.yml index 9024d47a..2784e0b0 100644 --- a/roles/awx/defaults/main.yml +++ b/roles/awx/defaults/main.yml @@ -1,7 +1,16 @@ --- tower_task_privileged: false tower_ingress_type: none + +# Add annotations to the ingress. Specify as literal block. E.g.: +# tower_ingress_annotations: | +# kubernetes.io/ingress.class: nginx +# nginx.ingress.kubernetes.io/proxy-connect-timeout: 60s tower_ingress_annotations: '' +# TLS secret for the ingress. The secret either has to exist before hand with +# the corresponding cert and key or just be an indicator for where an automated +# process like cert-manager (enabled via annotations) will store the TLS +# certificate and key. tower_ingress_tls_secret: '' tower_hostname: example-awx.test @@ -12,6 +21,10 @@ tower_admin_password: changeme tower_broadcast_websocket_secret: changeme +# Add extra volumes to the AWX pod. Specify as literal block. E.g.: +# tower_extra_volumes: | +# - name: my-volume +# emptyDir: {} tower_extra_volumes: '' # Use these image versions for Ansible Tower. @@ -40,9 +53,22 @@ tower_task_cpu_request: 500m tower_web_mem_request: 2Gi tower_web_cpu_request: 1000m +# Add extra environment variables to the AWX task/web containers. Specify as +# literal block. E.g.: +# tower_task_extra_env: | +# - name: FOO +# value: bar +# - name: BAZ +# value: bing tower_task_extra_env: '' -tower_task_extra_volume_mounts: '' tower_web_extra_env: '' + +# Mount extra volumes on the AWX task/web containers. Specify as literal block. +# E.g.: +# tower_task_extra_volume_mounts: '' +# - name: my-volume +# mountPath: /some/path +tower_task_extra_volume_mounts: '' tower_web_extra_volume_mounts: '' tower_memcached_image: memcached:alpine