mirror of
https://github.com/bitnami/charts.git
synced 2026-02-20 12:07:40 +08:00
[bitnami/pinniped] fix: 🐛 Use proper type for sidecars and init containers (#10755)
* [bitnami/pinniped] fix: 🐛 Use proper type for sidecars and init containers Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com> * Update README.md with readme-generator-for-helm Signed-off-by: Bitnami Containers <bitnami-bot@vmware.com> Co-authored-by: Bitnami Containers <bitnami-bot@vmware.com>
This commit is contained in:
committed by
GitHub
parent
73d85b4e03
commit
d8d380fea9
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user