Added log by default to local /var/log/jamulus.log

This commit is contained in:
Dana Harrison
2021-09-19 23:32:13 -04:00
parent 71917d5dae
commit e5c33c0a04
3 changed files with 18 additions and 4 deletions

View File

@@ -29,6 +29,13 @@ spec:
- "-u"
- "{{ .Values.maxUsers }}"
- "-T"
resources:
limits:
ephemeral-storage: 4G
- "-l"
- "{{ .Values.containerLog }}"
volumeMounts:
- mountPath: {{ .Values.containerMountPath }}
name: {{ .Values.containerMountName }}
volumes:
- name: {{ .Values.containerMountName }}
hostPath:
path: {{ .Values.localMountPath }}
type: Directory