diff --git a/jackett/Chart.yaml b/jackett/Chart.yaml index 2dd14de0..58a11087 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.2 +version: 1.1.0 keywords: - jackett - torrent diff --git a/jackett/README.md b/jackett/README.md index 5200387d..9c93f355 100644 --- a/jackett/README.md +++ b/jackett/README.md @@ -40,12 +40,13 @@ 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.liveness.periodSeconds` | Specify liveness `periodSeconds` parameter for the deployment | `10` | | `probes.readiness.failureThreshold` | Specify readiness `failureThreshold` parameter for the deployment | `5` | -| `probes.readiness.timeoutSeconds` | Specify readiness `timeoutSeconds` parameter for the deployment | `10` | +| `probes.readiness.periodSeconds` | Specify readiness `periodSeconds` parameter for the deployment | `10` | +| `probes.startup.initialDelaySeconds` | Specify startup `initialDelaySeconds` parameter for the deployment | `5` | +| `probes.startup.failureThreshold` | Specify startup `failureThreshold` parameter for the deployment | `30` | +| `probes.startup.periodSeconds` | Specify startup `periodSeconds` 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 abc0d8a2..d964306e 100644 --- a/jackett/templates/deployment.yaml +++ b/jackett/templates/deployment.yaml @@ -38,15 +38,19 @@ spec: livenessProbe: tcpSocket: port: http - initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} failureThreshold: {{ .Values.probes.liveness.failureThreshold }} - timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} + periodSeconds: {{ .Values.probes.liveness.periodSeconds }} readinessProbe: tcpSocket: port: http - initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} failureThreshold: {{ .Values.probes.readiness.failureThreshold }} - timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} + periodSeconds: {{ .Values.probes.readiness.periodSeconds }} + startupProbe: + tcpSocket: + port: http + initialDelaySeconds: {{ .Values.probes.startup.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.startup.failureThreshold }} + periodSeconds: {{ .Values.probes.startup.periodSeconds }} env: - name: TZ value: "{{ .Values.timezone }}" diff --git a/jackett/values.yaml b/jackett/values.yaml index c8441edb..0367e141 100644 --- a/jackett/values.yaml +++ b/jackett/values.yaml @@ -13,13 +13,15 @@ strategyType: Recreate # Probes configuration probes: liveness: - initialDelaySeconds: 60 failureThreshold: 5 - timeoutSeconds: 10 + periodSeconds: 10 readiness: - initialDelaySeconds: 60 failureThreshold: 5 - timeoutSeconds: 10 + periodSeconds: 10 + startup: + initialDelaySeconds: 5 + failureThreshold: 30 + periodSeconds: 10 nameOverride: "" fullnameOverride: "" diff --git a/nzbhydra2/Chart.yaml b/nzbhydra2/Chart.yaml index 72fbc0ab..e0b0f37c 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.2 +version: 1.1.0 keywords: - nzbhydra2 - usenet diff --git a/nzbhydra2/README.md b/nzbhydra2/README.md index bf14f076..944ed3ab 100644 --- a/nzbhydra2/README.md +++ b/nzbhydra2/README.md @@ -40,12 +40,13 @@ 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.liveness.periodSeconds` | Specify liveness `periodSeconds` parameter for the deployment | `10` | | `probes.readiness.failureThreshold` | Specify readiness `failureThreshold` parameter for the deployment | `5` | -| `probes.readiness.timeoutSeconds` | Specify readiness `timeoutSeconds` parameter for the deployment | `10` | +| `probes.readiness.periodSeconds` | Specify readiness `periodSeconds` parameter for the deployment | `10` | +| `probes.startup.initialDelaySeconds` | Specify startup `initialDelaySeconds` parameter for the deployment | `5` | +| `probes.startup.failureThreshold` | Specify startup `failureThreshold` parameter for the deployment | `30` | +| `probes.startup.periodSeconds` | Specify startup `periodSeconds` 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 15f41ed0..3dfe6859 100644 --- a/nzbhydra2/templates/deployment.yaml +++ b/nzbhydra2/templates/deployment.yaml @@ -38,15 +38,19 @@ spec: livenessProbe: tcpSocket: port: http - initialDelaySeconds: {{ .Values.probes.liveness.initialDelaySeconds }} failureThreshold: {{ .Values.probes.liveness.failureThreshold }} - timeoutSeconds: {{ .Values.probes.liveness.timeoutSeconds }} + periodSeconds: {{ .Values.probes.liveness.periodSeconds }} readinessProbe: tcpSocket: port: http - initialDelaySeconds: {{ .Values.probes.readiness.initialDelaySeconds }} failureThreshold: {{ .Values.probes.readiness.failureThreshold }} - timeoutSeconds: {{ .Values.probes.readiness.timeoutSeconds }} + periodSeconds: {{ .Values.probes.readiness.periodSeconds }} + startupProbe: + tcpSocket: + port: http + initialDelaySeconds: {{ .Values.probes.startup.initialDelaySeconds }} + failureThreshold: {{ .Values.probes.startup.failureThreshold }} + periodSeconds: {{ .Values.probes.startup.periodSeconds }} env: - name: TZ value: "{{ .Values.timezone }}" diff --git a/nzbhydra2/values.yaml b/nzbhydra2/values.yaml index d0794e29..ce63afd5 100644 --- a/nzbhydra2/values.yaml +++ b/nzbhydra2/values.yaml @@ -13,13 +13,15 @@ strategyType: Recreate # Probes configuration probes: liveness: - initialDelaySeconds: 60 failureThreshold: 5 - timeoutSeconds: 10 + periodSeconds: 10 readiness: - initialDelaySeconds: 60 failureThreshold: 5 - timeoutSeconds: 10 + periodSeconds: 10 + startup: + initialDelaySeconds: 5 + failureThreshold: 30 + periodSeconds: 10 nameOverride: "" fullnameOverride: ""