From d8d380fea9cdac4d5b19d27b61dbf115148591da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Javier=20J=2E=20Salmer=C3=B3n-Garc=C3=ADa?= Date: Tue, 14 Jun 2022 20:10:21 +0200 Subject: [PATCH] [bitnami/pinniped] fix: :bug: Use proper type for sidecars and init containers (#10755) * [bitnami/pinniped] fix: :bug: Use proper type for sidecars and init containers Signed-off-by: Javier Salmeron Garcia * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers Co-authored-by: Bitnami Containers --- bitnami/pinniped/Chart.yaml | 2 +- bitnami/pinniped/README.md | 8 ++++---- bitnami/pinniped/values.yaml | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/bitnami/pinniped/Chart.yaml b/bitnami/pinniped/Chart.yaml index d7ee15db10..2adf1193c2 100644 --- a/bitnami/pinniped/Chart.yaml +++ b/bitnami/pinniped/Chart.yaml @@ -22,4 +22,4 @@ name: pinniped sources: - https://github.com/bitnami/bitnami-docker-pinniped - https://github.com/vmware-tanzu/pinniped/ -version: 0.1.1 +version: 0.1.2 diff --git a/bitnami/pinniped/README.md b/bitnami/pinniped/README.md index c14d1a1abf..df07b1bacf 100644 --- a/bitnami/pinniped/README.md +++ b/bitnami/pinniped/README.md @@ -147,8 +147,8 @@ The command removes all the Kubernetes components associated with the chart and | `concierge.extraEnvVarsSecret` | Name of existing Secret containing extra env vars for Concierge nodes | `""` | | `concierge.extraVolumes` | Optionally specify extra list of additional volumes for the Concierge pod(s) | `[]` | | `concierge.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for the Concierge container(s) | `[]` | -| `concierge.sidecars` | Add additional sidecar containers to the Concierge pod(s) | `{}` | -| `concierge.initContainers` | Add additional init containers to the Concierge pod(s) | `{}` | +| `concierge.sidecars` | Add additional sidecar containers to the Concierge pod(s) | `[]` | +| `concierge.initContainers` | Add additional init containers to the Concierge pod(s) | `[]` | ### Concierge RBAC settings @@ -250,8 +250,8 @@ The command removes all the Kubernetes components associated with the chart and | `supervisor.extraEnvVarsSecret` | Name of existing Secret containing extra env vars for Supervisor nodes | `""` | | `supervisor.extraVolumes` | Optionally specify extra list of additional volumes for the Supervisor pod(s) | `[]` | | `supervisor.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for the Supervisor container(s) | `[]` | -| `supervisor.sidecars` | Add additional sidecar containers to the Supervisor pod(s) | `{}` | -| `supervisor.initContainers` | Add additional init containers to the Supervisor pod(s) | `{}` | +| `supervisor.sidecars` | Add additional sidecar containers to the Supervisor pod(s) | `[]` | +| `supervisor.initContainers` | Add additional init containers to the Supervisor pod(s) | `[]` | ### Supervisor RBAC settings diff --git a/bitnami/pinniped/values.yaml b/bitnami/pinniped/values.yaml index 95484e3734..18388446ef 100644 --- a/bitnami/pinniped/values.yaml +++ b/bitnami/pinniped/values.yaml @@ -323,7 +323,7 @@ concierge: ## - name: portname ## containerPort: 1234 ## - sidecars: {} + sidecars: [] ## @param concierge.initContainers Add additional init containers to the Concierge pod(s) ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ ## e.g: @@ -333,7 +333,7 @@ concierge: ## imagePullPolicy: Always ## command: ['sh', '-c', 'echo "hello world"'] ## - initContainers: {} + initContainers: [] ## @section Concierge RBAC settings ## @@ -654,7 +654,7 @@ supervisor: ## - name: portname ## containerPort: 1234 ## - sidecars: {} + sidecars: [] ## @param supervisor.initContainers Add additional init containers to the Supervisor pod(s) ## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/ ## e.g: @@ -664,7 +664,7 @@ supervisor: ## imagePullPolicy: Always ## command: ['sh', '-c', 'echo "hello world"'] ## - initContainers: {} + initContainers: [] ## @section Supervisor RBAC settings ##