Skip to content

Commit 0a1c3b7

Browse files
bump mealie
1 parent 0bacbf9 commit 0a1c3b7

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

apps/mealie/components/postgres/postgres-sts.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ spec:
3939
type: RuntimeDefault
4040
containers:
4141
- name: postgres
42-
image: postgres:16.7
42+
image: postgres:17.4
4343
securityContext:
4444
runAsUser: 999
4545
runAsGroup: 999
@@ -68,8 +68,6 @@ spec:
6868
secretKeyRef:
6969
key: "POSTGRES_PASSWORD"
7070
name: "mealie-postgres"
71-
- name: "PGDATA"
72-
value: "/data/pgdata"
7371
ports:
7472
- containerPort: 5432
7573
name: "postgres"
@@ -102,7 +100,7 @@ spec:
102100
- name: var-run
103101
mountPath: /var/run
104102
- name: storage
105-
mountPath: /data
103+
mountPath: /var/lib/postgresql
106104
volumes:
107105
- name: tmp
108106
emptyDir:

apps/mealie/components/restic-postgres/kustomization.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ resources:
55
- ../../../../infra/restic-postgres
66
configMapGenerator:
77
- name: "mealie-restic-postgres"
8+
behavior: "merge"
89
literals:
910
- "RETENTION_DAYS=7"
1011
- "RETENTION_WEEKS=4"

apps/mealie/deployment.yaml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
type: "RuntimeDefault"
3434
containers:
3535
- name: mealie
36-
image: "ghcr.io/mealie-recipes/mealie:v2.7.1"
36+
image: "ghcr.io/mealie-recipes/mealie:v2.8.0"
3737
imagePullPolicy: IfNotPresent
3838
env:
3939
- name: "TZ"
@@ -64,10 +64,10 @@ spec:
6464
name: "mealie"
6565
resources:
6666
requests:
67-
memory: "196Mi"
67+
memory: "256Mi"
6868
cpu: "20m"
6969
limits:
70-
memory: "768Mi"
70+
memory: "1Gi"
7171
livenessProbe:
7272
tcpSocket:
7373
port: 9000
@@ -91,8 +91,13 @@ spec:
9191
periodSeconds: 5
9292
volumeMounts:
9393
- name: "storage"
94-
mountPath: "/app/data/"
94+
mountPath: "/app/data"
95+
- name: "nltk"
96+
mountPath: "/nltk_data"
9597
volumes:
9698
- name: "storage"
9799
emptyDir:
98100
sizeLimit: "5Gi"
101+
- name: "nltk"
102+
emptyDir:
103+
sizeLimit: "5Gi"

0 commit comments

Comments
 (0)