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