mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[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:
committed by
Kubernetes Prow Robot
parent
97b2dc2d91
commit
1fff36804f
@@ -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 }}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user