From 88d55a870aabbba0cf4033076042851e834445ce Mon Sep 17 00:00:00 2001 From: Matthew Jones Date: Tue, 11 Aug 2020 16:41:46 -0400 Subject: [PATCH] Documentation to the awx operator deploy --- deploy/awx-operator.yaml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/deploy/awx-operator.yaml b/deploy/awx-operator.yaml index 346da8eb..edceaffb 100644 --- a/deploy/awx-operator.yaml +++ b/deploy/awx-operator.yaml @@ -170,5 +170,27 @@ spec: deployment_type: type: string pattern: "^(tower|awx)(-)?.*$" + external_database: + type: bool + description: | + If true you must supply a secret containing the location and credentials for + connecting to the external database by a user who has permission to create + and apply a schema. + + The secret should have the name: -postgres-configuration and + should look like: + + apiVersion: v1 + kind: Secret + metadata: + name: -postgres-configuration + namespace: + stringData: + address: + port: + database: + username: + password: + type: Opaque required: - deployment_type