Skip to content

Commit e599c93

Browse files
committed
fix: prevent container uid collisions in helm
1 parent c6594c7 commit e599c93

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

helm/templates/deployment.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ spec:
1717
serviceAccountName: {{ include "harmony-proxy.serviceAccountName" . }}
1818
securityContext:
1919
runAsNonRoot: true
20-
runAsUser: 1000
21-
runAsGroup: 1000
22-
fsGroup: 1000
20+
runAsUser: 10000
21+
runAsGroup: 10000
22+
fsGroup: 10000
2323
containers:
2424
- name: {{ .Chart.Name }}
2525
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"

0 commit comments

Comments
 (0)