diff --git a/apps/mealie/base/deployment.yaml b/apps/mealie/base/deployment.yaml index a664ad84..35f4f836 100644 --- a/apps/mealie/base/deployment.yaml +++ b/apps/mealie/base/deployment.yaml @@ -26,43 +26,8 @@ spec: dnsPolicy: ClusterFirst dnsConfig: {} containers: - # frontend --------------------------------------------------------- - - name: frontend - image: hkotel/mealie:frontend-nightly - imagePullPolicy: Always - env: - - name: TZ - value: ${CLUSTER_TIME_ZONE} - - name: API_URL - value: "http://127.0.0.1:9000" - livenessProbe: - httpGet: - scheme: HTTP - path: / - port: 3001 - initialDelaySeconds: 30 - timeoutSeconds: 10 - resources: - requests: - cpu: 100m - memory: 250Mi - limits: - cpu: 500m - memory: 500Mi - volumeMounts: - - mountPath: /etc/localtime - name: tz-config - readOnly: true - - mountPath: /app/data - name: yasr-volume - subPath: configs/mealie - ports: - - name: fe-http - containerPort: 3001 - protocol: TCP - # api ---------------------------------------------------------- - - name: api - image: hkotel/mealie:api-nightly + - name: mealie + image: ghcr.io/mealie-recipes/mealie:latest imagePullPolicy: Always env: - name: PUID @@ -90,7 +55,7 @@ spec: livenessProbe: httpGet: scheme: HTTP - path: /api/app/about + path: / port: 9000 initialDelaySeconds: 30 timeoutSeconds: 10 @@ -102,13 +67,13 @@ spec: cpu: 500m memory: 500Mi volumeMounts: - - mountPath: /app/data - name: yasr-volume - subPath: configs/mealie - - mountPath: /etc/localtime - name: tz-config - readOnly: true + - mountPath: /etc/localtime + name: tz-config + readOnly: true + - mountPath: /app/data + name: yasr-volume + subPath: configs/mealie ports: - - name: api-http - containerPort: 9000 - protocol: TCP + - name: http + containerPort: 9000 + protocol: TCP diff --git a/apps/mealie/base/ingress.yaml b/apps/mealie/base/ingress.yaml index 506e522b..7e3f0cb0 100644 --- a/apps/mealie/base/ingress.yaml +++ b/apps/mealie/base/ingress.yaml @@ -26,4 +26,4 @@ spec: service: name: mealie port: - name: fe-http + name: http diff --git a/apps/mealie/base/service.yaml b/apps/mealie/base/service.yaml index 2995546c..43b910e4 100644 --- a/apps/mealie/base/service.yaml +++ b/apps/mealie/base/service.yaml @@ -8,9 +8,9 @@ metadata: spec: type: ClusterIP ports: - - name: fe-http - port: 3001 + - name: http + port: 9000 protocol: TCP - targetPort: fe-http + targetPort: http selector: app.kubernetes.io/name: mealie