mealie is running on port 80 - why
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Tobias Brunner 2021-12-28 19:22:58 +01:00
parent f341ad19c6
commit 1e01a018be
3 changed files with 6 additions and 6 deletions

View File

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

View File

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

View File

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