From 2619e5dfdd480eb005f0f8882cd55d808586275e Mon Sep 17 00:00:00 2001 From: pjuarezd Date: Wed, 23 Aug 2023 18:12:54 -0600 Subject: [PATCH 1/4] document extraResources 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 f8e10020ff3..5a4758c7c64 100644 --- a/helm/tenant/values.yaml +++ b/helm/tenant/values.yaml @@ -280,3 +280,20 @@ ingress: host: minio-console.local path: / pathType: Prefix + +## Extra extraResources is a helm template section to include additional Kubernetes resources of any kind that you would +## like to include with the helm deployment. +## For example, if you wished to create 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' From 8029a0f181594bc8a952b46d51592a178d39b68e Mon Sep 17 00:00:00 2001 From: Pedro Juarez Date: Thu, 24 Aug 2023 08:14:42 -0600 Subject: [PATCH 2/4] Update helm/tenant/values.yaml Co-authored-by: Andrea Longo --- helm/tenant/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/tenant/values.yaml b/helm/tenant/values.yaml index 5a4758c7c64..48053eb031b 100644 --- a/helm/tenant/values.yaml +++ b/helm/tenant/values.yaml @@ -281,7 +281,7 @@ ingress: path: / pathType: Prefix -## Extra extraResources is a helm template section to include additional Kubernetes resources of any kind that you would +## Use an extraResources template section to include additional Kubernetes resources ## like to include with the helm deployment. ## For example, if you wished to create the config secret together with the tenant: #secrets: From b90d6498f0bc56b21ceffdabb3be86436f36d34c Mon Sep 17 00:00:00 2001 From: Pedro Juarez Date: Thu, 24 Aug 2023 08:14:50 -0600 Subject: [PATCH 3/4] Update helm/tenant/values.yaml Co-authored-by: Andrea Longo --- helm/tenant/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/tenant/values.yaml b/helm/tenant/values.yaml index 48053eb031b..0b12561570a 100644 --- a/helm/tenant/values.yaml +++ b/helm/tenant/values.yaml @@ -282,7 +282,7 @@ ingress: pathType: Prefix ## Use an extraResources template section to include additional Kubernetes resources -## like to include with the helm deployment. +## with the Helm deployment. ## For example, if you wished to create the config secret together with the tenant: #secrets: # existingSecret: custom-env-configuration From 0578f1dc8dfb59e2709a8c12357d038d5365e465 Mon Sep 17 00:00:00 2001 From: Pedro Juarez Date: Thu, 24 Aug 2023 08:14:58 -0600 Subject: [PATCH 4/4] Update helm/tenant/values.yaml Co-authored-by: Andrea Longo --- helm/tenant/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm/tenant/values.yaml b/helm/tenant/values.yaml index 0b12561570a..7bf917fbaa2 100644 --- a/helm/tenant/values.yaml +++ b/helm/tenant/values.yaml @@ -283,7 +283,7 @@ ingress: ## Use an extraResources template section to include additional Kubernetes resources ## with the Helm deployment. -## For example, if you wished to create the config secret together with the tenant: +## Example: the following creates the config secret together with the tenant: #secrets: # existingSecret: custom-env-configuration #extraResources: