From 750ef9af1c51f7c65800748ae09e4846422890ac Mon Sep 17 00:00:00 2001 From: Kierran McPherson Date: Tue, 23 Jul 2019 10:10:48 +1200 Subject: [PATCH] Add empty default value for podSecurityContext and containerSecurityContext (#1016) Co-Authored-By: Pirmin Schuermann --- charts/zalenium/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/zalenium/values.yaml b/charts/zalenium/values.yaml index de11054b79..463dea4742 100644 --- a/charts/zalenium/values.yaml +++ b/charts/zalenium/values.yaml @@ -29,14 +29,14 @@ hub: ## Pod Security Context ## ref: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/ ## in case it is running outside openshift, this should fix this https://github.com/zalando/zalenium/issues/631 - podSecurityContext: + podSecurityContext: {} ## See all the options here https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.15/#podsecuritycontext-v1-core # fsGroup: 1000 # runAsUser: 1000 # runAsGroup: 1000 ## Container Security Context - containerSecurityContext: + containerSecurityContext: {} ## See all the options here https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.15/#securitycontext-v1-core # capabilities: [] # privileged: false