File tree Expand file tree Collapse file tree 4 files changed +44
-1
lines changed Expand file tree Collapse file tree 4 files changed +44
-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.0
5
+ version : 1.1.1
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 @@ -49,10 +49,31 @@ spec:
49
49
- mountPath : /config
50
50
name : config
51
51
readOnly : true
52
+ {{- range .Values.extraHostPathMounts }}
53
+ - name : {{ .name }}
54
+ mountPath : {{ .mountPath }}
55
+ readOnly : {{ .readOnly }}
56
+ {{- if .mountPropagation }}
57
+ mountPropagation : {{ .mountPropagation }}
58
+ {{- end }}
59
+ {{- end }}
60
+ terminationGracePeriodSeconds : {{ .Values.env.terminationGracePeriodSeconds }}
52
61
volumes :
53
62
- name : config
54
63
configMap :
55
64
name : {{ include "titiler.fullname" . }}-configmap
65
+ {{- range .Values.extraHostPathMounts }}
66
+ - name : {{ .name }}
67
+ hostPath :
68
+ path : {{ .hostPath }}
69
+ type : Directory
70
+ {{- end }}
71
+ {{- with .Values.imagePullSecrets }}
72
+ imagePullSecrets :
73
+ {{- range . }}
74
+ - name : {{ .name }}
75
+ {{- end }}
76
+ {{- end }}
56
77
{{- with .Values.serviceAccountName }}
57
78
serviceAccountName : {{ . | quote }}
58
79
{{- end }}
Original file line number Diff line number Diff line change @@ -14,6 +14,17 @@ ingress:
14
14
hosts :
15
15
- titiler.charter.uat.esaportal.eu
16
16
17
+ terminationGracePeriodSeconds : 30
18
+
19
+ extraHostPathMounts : []
20
+ # - name: map-sources
21
+ # mountPath: /map-sources/
22
+ # hostPath: /home/ubuntu/map-sources
23
+ # readOnly: false
24
+ # mountPropagation: HostToContainer # OPTIONAL
25
+
26
+ imagePullSecrets : []
27
+
17
28
env :
18
29
PORT : 80
19
30
CPL_TMPDIR : /tmp
Original file line number Diff line number Diff line change 9
9
nameOverride : " "
10
10
fullnameOverride : " "
11
11
12
+ terminationGracePeriodSeconds : 30
13
+
12
14
service :
13
15
type : ClusterIP
14
16
port : 80
@@ -26,6 +28,15 @@ ingress:
26
28
# hosts:
27
29
# - titiler.local
28
30
31
+ extraHostPathMounts : []
32
+ # - name: map-sources
33
+ # mountPath: /map-sources/
34
+ # hostPath: /home/ubuntu/map-sources
35
+ # readOnly: false
36
+ # mountPropagation: HostToContainer # OPTIONAL
37
+
38
+ imagePullSecrets : []
39
+
29
40
env :
30
41
PORT : 80
31
42
CPL_TMPDIR : /tmp
You can’t perform that action at this time.
0 commit comments