From d0516bcdc14f43679523d683fc207f699f672ac9 Mon Sep 17 00:00:00 2001 From: thedoubl3j Date: Wed, 25 Jan 2023 14:41:18 -0500 Subject: [PATCH] update vars file entry to include over ride examples --- docs/debugging.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/debugging.md b/docs/debugging.md index d9a9f2dd..37ac8de2 100644 --- a/docs/debugging.md +++ b/docs/debugging.md @@ -35,6 +35,19 @@ ansible_operator_meta: namespace: awx service_type: nodeport ``` +The vars file will replace the awx resource so any value that you wish to over ride using the awx resource, put in the vars file. For example, if you wish to use your own image, version and pull policy, you can specify it like below: + +```yaml +# vars.yml +--- +ansible_operator_meta: + name: awx + namespace: awx +service_type: nodeport +image: $DEV_DOCKER_TAG_BASE/awx_kube_devel +image_pull_policy: Always +image_version: $COMPOSE_TAG +``` Run the installer: