From 1e01a018be7c2544631bc004948a628cb8268838 Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Tue, 28 Dec 2021 19:22:58 +0100 Subject: [PATCH] mealie is running on port 80 - why --- mealie/deployment.yaml | 6 +++--- mealie/ingress.yaml | 2 +- mealie/service.yaml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/mealie/deployment.yaml b/mealie/deployment.yaml index 035bc03..0340f28 100644 --- a/mealie/deployment.yaml +++ b/mealie/deployment.yaml @@ -25,17 +25,17 @@ spec: - name: TZ value: Europe/Zurich ports: - - containerPort: 9000 + - containerPort: 80 livenessProbe: httpGet: path: / - port: 9000 + port: 80 initialDelaySeconds: 15 periodSeconds: 10 readinessProbe: httpGet: path: / - port: 9000 + port: 80 initialDelaySeconds: 15 periodSeconds: 10 volumeMounts: diff --git a/mealie/ingress.yaml b/mealie/ingress.yaml index 38e79fd..377b293 100644 --- a/mealie/ingress.yaml +++ b/mealie/ingress.yaml @@ -15,7 +15,7 @@ spec: service: name: mealie port: - number: 9000 + number: 80 pathType: Prefix tls: - hosts: diff --git a/mealie/service.yaml b/mealie/service.yaml index 299b8d4..11ea1b3 100644 --- a/mealie/service.yaml +++ b/mealie/service.yaml @@ -7,9 +7,9 @@ metadata: spec: ports: - name: http - port: 9000 + port: 80 protocol: TCP - targetPort: 9000 + targetPort: 80 selector: app: mealie type: ClusterIP