diff --git a/CHANGELOG.md b/CHANGELOG.md index c3c19b56e..ef2dd7df2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ numbering uses [semantic versioning](http://semver.org). ## Next Release +## v6.5.19 + +- Make all `livenessProbe` and `readinessProbe` configurations available to the values file + ## v6.5.18 - Update Ambassador to version v1.11.1: [CHANGELOG](https://github.com/datawire/ambassador/blob/master/CHANGELOG.md) diff --git a/Chart.yaml b/Chart.yaml index 33b82d670..5e6e52db6 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -3,7 +3,7 @@ appVersion: 1.11.1 ossVersion: 1.11.1 description: A Helm chart for Datawire Ambassador name: ambassador -version: 6.5.18 +version: 6.5.19 icon: https://www.getambassador.io/images/logo.png home: https://www.getambassador.io/ sources: diff --git a/templates/deployment.yaml b/templates/deployment.yaml index 6887502e9..543e37179 100644 --- a/templates/deployment.yaml +++ b/templates/deployment.yaml @@ -215,16 +215,12 @@ spec: httpGet: path: /ambassador/v0/check_alive port: admin - initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }} - periodSeconds: {{ .Values.livenessProbe.periodSeconds }} - failureThreshold: {{ .Values.livenessProbe.failureThreshold }} + {{- toYaml .Values.livenessProbe | nindent 12 }} readinessProbe: httpGet: path: /ambassador/v0/check_ready port: admin - initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }} - periodSeconds: {{ .Values.readinessProbe.periodSeconds }} - failureThreshold: {{ .Values.readinessProbe.failureThreshold }} + {{- toYaml .Values.readinessProbe | nindent 12 }} volumeMounts: - name: ambassador-pod-info mountPath: /tmp/ambassador-pod-info