feat(wger): move to stable (#3658)
* feat(wger): move to stable * feat(wger): move to stable * add mountPath
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
{{/* Define the nginx container */}}
|
||||
{{- define "wger.nginx" -}}
|
||||
image: {{ .Values.nginxImage.repository }}:{{ .Values.nginxImage.tag }}
|
||||
imagePullPolicy: {{ .Values.nginxImage.pullPolicy }}
|
||||
ports:
|
||||
- containerPort: {{ .Values.service.main.ports.main.port }}
|
||||
name: main
|
||||
securityContext:
|
||||
runAsUser: 0
|
||||
runAsGroup: 1000
|
||||
readOnlyRootFilesystem: false
|
||||
runAsNonRoot: false
|
||||
volumeMounts:
|
||||
- name: wger-config
|
||||
mountPath: "/etc/nginx/conf.d/default.conf"
|
||||
subPath: default.conf
|
||||
readOnly: true
|
||||
- name: media
|
||||
mountPath: "/media"
|
||||
- name: static
|
||||
mountPath: "/static"
|
||||
{{- end -}}
|
||||
Reference in New Issue
Block a user