Skip to content

Commit 583e7b5

Browse files
committed
feat: make podSecurityContext configurable
1 parent e07cc2d commit 583e7b5

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

charts/steadybit-extension-http/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
name: steadybit-extension-http
33
description: Steadybit action implementation to check HTTP endpoints.
4-
version: 1.0.16
4+
version: 1.0.17
55
appVersion: latest
66
home: https://www.steadybit.com/
77
icon: https://steadybit-website-assets.s3.amazonaws.com/logo-symbol-transparent.png

charts/steadybit-extension-http/templates/deployment.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ spec:
2929
{{- toYaml . | nindent 8 }}
3030
{{- end }}
3131
spec:
32+
{{- with .Values.podSecurityContext }}
33+
securityContext:
34+
{{- toYaml . | nindent 8 }}
35+
{{- end }}
3236
containers:
3337
- image: {{ .Values.image.name }}:{{ .Values.image.tag }}
3438
imagePullPolicy: {{ .Values.image.pullPolicy }}

charts/steadybit-extension-http/values.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ topologySpreadConstraints: []
7676
# affinity -- Affinities to influence pod assignment.
7777
affinity: {}
7878

79+
# podSecurityContext -- SecurityContext to apply to the pod.
80+
podSecurityContext: {}
81+
7982
# extraEnv -- Array with extra environment variables to add to the container
8083
# e.g:
8184
# extraEnv:

0 commit comments

Comments
 (0)