diff --git a/charts/windmill/Chart.yaml b/charts/windmill/Chart.yaml index 1a791e2..97d664f 100644 --- a/charts/windmill/Chart.yaml +++ b/charts/windmill/Chart.yaml @@ -1,7 +1,7 @@ apiVersion: v2 name: windmill type: application -version: 2.0.266 +version: 2.0.267 appVersion: 1.391.0 dependencies: - condition: postgresql.enabled diff --git a/charts/windmill/templates/app.yaml b/charts/windmill/templates/app.yaml index f3a940d..5dd06b8 100644 --- a/charts/windmill/templates/app.yaml +++ b/charts/windmill/templates/app.yaml @@ -49,6 +49,10 @@ spec: {{- toYaml . | nindent 6 }} {{- end }} - name: windmill-app + securityContext: + {{- with .Values.windmill.app.containerSecurityContext }} + {{- toYaml . | nindent 10 }} + {{- end }} lifecycle: preStop: exec: diff --git a/charts/windmill/templates/hub.yaml b/charts/windmill/templates/hub.yaml index 1f18428..00e9a1e 100644 --- a/charts/windmill/templates/hub.yaml +++ b/charts/windmill/templates/hub.yaml @@ -39,6 +39,10 @@ spec: {{ end }} containers: - name: windmill-hub + securityContext: + {{- with .Values.hub.containerSecurityContext }} + {{- toYaml . | nindent 10 }} + {{- end }} image: {{ default "ghcr.io/windmill-labs/windmillhub-ee-public" .Values.hub.image }}:{{ default "main" .Values.hub.tag }} imagePullPolicy: Always ports: diff --git a/charts/windmill/templates/lsp.yaml b/charts/windmill/templates/lsp.yaml index b77bc3d..b8e0aac 100644 --- a/charts/windmill/templates/lsp.yaml +++ b/charts/windmill/templates/lsp.yaml @@ -38,6 +38,10 @@ spec: {{ end }} containers: - name: windmill-lsp + securityContext: + {{- with .Values.windmill.lsp.containerSecurityContext }} + {{- toYaml . | nindent 10 }} + {{- end }} image: {{ default "ghcr.io/windmill-labs/windmill-lsp" .Values.windmill.lsp.image }}:{{ default "latest" .Values.windmill.lsp.tag }} imagePullPolicy: Always ports: diff --git a/charts/windmill/templates/multiplayer.yaml b/charts/windmill/templates/multiplayer.yaml index c4eb5c5..421b423 100644 --- a/charts/windmill/templates/multiplayer.yaml +++ b/charts/windmill/templates/multiplayer.yaml @@ -39,6 +39,10 @@ spec: {{ end }} containers: - name: windmill-multiplayer + securityContext: + {{- with .Values.windmill.multiplayer.containerSecurityContext }} + {{- toYaml . | nindent 10 }} + {{- end }} image: {{ default "ghcr.io/windmill-labs/windmill-multiplayer" .Values.windmill.multiplayer.image }}:{{ default "latest" .Values.windmill.multiplayer.tag }} imagePullPolicy: Always ports: