Update mealie.
This commit is contained in:
parent
f2d71000a0
commit
f94cdfd4fc
4 changed files with 21 additions and 6 deletions
|
@ -3,5 +3,5 @@ apiVersion: v2
|
|||
name: mealie
|
||||
description: A Helm chart for Kubernetes
|
||||
type: application
|
||||
version: 0.1.0
|
||||
appVersion: "v1.10.1"
|
||||
version: 0.2.0
|
||||
appVersion: "v1.12.0"
|
||||
|
|
|
@ -33,7 +33,7 @@ spec:
|
|||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||
ports:
|
||||
- name: http
|
||||
containerPort: 9091
|
||||
containerPort: 9000
|
||||
protocol: TCP
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
|
@ -48,6 +48,9 @@ spec:
|
|||
volumeMounts:
|
||||
- name: data
|
||||
mountPath: /app/data/
|
||||
envFrom:
|
||||
- secretRef:
|
||||
name: {{ include "mealie.fullname" . }}
|
||||
{{- with .Values.nodeSelector }}
|
||||
nodeSelector:
|
||||
{{- toYaml . | nindent 8 }}
|
||||
|
|
9
charts/mealie/templates/secret.yaml
Normal file
9
charts/mealie/templates/secret.yaml
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
apiVersion: v1
|
||||
kind: Secret
|
||||
metadata:
|
||||
name: {{ include "mealie.fullname" . }}
|
||||
labels:
|
||||
{{- include "mealie.labels" . | nindent 4 }}
|
||||
stringData:
|
||||
{{- .Values.config | toYaml | nindent 2}}
|
|
@ -13,8 +13,8 @@ fullnameOverride: ""
|
|||
|
||||
podAnnotations: {}
|
||||
|
||||
podSecurityContext: {}
|
||||
# fsGroup: 2000
|
||||
podSecurityContext:
|
||||
fsGroup: 911
|
||||
|
||||
securityContext:
|
||||
capabilities:
|
||||
|
@ -22,7 +22,7 @@ securityContext:
|
|||
- ALL
|
||||
readOnlyRootFilesystem: true
|
||||
runAsNonRoot: true
|
||||
# runAsUser: 1000
|
||||
runAsUser: 911
|
||||
|
||||
service:
|
||||
type: ClusterIP
|
||||
|
@ -65,3 +65,6 @@ affinity: {}
|
|||
pvc:
|
||||
storageClassName: ""
|
||||
storage: 1Gi
|
||||
|
||||
config:
|
||||
ALLOW_SIGNUP: "false"
|
||||
|
|
Loading…
Reference in a new issue