[stable/spinnaker] Making permissions to write for user/group as a variable (#15645)

* Making permissions to write for user/group as a variable

Signed-off-by: Elizaveta <lizasvit@gmail.com>

* bumped the version

Signed-off-by: Elizaveta <lizasvit@gmail.com>

* consistent variable names

Signed-off-by: Elizaveta <lizasvit@gmail.com>

* version bumped

Signed-off-by: Elizaveta <lizasvit@gmail.com>
This commit is contained in:
ElizabethSvit
2019-07-26 12:09:57 -07:00
committed by Kubernetes Prow Robot
parent 97b2dc2d91
commit 1fff36804f
3 changed files with 7 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
apiVersion: v1
description: Open source, multi-cloud continuous delivery platform for releasing software changes with high velocity and confidence.
name: spinnaker
version: 1.13.3
version: 1.13.4
appVersion: 1.12.5
home: http://spinnaker.io/
sources:
@@ -27,8 +27,8 @@ spec:
serviceAccountName: {{ template "spinnaker.fullname" . }}-halyard
{{- end }}
securityContext:
runAsUser: 1000
fsGroup: 1000
runAsUser: {{ .Values.securityContext.runAsUser }}
fsGroup: {{ .Values.securityContext.fsGroup }}
initContainers:
- name: "create-halyard-local"
image: {{ .Values.halyard.image.repository }}:{{ .Values.halyard.image.tag }}
+4
View File
@@ -231,3 +231,7 @@ serviceAccount:
# If left blank it is auto-generated from the fullname of the release
halyardName:
spinnakerName:
securityContext:
# Specifies permissions to write for user/group
runAsUser: 1000
fsGroup: 1000