1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {{- 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 -}}
|