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
2
2
appVersion : 0.11.7
3
3
description : A dynamic Web Map tile server
4
4
name : titiler
5
- version : 1.1.1
5
+ version : 1.1.2
6
6
icon : https://raw.githubusercontent.com/developmentseed/titiler/main/docs/logos/TiTiler_logo_small.png
7
7
maintainers :
8
8
- name : emmanuelmathot # Emmanuel Mathot
Original file line number Diff line number Diff line change @@ -14,10 +14,14 @@ spec:
14
14
labels :
15
15
{{- include "titiler.selectorLabels" . | nindent 8 }}
16
16
spec :
17
+ securityContext :
18
+ {{- toYaml .Values.podSecurityContext | nindent 8 }}
17
19
containers :
18
20
- name : {{ .Chart.Name }}
19
21
image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
20
22
imagePullPolicy : {{ .Values.image.pullPolicy }}
23
+ securityContext :
24
+ {{- toYaml .Values.securityContext | nindent 12 }}
21
25
env :
22
26
{{- range $key, $val := .Values.env }}
23
27
- name : {{ $key }}
Original file line number Diff line number Diff line change @@ -65,3 +65,17 @@ nodeSelector: {}
65
65
tolerations : []
66
66
67
67
affinity : {}
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