diff --git a/jackett/Chart.yaml b/jackett/Chart.yaml index 787046a2..2dd14de0 100644 --- a/jackett/Chart.yaml +++ b/jackett/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: v0.12.1132-ls37 description: API Support for your favorite torrent trackers name: jackett -version: 1.0.1 +version: 1.0.2 keywords: - jackett - torrent diff --git a/jackett/README.md b/jackett/README.md index 7e731076..5200387d 100644 --- a/jackett/README.md +++ b/jackett/README.md @@ -40,6 +40,12 @@ The following tables lists the configurable parameters of the Sentry chart and t | `timezone` | Timezone the Jackett instance should run as, e.g. 'America/New_York' | `UTC` | | `puid` | process userID the Jackett instance should run as | `1001` | | `pgid` | process groupID the Jackett instance should run as | `1001` | +| `probes.liveness.initialDelaySeconds` | Specify liveness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.liveness.failureThreshold` | Specify liveness `failureThreshold` parameter for the deployment | `5` | +| `probes.liveness.timeoutSeconds` | Specify liveness `timeoutSeconds` parameter for the deployment | `10` | +| `probes.readiness.initialDelaySeconds` | Specify readiness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.readiness.failureThreshold` | Specify readiness `failureThreshold` parameter for the deployment | `5` | +| `probes.readiness.timeoutSeconds` | Specify readiness `timeoutSeconds` parameter for the deployment | `10` | | `Service.type` | Kubernetes service type for the Jackett GUI | `ClusterIP` | | `Service.port` | Kubernetes port where the Jackett GUI is exposed| `9117` | | `Service.annotations` | Service annotations for the Jackett GUI | `{}` | diff --git a/jackett/templates/deployment.yaml b/jackett/templates/deployment.yaml index 9bc379c2..abc0d8a2 100644 --- a/jackett/templates/deployment.yaml +++ b/jackett/templates/deployment.yaml @@ -38,15 +38,15 @@ spec: livenessProbe: tcpSocket: port: http - initialDelaySeconds: 60 - failureThreshold: 5 - timeoutSeconds: 10 + initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} readinessProbe: tcpSocket: port: http - initialDelaySeconds: 60 - failureThreshold: 5 - timeoutSeconds: 10 + initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.readiness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} env: - name: TZ value: "{{ .Values.timezone }}" diff --git a/jackett/values.yaml b/jackett/values.yaml index 7cf7d174..c8441edb 100644 --- a/jackett/values.yaml +++ b/jackett/values.yaml @@ -10,6 +10,17 @@ image: # upgrade strategy type (e.g. Recreate or RollingUpdate) strategyType: Recreate +# Probes configuration +probes: + liveness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + readiness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + nameOverride: "" fullnameOverride: "" diff --git a/nzbget/Chart.yaml b/nzbget/Chart.yaml index ff5f06f4..ead64873 100644 --- a/nzbget/Chart.yaml +++ b/nzbget/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: v21.0-ls14 description: NZBGet is a Usenet downloader client name: nzbget -version: 2.0.9 +version: 2.1.0 keywords: - nzbget - usenet diff --git a/nzbget/README.md b/nzbget/README.md index b1a54e39..0ffb7d5a 100644 --- a/nzbget/README.md +++ b/nzbget/README.md @@ -45,6 +45,12 @@ The following tables lists the configurable parameters of the Sentry chart and t | `timezone` | Timezone the nzbget instance should run as, e.g. 'America/New_York' | `UTC` | | `puid` | process userID the nzbget instance should run as | `1001` | | `pgid` | process groupID the nzbget instance should run as | `1001` | +| `probes.liveness.initialDelaySeconds` | Specify liveness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.liveness.failureThreshold` | Specify liveness `failureThreshold` parameter for the deployment | `5` | +| `probes.liveness.timeoutSeconds` | Specify liveness `timeoutSeconds` parameter for the deployment | `10` | +| `probes.readiness.initialDelaySeconds` | Specify readiness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.readiness.failureThreshold` | Specify readiness `failureThreshold` parameter for the deployment | `5` | +| `probes.readiness.timeoutSeconds` | Specify readiness `timeoutSeconds` parameter for the deployment | `10` | | `Service.type` | Kubernetes service type for the nzbget GUI | `ClusterIP` | | `Service.port` | Kubernetes port where the nzbget GUI is exposed| `6789` | | `Service.annotations` | Service annotations for the nzbget GUI | `{}` | diff --git a/nzbget/templates/deployment.yaml b/nzbget/templates/deployment.yaml index 3d73e607..d88cb3b9 100644 --- a/nzbget/templates/deployment.yaml +++ b/nzbget/templates/deployment.yaml @@ -38,9 +38,15 @@ spec: livenessProbe: tcpSocket: port: http + initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} readinessProbe: tcpSocket: port: http + initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.readiness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} env: - name: TZ value: "{{ .Values.timezone }}" diff --git a/nzbget/values.yaml b/nzbget/values.yaml index 32d1a3a7..34e752b5 100644 --- a/nzbget/values.yaml +++ b/nzbget/values.yaml @@ -10,6 +10,17 @@ image: # upgrade strategy type (e.g. Recreate or RollingUpdate) strategyType: Recreate +# Probes configuration +probes: + liveness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + readiness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + nameOverride: "" fullnameOverride: "" diff --git a/nzbhydra2/Chart.yaml b/nzbhydra2/Chart.yaml index 3ffe14a0..72fbc0ab 100644 --- a/nzbhydra2/Chart.yaml +++ b/nzbhydra2/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: v2.10.2-ls46 description: Usenet meta search name: nzbhydra2 -version: 1.0.1 +version: 1.0.2 keywords: - nzbhydra2 - usenet diff --git a/nzbhydra2/README.md b/nzbhydra2/README.md index 12690d6e..bf14f076 100644 --- a/nzbhydra2/README.md +++ b/nzbhydra2/README.md @@ -40,6 +40,12 @@ The following tables lists the configurable parameters of the Sentry chart and t | `timezone` | Timezone the nzbhydra2 instance should run as, e.g. 'America/New_York' | `UTC` | | `puid` | process userID the nzbhydra2 instance should run as | `1001` | | `pgid` | process groupID the nzbhydra2 instance should run as | `1001` | +| `probes.liveness.initialDelaySeconds` | Specify liveness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.liveness.failureThreshold` | Specify liveness `failureThreshold` parameter for the deployment | `5` | +| `probes.liveness.timeoutSeconds` | Specify liveness `timeoutSeconds` parameter for the deployment | `10` | +| `probes.readiness.initialDelaySeconds` | Specify readiness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.readiness.failureThreshold` | Specify readiness `failureThreshold` parameter for the deployment | `5` | +| `probes.readiness.timeoutSeconds` | Specify readiness `timeoutSeconds` parameter for the deployment | `10` | | `Service.type` | Kubernetes service type for the nzbhydra2 GUI | `ClusterIP` | | `Service.port` | Kubernetes port where the nzbhydra2 GUI is exposed| `5076` | | `Service.annotations` | Service annotations for the nzbhydra2 GUI | `{}` | diff --git a/nzbhydra2/templates/deployment.yaml b/nzbhydra2/templates/deployment.yaml index f836ea73..15f41ed0 100644 --- a/nzbhydra2/templates/deployment.yaml +++ b/nzbhydra2/templates/deployment.yaml @@ -38,15 +38,15 @@ spec: livenessProbe: tcpSocket: port: http - initialDelaySeconds: 60 - failureThreshold: 5 - timeoutSeconds: 10 + initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} readinessProbe: tcpSocket: port: http - initialDelaySeconds: 60 - failureThreshold: 5 - timeoutSeconds: 10 + initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.readiness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} env: - name: TZ value: "{{ .Values.timezone }}" diff --git a/nzbhydra2/values.yaml b/nzbhydra2/values.yaml index 82a66295..d0794e29 100644 --- a/nzbhydra2/values.yaml +++ b/nzbhydra2/values.yaml @@ -10,6 +10,17 @@ image: # upgrade strategy type (e.g. Recreate or RollingUpdate) strategyType: Recreate +# Probes configuration +probes: + liveness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + readiness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + nameOverride: "" fullnameOverride: "" diff --git a/ombi/Chart.yaml b/ombi/Chart.yaml index fdc88589..1440d041 100644 --- a/ombi/Chart.yaml +++ b/ombi/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: 3.0.4914-ls72 description: Want a Movie or TV Show on Plex or Emby? Use Ombi! name: ombi -version: 1.0.1 +version: 1.0.2 keywords: - ombi - plex diff --git a/ombi/README.md b/ombi/README.md index ef632427..4f2ac830 100644 --- a/ombi/README.md +++ b/ombi/README.md @@ -40,6 +40,12 @@ The following tables lists the configurable parameters of the Sentry chart and t | `timezone` | Timezone the Ombi instance should run as, e.g. 'America/New_York' | `UTC` | | `puid` | process userID the Ombi instance should run as | `1001` | | `pgid` | process groupID the Ombi instance should run as | `1001` | +| `probes.liveness.initialDelaySeconds` | Specify liveness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.liveness.failureThreshold` | Specify liveness `failureThreshold` parameter for the deployment | `5` | +| `probes.liveness.timeoutSeconds` | Specify liveness `timeoutSeconds` parameter for the deployment | `10` | +| `probes.readiness.initialDelaySeconds` | Specify readiness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.readiness.failureThreshold` | Specify readiness `failureThreshold` parameter for the deployment | `5` | +| `probes.readiness.timeoutSeconds` | Specify readiness `timeoutSeconds` parameter for the deployment | `10` | | `Service.type` | Kubernetes service type for the Ombi GUI | `ClusterIP` | | `Service.port` | Kubernetes port where the Ombi GUI is exposed| `3579` | | `Service.annotations` | Service annotations for the Ombi GUI | `{}` | diff --git a/ombi/templates/deployment.yaml b/ombi/templates/deployment.yaml index 34bb17e9..2206b886 100644 --- a/ombi/templates/deployment.yaml +++ b/ombi/templates/deployment.yaml @@ -38,15 +38,15 @@ spec: livenessProbe: tcpSocket: port: http - initialDelaySeconds: 60 - failureThreshold: 5 - timeoutSeconds: 10 + initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} readinessProbe: tcpSocket: port: http - initialDelaySeconds: 60 - failureThreshold: 5 - timeoutSeconds: 10 + initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.readiness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} env: - name: TZ value: "{{ .Values.timezone }}" diff --git a/ombi/values.yaml b/ombi/values.yaml index fee84941..4669a037 100644 --- a/ombi/values.yaml +++ b/ombi/values.yaml @@ -10,6 +10,17 @@ image: # upgrade strategy type (e.g. Recreate or RollingUpdate) strategyType: Recreate +# Probes configuration +probes: + liveness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + readiness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + nameOverride: "" fullnameOverride: "" diff --git a/qbittorrent/Chart.yaml b/qbittorrent/Chart.yaml index fc209398..8989b52d 100644 --- a/qbittorrent/Chart.yaml +++ b/qbittorrent/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: 4.1.8 description: qBittorrent is a cross-platform free and open-source BitTorrent client name: qbittorrent -version: 1.0.0 +version: 1.0.1 keywords: - qbittorrent - torrrent diff --git a/qbittorrent/templates/deployment.yaml b/qbittorrent/templates/deployment.yaml index 801982b0..0a0c6000 100644 --- a/qbittorrent/templates/deployment.yaml +++ b/qbittorrent/templates/deployment.yaml @@ -41,12 +41,15 @@ spec: livenessProbe: tcpSocket: port: bt + initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} readinessProbe: tcpSocket: port: bt - periodSeconds: 10 - successThreshold: 1 - failureThreshold: 3 + initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.readiness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} env: - name: TZ value: "{{ .Values.timezone }}" diff --git a/qbittorrent/values.yaml b/qbittorrent/values.yaml index eaa0c3ac..5d975419 100644 --- a/qbittorrent/values.yaml +++ b/qbittorrent/values.yaml @@ -5,6 +5,17 @@ # upgrade strategy type (e.g. Recreate or RollingUpdate) strategyType: Recreate +# Probes configuration +probes: + liveness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + readiness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + nameOverride: "" fullnameOverride: "" diff --git a/radarr/Chart.yaml b/radarr/Chart.yaml index bf26fea0..e18bed26 100644 --- a/radarr/Chart.yaml +++ b/radarr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: amd64-v0.2.0.1344-ls17 description: Radarr is a movie downloading client name: radarr -version: 2.0.8 +version: 2.0.9 keywords: - radarr - usenet diff --git a/radarr/README.md b/radarr/README.md index 9e956785..1f22cc91 100644 --- a/radarr/README.md +++ b/radarr/README.md @@ -40,6 +40,12 @@ The following tables lists the configurable parameters of the Sentry chart and t | `timezone` | Timezone the radarr instance should run as, e.g. 'America/New_York' | `UTC` | | `puid` | process userID the radarr instance should run as | `1001` | | `pgid` | process groupID the radarr instance should run as | `1001` | +| `probes.liveness.initialDelaySeconds` | Specify liveness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.liveness.failureThreshold` | Specify liveness `failureThreshold` parameter for the deployment | `5` | +| `probes.liveness.timeoutSeconds` | Specify liveness `timeoutSeconds` parameter for the deployment | `10` | +| `probes.readiness.initialDelaySeconds` | Specify readiness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.readiness.failureThreshold` | Specify readiness `failureThreshold` parameter for the deployment | `5` | +| `probes.readiness.timeoutSeconds` | Specify readiness `timeoutSeconds` parameter for the deployment | `10` | | `Service.type` | Kubernetes service type for the radarr GUI | `ClusterIP` | | `Service.port` | Kubernetes port where the radarr GUI is exposed| `7878` | | `Service.annotations` | Service annotations for the radarr GUI | `{}` | diff --git a/radarr/templates/deployment.yaml b/radarr/templates/deployment.yaml index fbfb5dc9..50aa34e7 100644 --- a/radarr/templates/deployment.yaml +++ b/radarr/templates/deployment.yaml @@ -38,9 +38,15 @@ spec: livenessProbe: tcpSocket: port: http + initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} readinessProbe: tcpSocket: port: http + initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.readiness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} env: - name: TZ value: "{{ .Values.timezone }}" diff --git a/radarr/values.yaml b/radarr/values.yaml index ac116b06..0ad2a2a9 100644 --- a/radarr/values.yaml +++ b/radarr/values.yaml @@ -10,6 +10,17 @@ image: # upgrade strategy type (e.g. Recreate or RollingUpdate) strategyType: Recreate +# Probes configuration +probes: + liveness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + readiness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + nameOverride: "" fullnameOverride: "" diff --git a/sonarr/Chart.yaml b/sonarr/Chart.yaml index f6739667..d7dd53dd 100644 --- a/sonarr/Chart.yaml +++ b/sonarr/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: amd64-2.0.0.5321-ls62 description: Sonarr is a television show downloading client name: sonarr -version: 2.0.7 +version: 2.0.8 keywords: - sonarr - usenet diff --git a/sonarr/README.md b/sonarr/README.md index a4cdfeed..255eebe4 100644 --- a/sonarr/README.md +++ b/sonarr/README.md @@ -40,6 +40,12 @@ The following tables lists the configurable parameters of the Sentry chart and t | `timezone` | Timezone the sonarr instance should run as, e.g. 'America/New_York' | `UTC` | | `puid` | process userID the sonarr instance should run as | `1001` | | `pgid` | process groupID the sonarr instance should run as | `1001` | +| `probes.liveness.initialDelaySeconds` | Specify liveness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.liveness.failureThreshold` | Specify liveness `failureThreshold` parameter for the deployment | `5` | +| `probes.liveness.timeoutSeconds` | Specify liveness `timeoutSeconds` parameter for the deployment | `10` | +| `probes.readiness.initialDelaySeconds` | Specify readiness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.readiness.failureThreshold` | Specify readiness `failureThreshold` parameter for the deployment | `5` | +| `probes.readiness.timeoutSeconds` | Specify readiness `timeoutSeconds` parameter for the deployment | `10` | | `Service.type` | Kubernetes service type for the sonarr GUI | `ClusterIP` | | `Service.port` | Kubernetes port where the sonarr GUI is exposed| `8989` | | `Service.annotations` | Service annotations for the sonarr GUI | `{}` | diff --git a/sonarr/templates/deployment.yaml b/sonarr/templates/deployment.yaml index 122d0a79..04c3f17c 100644 --- a/sonarr/templates/deployment.yaml +++ b/sonarr/templates/deployment.yaml @@ -39,10 +39,16 @@ spec: httpGet: path: / port: http + initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} readinessProbe: httpGet: path: / port: http + initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.readiness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} env: - name: TZ value: "{{ .Values.timezone }}" diff --git a/sonarr/values.yaml b/sonarr/values.yaml index acb97423..0c381a98 100644 --- a/sonarr/values.yaml +++ b/sonarr/values.yaml @@ -10,6 +10,17 @@ image: # upgrade strategy type (e.g. Recreate or RollingUpdate) strategyType: Recreate +# Probes configuration +probes: + liveness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + readiness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + nameOverride: "" fullnameOverride: "" diff --git a/tautulli/Chart.yaml b/tautulli/Chart.yaml index c1a6e7c8..1d514271 100644 --- a/tautulli/Chart.yaml +++ b/tautulli/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v1 appVersion: v2.1.39-ls32 description: A Python based monitoring and tracking tool for Plex Media Server. name: tautulli -version: 1.0.1 +version: 1.0.2 keywords: - tautulli - plex diff --git a/tautulli/README.md b/tautulli/README.md index a34a11c2..65c094f3 100644 --- a/tautulli/README.md +++ b/tautulli/README.md @@ -40,6 +40,12 @@ The following tables lists the configurable parameters of the Sentry chart and t | `timezone` | Timezone the Tautulli instance should run as, e.g. 'America/New_York' | `UTC` | | `puid` | process userID the Tautulli instance should run as | `1001` | | `pgid` | process groupID the Tautulli instance should run as | `1001` | +| `probes.liveness.initialDelaySeconds` | Specify liveness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.liveness.failureThreshold` | Specify liveness `failureThreshold` parameter for the deployment | `5` | +| `probes.liveness.timeoutSeconds` | Specify liveness `timeoutSeconds` parameter for the deployment | `10` | +| `probes.readiness.initialDelaySeconds` | Specify readiness `initialDelaySeconds` parameter for the deployment | `60` | +| `probes.readiness.failureThreshold` | Specify readiness `failureThreshold` parameter for the deployment | `5` | +| `probes.readiness.timeoutSeconds` | Specify readiness `timeoutSeconds` parameter for the deployment | `10` | | `Service.type` | Kubernetes service type for the Tautulli GUI | `ClusterIP` | | `Service.port` | Kubernetes port where the Tautulli GUI is exposed| `8181` | | `Service.annotations` | Service annotations for the Tautulli GUI | `{}` | diff --git a/tautulli/templates/deployment.yaml b/tautulli/templates/deployment.yaml index 4c89431d..7c3bb354 100644 --- a/tautulli/templates/deployment.yaml +++ b/tautulli/templates/deployment.yaml @@ -38,15 +38,15 @@ spec: livenessProbe: tcpSocket: port: http - initialDelaySeconds: 60 - failureThreshold: 5 - timeoutSeconds: 10 + initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.liveness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} readinessProbe: tcpSocket: port: http - initialDelaySeconds: 60 - failureThreshold: 5 - timeoutSeconds: 10 + initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.readiness.failureThreshold }} + timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} env: - name: TZ value: "{{ .Values.timezone }}" diff --git a/tautulli/values.yaml b/tautulli/values.yaml index 1473c32a..d16a3c1d 100644 --- a/tautulli/values.yaml +++ b/tautulli/values.yaml @@ -10,6 +10,17 @@ image: # upgrade strategy type (e.g. Recreate or RollingUpdate) strategyType: Recreate +# Probes configuration +probes: + liveness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + readiness: + initialDelaySeconds: 60 + failureThreshold: 5 + timeoutSeconds: 10 + nameOverride: "" fullnameOverride: ""