From b2f4b2f145eede1f44b8555ee4783225710065b9 Mon Sep 17 00:00:00 2001 From: Pedro Juarez Date: Mon, 4 Sep 2023 22:17:37 -0600 Subject: [PATCH] document `extraResources` field in tenant helm chart (#1739) Signed-off-by: pjuarezd --- helm/tenant/values.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/helm/tenant/values.yaml b/helm/tenant/values.yaml index f23f64e1f74..74df56584e0 100644 --- a/helm/tenant/values.yaml +++ b/helm/tenant/values.yaml @@ -284,3 +284,20 @@ ingress: host: minio-console.local path: / pathType: Prefix + +## Use an extraResources template section to include additional Kubernetes resources +## with the Helm deployment. +## Example: the following creates the config secret together with the tenant: +#secrets: +# existingSecret: custom-env-configuration +#extraResources: +# - | +# apiVersion: v1 +# kind: Secret +# type: Opaque +# metadata: +# name: {{ dig "secrets" "existingSecret" "" (.Values | merge (dict)) }} +# stringData: +# config.env: |- +# export MINIO_ROOT_USER='minio' +# export MINIO_ROOT_PASSWORD='minio123'