mirror of
https://github.com/bitnami/charts.git
synced 2026-03-15 14:57:16 +08:00
[bitnami/spark] fix: 🐛 Use proper type for sidecars and init containers (#10759)
* [bitnami/spark] 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
c7dfa010c8
commit
05ca42c9b0
@@ -22,4 +22,4 @@ name: spark
|
||||
sources:
|
||||
- https://github.com/bitnami/bitnami-docker-spark
|
||||
- https://spark.apache.org/
|
||||
version: 6.1.9
|
||||
version: 6.1.10
|
||||
|
||||
@@ -85,7 +85,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| ------------------- | ------------------------------------------------ | -------------------- |
|
||||
| `image.registry` | Spark image registry | `docker.io` |
|
||||
| `image.repository` | Spark image repository | `bitnami/spark` |
|
||||
| `image.tag` | Spark image tag (immutable tags are recommended) | `3.2.1-debian-11-r0` |
|
||||
| `image.tag` | Spark image tag (immutable tags are recommended) | `3.2.1-debian-11-r3` |
|
||||
| `image.pullPolicy` | Spark image pull policy | `IfNotPresent` |
|
||||
| `image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
|
||||
| `image.debug` | Enable image debug mode | `false` |
|
||||
@@ -159,7 +159,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `master.customLivenessProbe` | Custom livenessProbe that overrides the default one | `{}` |
|
||||
| `master.customReadinessProbe` | Custom readinessProbe that overrides the default one | `{}` |
|
||||
| `master.customStartupProbe` | Custom startupProbe that overrides the default one | `{}` |
|
||||
| `master.sidecars` | Add additional sidecar containers to the master pod(s) | `{}` |
|
||||
| `master.sidecars` | Add additional sidecar containers to the master pod(s) | `[]` |
|
||||
| `master.initContainers` | Add initContainers to the master pods. | `[]` |
|
||||
|
||||
|
||||
@@ -236,7 +236,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `worker.customLivenessProbe` | Custom livenessProbe that overrides the default one | `{}` |
|
||||
| `worker.customReadinessProbe` | Custom readinessProbe that overrides the default one | `{}` |
|
||||
| `worker.customStartupProbe` | Custom startupProbe that overrides the default one | `{}` |
|
||||
| `worker.sidecars` | Add additional sidecar containers to the worker pod(s) | `{}` |
|
||||
| `worker.sidecars` | Add additional sidecar containers to the worker pod(s) | `[]` |
|
||||
| `worker.initContainers` | Add initContainers to the worker pods. | `[]` |
|
||||
| `worker.autoscaling.enabled` | Enable replica autoscaling depending on CPU | `false` |
|
||||
| `worker.autoscaling.minReplicas` | Minimum number of worker replicas | `""` |
|
||||
|
||||
@@ -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 kubeVersion Force target Kubernetes version (using Helm capabilities if not set)
|
||||
##
|
||||
@@ -58,6 +60,7 @@ diagnosticMode:
|
||||
- infinity
|
||||
|
||||
## @section Spark parameters
|
||||
##
|
||||
|
||||
## Bitnami Spark image version
|
||||
## ref: https://hub.docker.com/r/bitnami/spark/tags/
|
||||
@@ -95,6 +98,7 @@ image:
|
||||
hostNetwork: false
|
||||
|
||||
## @section Spark master parameters
|
||||
##
|
||||
|
||||
## Spark master specific configuration
|
||||
##
|
||||
@@ -228,8 +232,8 @@ master:
|
||||
## maxSurge: 25%
|
||||
## maxUnavailable: 25%
|
||||
##
|
||||
updateStrategy:
|
||||
type: RollingUpdate
|
||||
updateStrategy:
|
||||
type: RollingUpdate
|
||||
## @param master.priorityClassName master pods' priorityClassName
|
||||
##
|
||||
priorityClassName: ""
|
||||
@@ -268,11 +272,13 @@ master:
|
||||
## limits:
|
||||
## cpu: 250m
|
||||
## memory: 256Mi
|
||||
##
|
||||
limits: {}
|
||||
## Examples:
|
||||
## requests:
|
||||
## cpu: 250m
|
||||
## memory: 256Mi
|
||||
##
|
||||
requests: {}
|
||||
## Configure extra options for liveness probe
|
||||
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
|
||||
@@ -340,7 +346,7 @@ master:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
sidecars: {}
|
||||
sidecars: []
|
||||
## @param master.initContainers Add initContainers to the master pods.
|
||||
## Example:
|
||||
## initContainers:
|
||||
@@ -354,6 +360,7 @@ master:
|
||||
initContainers: []
|
||||
|
||||
## @section Spark worker parameters
|
||||
##
|
||||
|
||||
## Spark worker specific configuration
|
||||
##
|
||||
@@ -404,6 +411,7 @@ worker:
|
||||
## extraEnvVars:
|
||||
## - name: SPARK_DAEMON_JAVA_OPTS
|
||||
## value: -Dx=y
|
||||
##
|
||||
extraEnvVars: []
|
||||
## @param worker.extraEnvVarsCM Name of existing ConfigMap containing extra env vars for worker nodes
|
||||
##
|
||||
@@ -501,8 +509,8 @@ worker:
|
||||
## maxSurge: 25%
|
||||
## maxUnavailable: 25%
|
||||
##
|
||||
updateStrategy:
|
||||
type: RollingUpdate
|
||||
updateStrategy:
|
||||
type: RollingUpdate
|
||||
## @param worker.podManagementPolicy Statefulset Pod Management Policy Type
|
||||
## ref: https://kubernetes.io/docs/concepts/workloads/controllers/statefulset/#pod-management-policies
|
||||
##
|
||||
@@ -545,11 +553,13 @@ worker:
|
||||
## limits:
|
||||
## cpu: 250m
|
||||
## memory: 256Mi
|
||||
##
|
||||
limits: {}
|
||||
## Examples:
|
||||
## requests:
|
||||
## cpu: 250m
|
||||
## memory: 256Mi
|
||||
##
|
||||
requests: {}
|
||||
## Configure extra options for liveness probe
|
||||
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/#configure-probes
|
||||
@@ -617,7 +627,7 @@ worker:
|
||||
## - name: portname
|
||||
## containerPort: 1234
|
||||
##
|
||||
sidecars: {}
|
||||
sidecars: []
|
||||
## @param worker.initContainers Add initContainers to the worker pods.
|
||||
## Example:
|
||||
## initContainers:
|
||||
@@ -644,6 +654,7 @@ worker:
|
||||
targetMemory: ""
|
||||
|
||||
## @section Security parameters
|
||||
##
|
||||
|
||||
## Security configuration
|
||||
##
|
||||
@@ -707,14 +718,17 @@ security:
|
||||
## limits:
|
||||
## cpu: 100m
|
||||
## memory: 128Mi
|
||||
##
|
||||
limits: {}
|
||||
## Examples:
|
||||
## requests:
|
||||
## cpu: 100m
|
||||
## memory: 128Mi
|
||||
##
|
||||
requests: {}
|
||||
|
||||
## @section Traffic Exposure parameters
|
||||
##
|
||||
|
||||
## Service parameters
|
||||
##
|
||||
@@ -869,7 +883,7 @@ ingress:
|
||||
## - host: spark.local
|
||||
## http:
|
||||
## path: /
|
||||
## backend:
|
||||
## backend:
|
||||
## service:
|
||||
## name: spark-svc
|
||||
## port:
|
||||
@@ -878,6 +892,7 @@ ingress:
|
||||
extraRules: []
|
||||
|
||||
## @section Other parameters
|
||||
##
|
||||
|
||||
## ServiceAccount configuration
|
||||
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
|
||||
@@ -898,6 +913,7 @@ serviceAccount:
|
||||
automountServiceAccountToken: true
|
||||
|
||||
## @section Metrics parameters
|
||||
##
|
||||
|
||||
## Metrics configuration
|
||||
##
|
||||
|
||||
Reference in New Issue
Block a user