File tree Expand file tree Collapse file tree 4 files changed +24
-2
lines changed
Expand file tree Collapse file tree 4 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 6969
7070## 0.6.7
7171
72- * See 0.6.6. This is a re-release of 0.6.6 to test an updated chart release process.
72+ * See 0.6.6. This is a re-release of 0.6.6 to test an updated chart release process.
73+
74+ ## 0.6.8
75+
76+ * Added support for host-aliases, and volume mounts to the Sombra customer-ingress pods.
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : sombra
33description : A Helm chart to deploy Sombra and its dependent services in a Kubernetes cluster
44type : application
5- version : 0.6.7
5+ version : 0.6.8
66maintainers :
77- name : Transcend
88
Original file line number Diff line number Diff line change 3838 serviceAccountName : {{ include "sombra-chart.serviceAccountName" . }}
3939 {{- end }}
4040 {{- end }}
41+ {{- with .Values.hostAliases }}
42+ hostAliases :
43+ {{- toYaml . | nindent 8 }}
44+ {{- end }}
45+ {{- with .Values.volumes }}
46+ volumes :
47+ {{- toYaml . | nindent 8 }}
48+ {{- end }}
4149 containers :
4250 - name : {{ .Chart.Name }}
4351 image : " {{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
8189 {{- toYaml .Values.readinessProbe | nindent 12 }}
8290 resources :
8391 {{- toYaml .Values.resources | nindent 12 }}
92+ volumeMounts :
93+ {{- toYaml .Values.volumeMounts | nindent 12 }}
8494 {{- with .Values.nodeSelector }}
8595 nodeSelector :
8696 {{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -179,6 +179,14 @@ readinessProbe:
179179 port : 5042
180180 scheme : HTTP
181181
182+ # Host-aliases to define on the pods.
183+ hostAliases : []
184+
185+ # Volumes to add to the pods.
186+ volumes : []
187+ # Volume mounts to add to the pods.
188+ volumeMounts : []
189+
182190# Enable to use horizontal pod autoscaling based off metrics
183191autoscaling :
184192 enabled : false
You can’t perform that action at this time.
0 commit comments