diff --git a/charts/blocky/Chart.yaml b/charts/blocky/Chart.yaml index 5d208d9..8f6d03a 100644 --- a/charts/blocky/Chart.yaml +++ b/charts/blocky/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: 0.24.3 +version: 0.24.4 # 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 diff --git a/charts/blocky/templates/daemonset.yaml b/charts/blocky/templates/daemonset.yaml index a0c0e58..0c28954 100644 --- a/charts/blocky/templates/daemonset.yaml +++ b/charts/blocky/templates/daemonset.yaml @@ -63,17 +63,17 @@ spec: command: - /app/blocky - healthcheck - timeoutSeconds: 1 - failureThreshold: 1 - periodSeconds: 1 + timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }} + failureThreshold: {{ .Values.readinessProbe.failureThreshold }} + periodSeconds: {{ .Values.readinessProbe.periodSeconds }} startupProbe: exec: command: - /app/blocky - healthcheck - timeoutSeconds: 1 - failureThreshold: 120 - periodSeconds: 1 + timeoutSeconds: {{ .Values.startupProbe.timeoutSeconds }} + failureThreshold: {{ .Values.startupProbe.failureThreshold }} + periodSeconds: {{ .Values.startupProbe.periodSeconds }} resources: {{- toYaml .Values.resources | nindent 12 }} volumeMounts: diff --git a/charts/blocky/values.yaml b/charts/blocky/values.yaml index b1f319a..9230035 100644 --- a/charts/blocky/values.yaml +++ b/charts/blocky/values.yaml @@ -433,6 +433,16 @@ updateStrategy: rollingUpdate: maxUnavailable: 1 +readinessProbe: + timeoutSeconds: 1 + failureThreshold: 1 + periodSeconds: 1 + +startupProbe: + timeoutSeconds: 1 + failureThreshold: 120 + periodSeconds: 1 + podAnnotations: {} podSecurityContext: