Calico-etcd: Add pod/container security context
This updates the Calico-etcd chart to include the pod security context on the pod template This also adds the container security context to set readOnlyRootFilesystem to true Change-Id: I10ff398d7a552d5287d841ca39c77ea097f7e67e
This commit is contained in:
parent
d738cd5e91
commit
4f59603879
@ -51,8 +51,7 @@ spec:
|
||||
# a failure. This annotation works in tandem with the toleration below.
|
||||
scheduler.alpha.kubernetes.io/critical-pod: ''
|
||||
spec:
|
||||
securityContext:
|
||||
readOnlyRootFilesystem: true
|
||||
{{ dict "envAll" $envAll "application" "calico" | include "helm-toolkit.snippets.kubernetes_pod_security_context" | indent 6 }}
|
||||
serviceAccountName: {{ $serviceAccountName }}
|
||||
tolerations:
|
||||
# This taint is set by all kubelets running `--cloud-provider=external`
|
||||
@ -77,6 +76,7 @@ spec:
|
||||
- name: calico-etcd
|
||||
{{ tuple $envAll "calico_etcd" | include "helm-toolkit.snippets.image" | indent 10 }}
|
||||
{{ tuple $envAll $envAll.Values.pod.resources.calico_etcd | include "helm-toolkit.snippets.kubernetes_resources" | indent 10 }}
|
||||
{{ dict "envAll" $envAll "application" "calico" "container" "calico_etcd" | include "helm-toolkit.snippets.kubernetes_container_security_context" | indent 10 }}
|
||||
env:
|
||||
- name: CALICO_ETCD_IP
|
||||
valueFrom:
|
||||
|
@ -37,6 +37,13 @@ images:
|
||||
- calico_kube_controllers
|
||||
|
||||
pod:
|
||||
security_context:
|
||||
calico:
|
||||
pod:
|
||||
runAsUser: 0
|
||||
container:
|
||||
calico_etcd:
|
||||
readOnlyRootFilesystem: true
|
||||
resources:
|
||||
enabled: false
|
||||
jobs:
|
||||
|
Loading…
Reference in New Issue
Block a user