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
22appVersion : 0.11.7
33description : A dynamic Web Map tile server
44name : titiler
5- version : 1.1.0
5+ version : 1.1.1
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 @@ -49,10 +49,31 @@ spec:
4949 - mountPath : /config
5050 name : config
5151 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 }}
5261 volumes :
5362 - name : config
5463 configMap :
5564 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 }}
5677 {{- with .Values.serviceAccountName }}
5778 serviceAccountName : {{ . | quote }}
5879 {{- end }}
Original file line number Diff line number Diff line change @@ -14,6 +14,17 @@ ingress:
1414 hosts :
1515 - titiler.charter.uat.esaportal.eu
1616
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+
1728env :
1829 PORT : 80
1930 CPL_TMPDIR : /tmp
Original file line number Diff line number Diff line change 99nameOverride : " "
1010fullnameOverride : " "
1111
12+ terminationGracePeriodSeconds : 30
13+
1214service :
1315 type : ClusterIP
1416 port : 80
@@ -26,6 +28,15 @@ ingress:
2628 # hosts:
2729 # - titiler.local
2830
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+
2940env :
3041 PORT : 80
3142 CPL_TMPDIR : /tmp
You can’t perform that action at this time.
0 commit comments