Files
chart/library/ix-dev/community/twofactor-auth/templates/_2fauth.tpl
Stavros Kois daf2bdc5fb Two factor auth - migrate storage section (adds acl) (#1986)
* update values

* add migration

* update templates

* update ui

* bump version
2024-01-03 09:51:25 +02:00

53 lines
1.6 KiB
Smarty

{{- define "twofauth.workload" -}}
workload:
twofauth:
enabled: true
primary: true
type: Deployment
podSpec:
hostNetwork: {{ .Values.twofauthNetwork.hostNetwork }}
containers:
twofauth:
enabled: true
primary: true
imageSelector: image
securityContext:
runAsUser: 1000
runAsGroup: 1000
readOnlyRootFilesystem: false
envFrom:
- secretRef:
name: twofauth-creds
- configMapRef:
name: twofauth-config
{{ with .Values.twofauthConfig.additionalEnvs }}
envList:
{{ range $env := . }}
- name: {{ $env.name }}
value: {{ $env.value }}
{{ end }}
{{ end }}
probes:
liveness:
enabled: true
type: http
port: 8000
path: /infos
readiness:
enabled: true
type: http
port: 8000
path: /infos
startup:
enabled: true
type: http
port: 8000
path: /infos
initContainers:
{{- include "ix.v1.common.app.permissions" (dict "containerName" "01-permissions"
"UID" 1000
"GID" 1000
"mode" "check"
"type" "install") | nindent 8 }}
{{- end -}}