From 03ccb429ff57742f943010798abd59b87825d784 Mon Sep 17 00:00:00 2001 From: dogaakcinar Date: Tue, 18 Oct 2022 11:54:47 +0300 Subject: [PATCH] fix azure setup in administrator docs (#2059) in the OperatorConfiguration CRD "pod_environment_secret" and "pod_environment_configmap" properties is located under "kubernetes" object. aws_or_gcp object does not have these properties. --- docs/administrator.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/administrator.md b/docs/administrator.md index 4d18f2f61..373e691a8 100644 --- a/docs/administrator.md +++ b/docs/administrator.md @@ -1099,9 +1099,10 @@ and `pod-env-overrides` resources applied to your cluster, ensure that the opera is set up like the following: ```yml ... -aws_or_gcp: +kubernetes: pod_environment_secret: "psql-backup-creds" pod_environment_configmap: "postgres-operator-system/pod-env-overrides" +aws_or_gcp: wal_az_storage_account: "postgresbackupsbucket28302F2" # name of storage account to save the WAL-G logs ... ```