Added log by default to local /var/log/jamulus.log
This commit is contained in:
parent
71917d5dae
commit
e5c33c0a04
@ -9,7 +9,9 @@ This implementation just logs to emptyDir by default, but you can mount a direct
|
||||
### Values YAML
|
||||
|
||||
containerPort: the port on which Jamulus will run and the port will be exposed to the service
|
||||
|
||||
maxUsers: the maximum number of users able to connect to Jamulus at once
|
||||
|
||||
serverMessage: the message shown to the user when connecting to the Jamulus server
|
||||
|
||||
## Credits
|
||||
|
||||
@ -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
|
||||
@ -2,4 +2,9 @@ containerPort: 22124
|
||||
#Set this to whatever you like
|
||||
maxUsers: 15
|
||||
#Set this to whatever you like
|
||||
serverMessage: Welcome message goes here!
|
||||
serverMessage: Welcome message goes here!
|
||||
#Location in the container to which you're logging
|
||||
containerMountPath: /jam
|
||||
containerMountName: jam
|
||||
#Location on your filesystem to associate the /jam dir
|
||||
localMountPath: /var/log
|
||||
Loading…
Reference in New Issue
Block a user