Publish new changes in catalog

This commit is contained in:
sonicaj
2023-12-18 12:17:37 +00:00
parent 37c40bc0f4
commit 63b6014cf9
19 changed files with 19 additions and 5 deletions

View File

@@ -3,4 +3,4 @@ dependencies:
repository: file://../../../common
version: 1.2.4
digest: sha256:47ebfd41bc2ac33ab6989e7bd4d1d3aea662365fffa8b525a24cc56a2a35c174
generated: "2023-12-15T18:22:58.138621992+02:00"
generated: "2023-12-11T16:07:50.550688546+02:00"

View File

@@ -3,9 +3,9 @@ description: Mealie is a self-hosted recipe manager and meal planner
annotations:
title: Mealie
type: application
version: 1.0.2
version: 1.0.3
apiVersion: v2
appVersion: latest
appVersion: v1.0.0-RC2
kubeVersion: '>=1.16.0-0'
maintainers:
- name: truenas

View File

@@ -1,7 +1,7 @@
image:
repository: ghcr.io/mealie-recipes/mealie
pullPolicy: IfNotPresent
tag: v1.0.0-RC1.1
tag: v1.0.0-RC2
resources:
limits:

View File

@@ -49,6 +49,11 @@ workload:
- python
- /app/mealie/scripts/healthcheck.py
initContainers:
{{- include "ix.v1.common.app.postgresWait" (dict "name" "01-postgres-wait"
{{- include "ix.v1.common.app.permissions" (dict "containerName" "01-permissions"
"UID" .Values.mealieRunAs.user
"GID" .Values.mealieRunAs.group
"mode" "check"
"type" "install") | nindent 8 }}
{{- include "ix.v1.common.app.postgresWait" (dict "name" "02-postgres-wait"
"secretName" "postgres-creds") | nindent 8 }}
{{- end -}}

View File

@@ -7,6 +7,11 @@ persistence:
mealie:
mealie:
mountPath: /app/data
{{- if and (eq .Values.mealieStorage.data.type "ixVolume")
(not (.Values.mealieStorage.data.ixVolumeConfig | default dict).aclEnable) }}
01-permissions:
mountPath: /mnt/directories/data
{{- end }}
tmp:
enabled: true
type: emptyDir
@@ -22,6 +27,10 @@ persistence:
mealie:
mealie:
mountPath: {{ $storage.mountPath }}
{{- if and (eq $storage.type "ixVolume") (not ($storage.ixVolumeConfig | default dict).aclEnable) }}
01-permissions:
mountPath: /mnt/directories{{ $storage.mountPath }}
{{- end }}
{{- end -}}
{{- include "ix.v1.common.app.postgresPersistence"