From fc3c35639f98f9373a71e18d34bdf5bc02545fbf Mon Sep 17 00:00:00 2001 From: 0hlov3 Date: Sat, 14 Sep 2024 02:21:55 +0200 Subject: [PATCH] [gotosocial] Fix ports section in deployment.yaml ... need to be an unique IANA_SVC_NAME --- charts/gotosocial/Chart.yaml | 2 +- charts/gotosocial/templates/deployment.yaml | 2 +- charts/gotosocial/values.yaml | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/charts/gotosocial/Chart.yaml b/charts/gotosocial/Chart.yaml index da719b6..0863059 100644 --- a/charts/gotosocial/Chart.yaml +++ b/charts/gotosocial/Chart.yaml @@ -6,7 +6,7 @@ home: https://github.com/superseriousbusiness/gotosocial type: application # Chart Version -version: "0.4.23" +version: "0.4.24" # gotosocial version appVersion: "0.16.0" diff --git a/charts/gotosocial/templates/deployment.yaml b/charts/gotosocial/templates/deployment.yaml index 733b86f..059f7b4 100644 --- a/charts/gotosocial/templates/deployment.yaml +++ b/charts/gotosocial/templates/deployment.yaml @@ -47,7 +47,7 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} args: ["--config-path", "/config/config.yaml"] ports: - - name: gotosocial + - name: http containerPort: {{ .Values.service.port }} protocol: TCP startupProbe: diff --git a/charts/gotosocial/values.yaml b/charts/gotosocial/values.yaml index f9af2a2..720040b 100644 --- a/charts/gotosocial/values.yaml +++ b/charts/gotosocial/values.yaml @@ -201,17 +201,17 @@ securityContext: startupProbe: httpGet: path: / - port: gotosocial + port: http failureThreshold: 60 periodSeconds: 10 livenessProbe: httpGet: path: / - port: gotosocial + port: http readinessProbe: httpGet: path: / - port: gotosocial + port: http failureThreshold: 5 nodeSelector: {}