feat: allow for configuring security context of all components (#410)
This commit is contained in:
parent
196ab4f281
commit
d32e27edc8
5 changed files with 19 additions and 2 deletions
|
|
@ -31,6 +31,8 @@ controller:
|
|||
podAnnotations: {}
|
||||
# Optional labels to add to the controller pods
|
||||
podLabels: {}
|
||||
# SecurityContext to set on the controller pods
|
||||
podSecurityContext: {}
|
||||
# podPortName: http
|
||||
metricsConfig:
|
||||
enabled: false
|
||||
|
|
@ -121,6 +123,8 @@ executor:
|
|||
resources: {}
|
||||
# Adds environment variables for the executor.
|
||||
env: {}
|
||||
# sets security context for the executor container
|
||||
securityContext: {}
|
||||
|
||||
server:
|
||||
enabled: true
|
||||
|
|
@ -135,6 +139,8 @@ server:
|
|||
podAnnotations: {}
|
||||
# Optional labels to add to the UI pods
|
||||
podLabels: {}
|
||||
# SecurityContext to set on the server pods
|
||||
podSecurityContext: {}
|
||||
name: server
|
||||
serviceType: ClusterIP
|
||||
servicePort: 2746
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue