Add probe configuration (#98)

This commit is contained in:
Devin Buhl 2019-12-14 10:15:02 -05:00 committed by Jeff Billimek
parent 1de3b25e66
commit d0315de42f
31 changed files with 186 additions and 35 deletions

View File

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: v0.12.1132-ls37 appVersion: v0.12.1132-ls37
description: API Support for your favorite torrent trackers description: API Support for your favorite torrent trackers
name: jackett name: jackett
version: 1.0.1 version: 1.0.2
keywords: keywords:
- jackett - jackett
- torrent - torrent

View File

@ -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` | | `timezone` | Timezone the Jackett instance should run as, e.g. 'America/New_York' | `UTC` |
| `puid` | process userID the Jackett instance should run as | `1001` | | `puid` | process userID the Jackett instance should run as | `1001` |
| `pgid` | process groupID 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.type` | Kubernetes service type for the Jackett GUI | `ClusterIP` |
| `Service.port` | Kubernetes port where the Jackett GUI is exposed| `9117` | | `Service.port` | Kubernetes port where the Jackett GUI is exposed| `9117` |
| `Service.annotations` | Service annotations for the Jackett GUI | `{}` | | `Service.annotations` | Service annotations for the Jackett GUI | `{}` |

View File

@ -38,15 +38,15 @@ spec:
livenessProbe: livenessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: 60 initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
failureThreshold: 5 failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
timeoutSeconds: 10 timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
readinessProbe: readinessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: 60 initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
failureThreshold: 5 failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
timeoutSeconds: 10 timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
env: env:
- name: TZ - name: TZ
value: "{{ .Values.timezone }}" value: "{{ .Values.timezone }}"

View File

@ -10,6 +10,17 @@ image:
# upgrade strategy type (e.g. Recreate or RollingUpdate) # upgrade strategy type (e.g. Recreate or RollingUpdate)
strategyType: Recreate strategyType: Recreate
# Probes configuration
probes:
liveness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
readiness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""

View File

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: v21.0-ls14 appVersion: v21.0-ls14
description: NZBGet is a Usenet downloader client description: NZBGet is a Usenet downloader client
name: nzbget name: nzbget
version: 2.0.9 version: 2.1.0
keywords: keywords:
- nzbget - nzbget
- usenet - usenet

View File

@ -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` | | `timezone` | Timezone the nzbget instance should run as, e.g. 'America/New_York' | `UTC` |
| `puid` | process userID the nzbget instance should run as | `1001` | | `puid` | process userID the nzbget instance should run as | `1001` |
| `pgid` | process groupID 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.type` | Kubernetes service type for the nzbget GUI | `ClusterIP` |
| `Service.port` | Kubernetes port where the nzbget GUI is exposed| `6789` | | `Service.port` | Kubernetes port where the nzbget GUI is exposed| `6789` |
| `Service.annotations` | Service annotations for the nzbget GUI | `{}` | | `Service.annotations` | Service annotations for the nzbget GUI | `{}` |

View File

@ -38,9 +38,15 @@ spec:
livenessProbe: livenessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
readinessProbe: readinessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
env: env:
- name: TZ - name: TZ
value: "{{ .Values.timezone }}" value: "{{ .Values.timezone }}"

View File

@ -10,6 +10,17 @@ image:
# upgrade strategy type (e.g. Recreate or RollingUpdate) # upgrade strategy type (e.g. Recreate or RollingUpdate)
strategyType: Recreate strategyType: Recreate
# Probes configuration
probes:
liveness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
readiness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""

View File

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: v2.10.2-ls46 appVersion: v2.10.2-ls46
description: Usenet meta search description: Usenet meta search
name: nzbhydra2 name: nzbhydra2
version: 1.0.1 version: 1.0.2
keywords: keywords:
- nzbhydra2 - nzbhydra2
- usenet - usenet

View File

@ -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` | | `timezone` | Timezone the nzbhydra2 instance should run as, e.g. 'America/New_York' | `UTC` |
| `puid` | process userID the nzbhydra2 instance should run as | `1001` | | `puid` | process userID the nzbhydra2 instance should run as | `1001` |
| `pgid` | process groupID 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.type` | Kubernetes service type for the nzbhydra2 GUI | `ClusterIP` |
| `Service.port` | Kubernetes port where the nzbhydra2 GUI is exposed| `5076` | | `Service.port` | Kubernetes port where the nzbhydra2 GUI is exposed| `5076` |
| `Service.annotations` | Service annotations for the nzbhydra2 GUI | `{}` | | `Service.annotations` | Service annotations for the nzbhydra2 GUI | `{}` |

View File

@ -38,15 +38,15 @@ spec:
livenessProbe: livenessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: 60 initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
failureThreshold: 5 failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
timeoutSeconds: 10 timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
readinessProbe: readinessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: 60 initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
failureThreshold: 5 failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
timeoutSeconds: 10 timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
env: env:
- name: TZ - name: TZ
value: "{{ .Values.timezone }}" value: "{{ .Values.timezone }}"

View File

@ -10,6 +10,17 @@ image:
# upgrade strategy type (e.g. Recreate or RollingUpdate) # upgrade strategy type (e.g. Recreate or RollingUpdate)
strategyType: Recreate strategyType: Recreate
# Probes configuration
probes:
liveness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
readiness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""

View File

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: 3.0.4914-ls72 appVersion: 3.0.4914-ls72
description: Want a Movie or TV Show on Plex or Emby? Use Ombi! description: Want a Movie or TV Show on Plex or Emby? Use Ombi!
name: ombi name: ombi
version: 1.0.1 version: 1.0.2
keywords: keywords:
- ombi - ombi
- plex - plex

View File

@ -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` | | `timezone` | Timezone the Ombi instance should run as, e.g. 'America/New_York' | `UTC` |
| `puid` | process userID the Ombi instance should run as | `1001` | | `puid` | process userID the Ombi instance should run as | `1001` |
| `pgid` | process groupID 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.type` | Kubernetes service type for the Ombi GUI | `ClusterIP` |
| `Service.port` | Kubernetes port where the Ombi GUI is exposed| `3579` | | `Service.port` | Kubernetes port where the Ombi GUI is exposed| `3579` |
| `Service.annotations` | Service annotations for the Ombi GUI | `{}` | | `Service.annotations` | Service annotations for the Ombi GUI | `{}` |

View File

@ -38,15 +38,15 @@ spec:
livenessProbe: livenessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: 60 initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
failureThreshold: 5 failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
timeoutSeconds: 10 timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
readinessProbe: readinessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: 60 initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
failureThreshold: 5 failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
timeoutSeconds: 10 timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
env: env:
- name: TZ - name: TZ
value: "{{ .Values.timezone }}" value: "{{ .Values.timezone }}"

View File

@ -10,6 +10,17 @@ image:
# upgrade strategy type (e.g. Recreate or RollingUpdate) # upgrade strategy type (e.g. Recreate or RollingUpdate)
strategyType: Recreate strategyType: Recreate
# Probes configuration
probes:
liveness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
readiness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""

View File

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: 4.1.8 appVersion: 4.1.8
description: qBittorrent is a cross-platform free and open-source BitTorrent client description: qBittorrent is a cross-platform free and open-source BitTorrent client
name: qbittorrent name: qbittorrent
version: 1.0.0 version: 1.0.1
keywords: keywords:
- qbittorrent - qbittorrent
- torrrent - torrrent

View File

@ -41,12 +41,15 @@ spec:
livenessProbe: livenessProbe:
tcpSocket: tcpSocket:
port: bt port: bt
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
readinessProbe: readinessProbe:
tcpSocket: tcpSocket:
port: bt port: bt
periodSeconds: 10 initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
successThreshold: 1 failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
failureThreshold: 3 timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
env: env:
- name: TZ - name: TZ
value: "{{ .Values.timezone }}" value: "{{ .Values.timezone }}"

View File

@ -5,6 +5,17 @@
# upgrade strategy type (e.g. Recreate or RollingUpdate) # upgrade strategy type (e.g. Recreate or RollingUpdate)
strategyType: Recreate strategyType: Recreate
# Probes configuration
probes:
liveness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
readiness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""

View File

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: amd64-v0.2.0.1344-ls17 appVersion: amd64-v0.2.0.1344-ls17
description: Radarr is a movie downloading client description: Radarr is a movie downloading client
name: radarr name: radarr
version: 2.0.8 version: 2.0.9
keywords: keywords:
- radarr - radarr
- usenet - usenet

View File

@ -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` | | `timezone` | Timezone the radarr instance should run as, e.g. 'America/New_York' | `UTC` |
| `puid` | process userID the radarr instance should run as | `1001` | | `puid` | process userID the radarr instance should run as | `1001` |
| `pgid` | process groupID 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.type` | Kubernetes service type for the radarr GUI | `ClusterIP` |
| `Service.port` | Kubernetes port where the radarr GUI is exposed| `7878` | | `Service.port` | Kubernetes port where the radarr GUI is exposed| `7878` |
| `Service.annotations` | Service annotations for the radarr GUI | `{}` | | `Service.annotations` | Service annotations for the radarr GUI | `{}` |

View File

@ -38,9 +38,15 @@ spec:
livenessProbe: livenessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
readinessProbe: readinessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
env: env:
- name: TZ - name: TZ
value: "{{ .Values.timezone }}" value: "{{ .Values.timezone }}"

View File

@ -10,6 +10,17 @@ image:
# upgrade strategy type (e.g. Recreate or RollingUpdate) # upgrade strategy type (e.g. Recreate or RollingUpdate)
strategyType: Recreate strategyType: Recreate
# Probes configuration
probes:
liveness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
readiness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""

View File

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: amd64-2.0.0.5321-ls62 appVersion: amd64-2.0.0.5321-ls62
description: Sonarr is a television show downloading client description: Sonarr is a television show downloading client
name: sonarr name: sonarr
version: 2.0.7 version: 2.0.8
keywords: keywords:
- sonarr - sonarr
- usenet - usenet

View File

@ -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` | | `timezone` | Timezone the sonarr instance should run as, e.g. 'America/New_York' | `UTC` |
| `puid` | process userID the sonarr instance should run as | `1001` | | `puid` | process userID the sonarr instance should run as | `1001` |
| `pgid` | process groupID 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.type` | Kubernetes service type for the sonarr GUI | `ClusterIP` |
| `Service.port` | Kubernetes port where the sonarr GUI is exposed| `8989` | | `Service.port` | Kubernetes port where the sonarr GUI is exposed| `8989` |
| `Service.annotations` | Service annotations for the sonarr GUI | `{}` | | `Service.annotations` | Service annotations for the sonarr GUI | `{}` |

View File

@ -39,10 +39,16 @@ spec:
httpGet: httpGet:
path: / path: /
port: http port: http
initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
readinessProbe: readinessProbe:
httpGet: httpGet:
path: / path: /
port: http port: http
initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
env: env:
- name: TZ - name: TZ
value: "{{ .Values.timezone }}" value: "{{ .Values.timezone }}"

View File

@ -10,6 +10,17 @@ image:
# upgrade strategy type (e.g. Recreate or RollingUpdate) # upgrade strategy type (e.g. Recreate or RollingUpdate)
strategyType: Recreate strategyType: Recreate
# Probes configuration
probes:
liveness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
readiness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""

View File

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: v2.1.39-ls32 appVersion: v2.1.39-ls32
description: A Python based monitoring and tracking tool for Plex Media Server. description: A Python based monitoring and tracking tool for Plex Media Server.
name: tautulli name: tautulli
version: 1.0.1 version: 1.0.2
keywords: keywords:
- tautulli - tautulli
- plex - plex

View File

@ -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` | | `timezone` | Timezone the Tautulli instance should run as, e.g. 'America/New_York' | `UTC` |
| `puid` | process userID the Tautulli instance should run as | `1001` | | `puid` | process userID the Tautulli instance should run as | `1001` |
| `pgid` | process groupID 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.type` | Kubernetes service type for the Tautulli GUI | `ClusterIP` |
| `Service.port` | Kubernetes port where the Tautulli GUI is exposed| `8181` | | `Service.port` | Kubernetes port where the Tautulli GUI is exposed| `8181` |
| `Service.annotations` | Service annotations for the Tautulli GUI | `{}` | | `Service.annotations` | Service annotations for the Tautulli GUI | `{}` |

View File

@ -38,15 +38,15 @@ spec:
livenessProbe: livenessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: 60 initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }}
failureThreshold: 5 failureThreshold: {{ .Values.probes.liveness.failureThreshold }}
timeoutSeconds: 10 timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }}
readinessProbe: readinessProbe:
tcpSocket: tcpSocket:
port: http port: http
initialDelaySeconds: 60 initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }}
failureThreshold: 5 failureThreshold: {{ .Values.probes.readiness.failureThreshold }}
timeoutSeconds: 10 timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }}
env: env:
- name: TZ - name: TZ
value: "{{ .Values.timezone }}" value: "{{ .Values.timezone }}"

View File

@ -10,6 +10,17 @@ image:
# upgrade strategy type (e.g. Recreate or RollingUpdate) # upgrade strategy type (e.g. Recreate or RollingUpdate)
strategyType: Recreate strategyType: Recreate
# Probes configuration
probes:
liveness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
readiness:
initialDelaySeconds: 60
failureThreshold: 5
timeoutSeconds: 10
nameOverride: "" nameOverride: ""
fullnameOverride: "" fullnameOverride: ""