mealie runs on port 9000
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Tobias Brunner 2021-12-27 20:53:14 +01:00
parent c0227b1d52
commit 5017ed3021
3 changed files with 6 additions and 6 deletions

View file

@ -25,17 +25,17 @@ spec:
- name: TZ
value: Europe/Zurich
ports:
- containerPort: 9925
- containerPort: 9000
livenessProbe:
httpGet:
path: /
port: 9925
port: 9000
initialDelaySeconds: 15
periodSeconds: 10
readinessProbe:
httpGet:
path: /
port: 9925
port: 9000
initialDelaySeconds: 15
periodSeconds: 10
volumeMounts:

View file

@ -15,7 +15,7 @@ spec:
service:
name: mealie
port:
number: 9925
number: 9000
pathType: Prefix
tls:
- hosts:

View file

@ -7,9 +7,9 @@ metadata:
spec:
ports:
- name: http
port: 9925
port: 9000
protocol: TCP
targetPort: 9925
targetPort: 9000
selector:
app: mealie
type: ClusterIP