Use tcpSocket probe for plex, as we determine if plex is setup to use HTTPS or HTTP (#1059)

This commit is contained in:
Stavros Kois
2023-03-27 00:05:00 +03:00
committed by GitHub
parent b12cad61cc
commit 8daa01d53c
2 changed files with 4 additions and 7 deletions

View File

@@ -3,7 +3,7 @@ description: Plex Media Server
annotations:
title: Plex
type: application
version: 1.7.33
version: 1.7.34
apiVersion: v2
appVersion: '1.31.2.6810'
kubeVersion: '>=1.16.0-0'

View File

@@ -68,8 +68,7 @@ spec: {{ include "common.deployment.common_spec" . | nindent 2 }}
{{ $envList = mustAppend $envList (dict "name" "PMS_IMAGE" "value" (printf "%s:%s" .Values.image.repository .Values.image.tag))}}
{{ include "common.containers.environmentVariables" (dict "environmentVariables" $envList) | nindent 12 }}
readinessProbe:
httpGet:
path: /identity
tcpSocket:
port: 32400
initialDelaySeconds: 10
periodSeconds: 10
@@ -77,8 +76,7 @@ spec: {{ include "common.deployment.common_spec" . | nindent 2 }}
failureThreshold: 5
successThreshold: 2
livenessProbe:
httpGet:
path: /identity
tcpSocket:
port: 32400
initialDelaySeconds: 10
periodSeconds: 10
@@ -86,8 +84,7 @@ spec: {{ include "common.deployment.common_spec" . | nindent 2 }}
failureThreshold: 5
successThreshold: 1
startupProbe:
httpGet:
path: /identity
tcpSocket:
port: 32400
initialDelaySeconds: 10
periodSeconds: 5