You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Update default container security context
Signed-off-by: Yi Chen <[email protected]>
* Push user and group directives into Dockerfile
Signed-off-by: Yi Chen <[email protected]>
* Add allowPrivilegeEscalation to container security context
Signed-off-by: Yi Chen <[email protected]>
* fix: fsGroup should be moved to pod security context
Signed-off-by: Yi Chen <[email protected]>
---------
Signed-off-by: Yi Chen <[email protected]>
| controller.topologySpreadConstraints | list |`[]`| Topology spread constraints rely on node labels to identify the topology domain(s) that each Node is in. Ref: [Pod Topology Spread Constraints](https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/). The labelSelector field in topology spread constraint will be set to the selector labels for controller pods if not specified. |
111
111
| controller.env | list |`[]`| Environment variables for controller containers. |
112
112
| controller.envFrom | list |`[]`| Environment variable sources for controller containers. |
113
113
| controller.volumeMounts | list |`[]`| Volume mounts for controller containers. |
114
114
| controller.resources | object |`{}`| Pod resource requests and limits for controller containers. Note, that each job submission will spawn a JVM within the controller pods using "/usr/local/openjdk-11/bin/java -Xmx128m". Kubernetes may kill these Java processes at will to enforce resource limits. When that happens, you will see the following error: 'failed to run spark-submit for SparkApplication [...]: signal: killed' - when this happens, you may want to increase memory limits. |
| controller.sidecars | list |`[]`| Sidecar containers for controller pods. |
117
117
| controller.podDisruptionBudget.enable | bool |`false`| Specifies whether to create pod disruption budget for controller. Ref: [Specifying a Disruption Budget for your Application](https://kubernetes.io/docs/tasks/run-application/configure-pdb/)|
118
118
| controller.podDisruptionBudget.minAvailable | int |`1`| The number of pods that must be available. Require `controller.replicas` to be greater than 1 |
@@ -144,13 +144,13 @@ See [helm uninstall](https://helm.sh/docs/helm/helm_uninstall) for command docum
144
144
| webhook.affinity | object |`{}`| Affinity for webhook pods. |
145
145
| webhook.tolerations | list |`[]`| List of node taints to tolerate for webhook pods. |
146
146
| webhook.priorityClassName | string |`""`| Priority class for webhook pods. |
| webhook.topologySpreadConstraints | list |`[]`| Topology spread constraints rely on node labels to identify the topology domain(s) that each Node is in. Ref: [Pod Topology Spread Constraints](https://kubernetes.io/docs/concepts/workloads/pods/pod-topology-spread-constraints/). The labelSelector field in topology spread constraint will be set to the selector labels for webhook pods if not specified. |
149
149
| webhook.env | list |`[]`| Environment variables for webhook containers. |
150
150
| webhook.envFrom | list |`[]`| Environment variable sources for webhook containers. |
151
151
| webhook.volumeMounts | list |`[]`| Volume mounts for webhook containers. |
152
152
| webhook.resources | object |`{}`| Pod resource requests and limits for webhook pods. |
| webhook.podDisruptionBudget.enable | bool |`false`| Specifies whether to create pod disruption budget for webhook. Ref: [Specifying a Disruption Budget for your Application](https://kubernetes.io/docs/tasks/run-application/configure-pdb/)|
155
155
| webhook.podDisruptionBudget.minAvailable | int |`1`| The number of pods that must be available. Require `webhook.replicas` to be greater than 1 |
156
156
| spark.jobNamespaces | list |`["default"]`| List of namespaces where to run spark jobs. If empty string is included, all namespaces will be allowed. Make sure the namespaces have already existed. |
0 commit comments