diff --git a/CHANGELOG.md b/CHANGELOG.md index 1253896..38f535b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [3.2.0] - 2026-05-21 + +### Added + +- readinessProbes block + +### Removed + +- tolerations block (obsolete) + ## [3.1.0] - 2026-04-05 ### Added diff --git a/chart/Chart.yaml b/chart/Chart.yaml index ca2b079..82efdc8 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 3.1.0 +version: 3.2.0 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. diff --git a/chart/templates/deployment.yaml b/chart/templates/deployment.yaml index e276974..00c50ec 100644 --- a/chart/templates/deployment.yaml +++ b/chart/templates/deployment.yaml @@ -91,17 +91,12 @@ spec: {{- toYaml . | nindent 13 }} {{- end }} {{- end }} - {{- if .Values.livenessProbe }} - tolerations: - - key: "node.kubernetes.io/unreachable" - operator: "Exists" - effect: "NoExecute" - tolerationSeconds: 10 - - key: "node.kubernetes.io/not-ready" - operator: "Exists" - effect: "NoExecute" - tolerationSeconds: 10 - {{- end }} + {{- if .Values.readinessProbe }} + readinessProbe: + {{- with .Values.readinessProbe }} + {{- toYaml . | nindent 13 }} + {{- end }} + {{- end }} {{ if .Values.image.registrySecret }} imagePullSecrets: - name: {{ .Values.image.registrySecret }}