diff --git a/charts/sabnzbd/Chart.yaml b/charts/sabnzbd/Chart.yaml index 37ad7e6..efb09c2 100644 --- a/charts/sabnzbd/Chart.yaml +++ b/charts/sabnzbd/Chart.yaml @@ -3,5 +3,5 @@ name: sabnzbd description: A Helm chart for SABnzbd. type: application icon: https://sabnzbd.org/images/logo-full.svg -version: 0.1.0 +version: 0.1.1 appVersion: "3.7.2" diff --git a/charts/sabnzbd/templates/deployment.yaml b/charts/sabnzbd/templates/deployment.yaml index c61afc1..25be496 100644 --- a/charts/sabnzbd/templates/deployment.yaml +++ b/charts/sabnzbd/templates/deployment.yaml @@ -38,10 +38,16 @@ spec: httpGet: path: / port: http + initialDelaySeconds: {{ .Values.probes.livenessProbe.initialDelaySeconds }} + timeoutSeconds: {{ .Values.probes.livenessProbe.timeoutSeconds }} + periodSeconds: {{ .Values.probes.livenessProbe.periodSeconds }} readinessProbe: httpGet: path: / port: http + initialDelaySeconds: {{ .Values.probes.readinessProbe.initialDelaySeconds }} + timeoutSeconds: {{ .Values.probes.readinessProbe.timeoutSeconds }} + periodSeconds: {{ .Values.probes.readinessProbe.periodSeconds }} resources: {{- toYaml .Values.resources | nindent 12 }} volumeMounts: diff --git a/charts/sabnzbd/values.yaml b/charts/sabnzbd/values.yaml index bf6186c..804c098 100644 --- a/charts/sabnzbd/values.yaml +++ b/charts/sabnzbd/values.yaml @@ -12,6 +12,16 @@ fullnameOverride: "" podAnnotations: {} +probes: + livenessProbe: + timeoutSeconds: 15 + periodSeconds: 45 + initialDelaySeconds: 30 + readinessProbe: + timeoutSeconds: 15 + periodSeconds: 45 + initialDelaySeconds: 30 + podSecurityContext: {} # fsGroup: 2000