mirror of
https://github.com/bitnami/charts.git
synced 2026-03-16 06:47:30 +08:00
[bitnami/flink] fix: 🐛 Set seLinuxOptions to null for Openshift compatibility (#22586)
Signed-off-by: Javier Salmeron Garcia <jsalmeron@vmware.com>
This commit is contained in:
committed by
GitHub
parent
bc7d848ce3
commit
ac47595c78
@@ -28,4 +28,4 @@ maintainers:
|
||||
name: flink
|
||||
sources:
|
||||
- https://github.com/bitnami/charts/tree/main/bitnami/flink
|
||||
version: 0.7.0
|
||||
version: 0.7.1
|
||||
|
||||
@@ -153,7 +153,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `jobmanager.podSecurityContext.supplementalGroups` | Set filesystem extra groups | `[]` |
|
||||
| `jobmanager.podSecurityContext.fsGroup` | Set Apache Flink pod's Security Context fsGroup | `1001` |
|
||||
| `jobmanager.containerSecurityContext.enabled` | Enabled Apache Flink containers' Security Context | `true` |
|
||||
| `jobmanager.containerSecurityContext.seLinuxOptions` | Set SELinux options in container | `{}` |
|
||||
| `jobmanager.containerSecurityContext.seLinuxOptions` | Set SELinux options in container | `nil` |
|
||||
| `jobmanager.containerSecurityContext.runAsUser` | Set Apache Flink container's Security Context runAsUser | `1001` |
|
||||
| `jobmanager.containerSecurityContext.runAsNonRoot` | Force the container to be run as non root | `true` |
|
||||
| `jobmanager.containerSecurityContext.allowPrivilegeEscalation` | Allows privilege escalation | `false` |
|
||||
@@ -241,7 +241,7 @@ The command removes all the Kubernetes components associated with the chart and
|
||||
| `taskmanager.podSecurityContext.supplementalGroups` | Set filesystem extra groups | `[]` |
|
||||
| `taskmanager.podSecurityContext.fsGroup` | Set Apache Flink pod's Security Context fsGroup | `1001` |
|
||||
| `taskmanager.containerSecurityContext.enabled` | Enabled Apache Flink containers' Security Context | `true` |
|
||||
| `taskmanager.containerSecurityContext.seLinuxOptions` | Set SELinux options in container | `{}` |
|
||||
| `taskmanager.containerSecurityContext.seLinuxOptions` | Set SELinux options in container | `nil` |
|
||||
| `taskmanager.containerSecurityContext.runAsUser` | Set Apache Flink container's Security Context runAsUser | `1001` |
|
||||
| `taskmanager.containerSecurityContext.runAsNonRoot` | Force the container to be run as non root | `true` |
|
||||
| `taskmanager.containerSecurityContext.privileged` | Set primary container's Security Context privileged | `false` |
|
||||
|
||||
@@ -322,7 +322,7 @@ jobmanager:
|
||||
## Configure Container Security Context (only main container)
|
||||
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
|
||||
## @param jobmanager.containerSecurityContext.enabled Enabled Apache Flink containers' Security Context
|
||||
## @param jobmanager.containerSecurityContext.seLinuxOptions Set SELinux options in container
|
||||
## @param jobmanager.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
|
||||
## @param jobmanager.containerSecurityContext.runAsUser Set Apache Flink container's Security Context runAsUser
|
||||
## @param jobmanager.containerSecurityContext.runAsNonRoot Force the container to be run as non root
|
||||
## @param jobmanager.containerSecurityContext.allowPrivilegeEscalation Allows privilege escalation
|
||||
@@ -332,7 +332,7 @@ jobmanager:
|
||||
##
|
||||
containerSecurityContext:
|
||||
enabled: true
|
||||
seLinuxOptions: {}
|
||||
seLinuxOptions: null
|
||||
runAsUser: 1001
|
||||
runAsNonRoot: true
|
||||
allowPrivilegeEscalation: false
|
||||
@@ -638,7 +638,7 @@ taskmanager:
|
||||
## Configure Container Security Context (only main container)
|
||||
## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container
|
||||
## @param taskmanager.containerSecurityContext.enabled Enabled Apache Flink containers' Security Context
|
||||
## @param taskmanager.containerSecurityContext.seLinuxOptions Set SELinux options in container
|
||||
## @param taskmanager.containerSecurityContext.seLinuxOptions [object,nullable] Set SELinux options in container
|
||||
## @param taskmanager.containerSecurityContext.runAsUser Set Apache Flink container's Security Context runAsUser
|
||||
## @param taskmanager.containerSecurityContext.runAsNonRoot Force the container to be run as non root
|
||||
## @param taskmanager.containerSecurityContext.privileged Set primary container's Security Context privileged
|
||||
@@ -648,7 +648,7 @@ taskmanager:
|
||||
##
|
||||
containerSecurityContext:
|
||||
enabled: true
|
||||
seLinuxOptions: {}
|
||||
seLinuxOptions: null
|
||||
runAsUser: 1001
|
||||
runAsNonRoot: true
|
||||
privileged: false
|
||||
|
||||
Reference in New Issue
Block a user