mirror of
https://github.com/truenas/charts.git
synced 2026-02-03 02:23:49 +08:00
51 lines
1.5 KiB
Smarty
51 lines
1.5 KiB
Smarty
{{- define "wordpress.workload" -}}
|
|
workload:
|
|
wordpress:
|
|
enabled: true
|
|
primary: true
|
|
type: Deployment
|
|
podSpec:
|
|
hostNetwork: false
|
|
containers:
|
|
wordpress:
|
|
enabled: true
|
|
primary: true
|
|
imageSelector: image
|
|
securityContext:
|
|
runAsUser: 33
|
|
runAsGroup: 33
|
|
capabilities:
|
|
add:
|
|
- NET_BIND_SERVICE
|
|
envFrom:
|
|
- secretRef:
|
|
name: wordpress-creds
|
|
{{ with .Values.wpConfig.additionalEnvs }}
|
|
envList:
|
|
{{ range $env := . }}
|
|
- name: {{ $env.name }}
|
|
value: {{ $env.value }}
|
|
{{ end }}
|
|
{{ end }}
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
type: tcp
|
|
port: 80
|
|
readiness:
|
|
enabled: true
|
|
type: tcp
|
|
port: 80
|
|
startup:
|
|
enabled: true
|
|
type: tcp
|
|
port: 80
|
|
initContainers:
|
|
{{- include "ix.v1.common.app.permissions" (dict "containerName" "01-permissions"
|
|
"UID" 33
|
|
"GID" 33
|
|
"type" "install") | nindent 8 }}
|
|
{{- include "ix.v1.common.app.mariadbWait" (dict "name" "mariadb-wait"
|
|
"secretName" "mariadb-creds") | nindent 8 }}
|
|
{{- end -}}
|