File tree Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Expand file tree Collapse file tree 3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v1
22appVersion : 0.11.7
33description : A dynamic Web Map tile server
44name : titiler
5- version : 1.1.1
5+ version : 1.1.2
66icon : https://raw.githubusercontent.com/developmentseed/titiler/main/docs/logos/TiTiler_logo_small.png
77maintainers :
88 - name : emmanuelmathot # Emmanuel Mathot
Original file line number Diff line number Diff line change @@ -14,10 +14,14 @@ spec:
1414 labels :
1515 {{- include "titiler.selectorLabels" . | nindent 8 }}
1616 spec :
17+ securityContext :
18+ {{- toYaml .Values.podSecurityContext | nindent 8 }}
1719 containers :
1820 - name : {{ .Chart.Name }}
1921 image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
2022 imagePullPolicy : {{ .Values.image.pullPolicy }}
23+ securityContext :
24+ {{- toYaml .Values.securityContext | nindent 12 }}
2125 env :
2226 {{- range $key, $val := .Values.env }}
2327 - name : {{ $key }}
Original file line number Diff line number Diff line change @@ -65,3 +65,17 @@ nodeSelector: {}
6565tolerations : []
6666
6767affinity : {}
68+
69+ securityContext : {}
70+ # capabilities:
71+ # drop:
72+ # - ALL
73+ # readOnlyRootFilesystem: true
74+ # allowPrivilegeEscalation: false
75+ # runAsNonRoot: true
76+ # runAsUser: 1001
77+
78+ podSecurityContext : {}
79+ # fsGroup: 1001
80+ # runAsNonRoot: true
81+ # runAsUser: 1001
You can’t perform that action at this time.
0 commit comments