[bitnami/parse] fix: 🐛 Use proper type for sidecars and init containers (#10754)

* [bitnami/parse] 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:
Javier J. Salmerón-García
2022-06-14 20:10:31 +02:00
committed by GitHub
parent d8d380fea9
commit 46b277a3a2
3 changed files with 21 additions and 13 deletions

View File

@@ -30,4 +30,4 @@ sources:
- https://github.com/bitnami/bitnami-docker-parse
- https://github.com/bitnami/bitnami-docker-parse-dashboard
- https://parse.com/
version: 18.1.11
version: 18.1.12

View File

@@ -83,7 +83,7 @@ The command removes all the Kubernetes components associated with the chart and
| -------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | -------------------- |
| `server.image.registry` | Parse image registry | `docker.io` |
| `server.image.repository` | Parse image repository | `bitnami/parse` |
| `server.image.tag` | Parse image tag (immutable tags are recommended) | `5.2.1-debian-11-r0` |
| `server.image.tag` | Parse image tag (immutable tags are recommended) | `5.2.1-debian-11-r3` |
| `server.image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `server.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `server.image.debug` | Enable image debug mode | `false` |
@@ -107,8 +107,8 @@ The command removes all the Kubernetes components associated with the chart and
| `server.extraEnvVarsSecret` | Name of a Secret containing extra environment variables | `""` |
| `server.extraVolumes` | Optionally specify extra list of additional volumes for the Parse pod(s) | `[]` |
| `server.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for the Parse container(s) | `[]` |
| `server.sidecars` | Add additional sidecar containers to the Parse pod(s) | `{}` |
| `server.initContainers` | Add additional init containers to the Parse pod(s) | `{}` |
| `server.sidecars` | Add additional sidecar containers to the Parse pod(s) | `[]` |
| `server.initContainers` | Add additional init containers to the Parse pod(s) | `[]` |
| `server.enableCloudCode` | Enable Parse Cloud Code | `false` |
| `server.cloudCodeScripts` | Cloud Code scripts | `{}` |
| `server.existingCloudCodeScriptsCM` | ConfigMap with Cloud Code scripts (Note: Overrides `cloudCodeScripts`). | `""` |
@@ -168,7 +168,7 @@ The command removes all the Kubernetes components associated with the chart and
| `dashboard.enabled` | Enable parse dashboard | `true` |
| `dashboard.image.registry` | Dashboard image registry | `docker.io` |
| `dashboard.image.repository` | Dashboard image repository | `bitnami/parse-dashboard` |
| `dashboard.image.tag` | Dashboard image tag (immutable tags are recommended) | `3.3.0-debian-11-r0` |
| `dashboard.image.tag` | Dashboard image tag (immutable tags are recommended) | `3.3.0-debian-11-r3` |
| `dashboard.image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `dashboard.image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `dashboard.image.debug` | Enable Parse Dashboard image debug mode | `false` |
@@ -230,8 +230,8 @@ The command removes all the Kubernetes components associated with the chart and
| `dashboard.extraEnvVarsSecret` | Name of a Secret containing extra environment variables | `""` |
| `dashboard.extraVolumes` | Optionally specify extra list of additional volumes for the Parse pod(s) | `[]` |
| `dashboard.extraVolumeMounts` | Optionally specify extra list of additional volumeMounts for the Parse container(s) | `[]` |
| `dashboard.sidecars` | Add additional sidecar containers to the Parse pod(s) | `{}` |
| `dashboard.initContainers` | Add additional init containers to the Parse pod(s) | `{}` |
| `dashboard.sidecars` | Add additional sidecar containers to the Parse pod(s) | `[]` |
| `dashboard.initContainers` | Add additional init containers to the Parse pod(s) | `[]` |
| `dashboard.service.type` | Kubernetes Service type | `LoadBalancer` |
| `dashboard.service.ports.http` | Service HTTP port (Dashboard) | `80` |
| `dashboard.service.nodePorts.http` | Kubernetes HTTP node port | `""` |
@@ -290,7 +290,7 @@ The command removes all the Kubernetes components associated with the chart and
| `volumePermissions.enabled` | Enable init container that changes volume permissions in the data directory (for cases where the default k8s `runAsUser` and `fsUser` values do not work) | `false` |
| `volumePermissions.image.registry` | Init container volume-permissions image registry | `docker.io` |
| `volumePermissions.image.repository` | Init container volume-permissions image name | `bitnami/bitnami-shell` |
| `volumePermissions.image.tag` | Init container volume-permissions image tag | `11-debian-11-r0` |
| `volumePermissions.image.tag` | Init container volume-permissions image tag | `11-debian-11-r3` |
| `volumePermissions.image.pullPolicy` | Init container volume-permissions image pull policy | `IfNotPresent` |
| `volumePermissions.image.pullSecrets` | Init container volume-permissions image pull secrets | `[]` |
| `volumePermissions.resources` | The resources for the container | `{}` |

View File

@@ -2,6 +2,7 @@
## Global Docker image parameters
## Please, note that this will override the image parameters, including dependencies, configured to use the global value
## Current available global Docker image parameters: imageRegistry, imagePullSecrets and storageClass
##
## @param global.imageRegistry Global Docker image registry
## @param global.imagePullSecrets Global Docker registry secret names as an array
@@ -17,6 +18,7 @@ global:
storageClass: ""
## @section Common Parameters
##
## @param nameOverride String to partially override common.names.fullname template (will maintain the release name)
##
@@ -55,6 +57,7 @@ diagnosticMode:
- infinity
## @section Parse server parameters
##
## loadBalancerIP for the Parse Service (optional, cloud specific)
## ref: https://kubernetes.io/docs/user-guide/services/#type-loadbalancer
@@ -174,7 +177,7 @@ server:
## - name: portname
## containerPort: 1234
##
sidecars: {}
sidecars: []
## @param server.initContainers Add additional init containers to the Parse pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
@@ -184,7 +187,7 @@ server:
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: {}
initContainers: []
## @param server.enableCloudCode Enable Parse Cloud Code
## ref: https://github.com/bitnami/bitnami-docker-parse#how-to-deploy-your-cloud-functions-with-parse-cloud-code
@@ -387,6 +390,7 @@ server:
sessionAffinityConfig: {}
## @section Dashboard Parameters
##
dashboard:
## @param dashboard.enabled Enable parse dashboard
@@ -639,7 +643,7 @@ dashboard:
## - name: portname
## containerPort: 1234
##
sidecars: {}
sidecars: []
## @param dashboard.initContainers Add additional init containers to the Parse pod(s)
## ref: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/
## e.g:
@@ -649,7 +653,7 @@ dashboard:
## imagePullPolicy: Always
## command: ['sh', '-c', 'echo "hello world"']
##
initContainers: {}
initContainers: []
## Kubernetes service for Parse Server Deployment
## ref: https://kubernetes.io/docs/user-guide/services/#publishing-services---service-types
##
@@ -706,6 +710,7 @@ dashboard:
sessionAffinityConfig: {}
## @section Traffic Exposure Parameters
##
## Configure the ingress resource that allows you to access the Parse installation.
## ref: https://kubernetes.io/docs/user-guide/ingress/
@@ -821,7 +826,7 @@ ingress:
## - host: parse.local
## http:
## path: /
## backend:
## backend:
## service:
## name: parse-svc
## port:
@@ -830,6 +835,7 @@ ingress:
extraRules: []
## @section Persistence Parameters
##
## Enable persistence using Persistent Volume Claims
## ref: https://kubernetes.io/docs/user-guide/persistent-volumes/
@@ -872,6 +878,7 @@ persistence:
annotations: {}
## @section Volume Permissions parameters
##
## Init containers parameters:
## volumePermissions: Change the owner and group of the persistent volume mountpoint to runAsUser:fsGroup values from the securityContext section.
@@ -921,6 +928,7 @@ serviceAccount:
automountServiceAccountToken: true
## @section MongoDB&reg; Parameters
##
## MongoDB&reg; chart configuration
## https://github.com/bitnami/charts/blob/master/bitnami/mongodb/values.yaml