Piped-Kubernetes/charts/apps/piped/templates/backend/lib/_pod.tpl

107 lines
3.6 KiB
Smarty
Raw Permalink Normal View History

2023-02-15 01:25:36 +00:00
{{- /*
The pod definition included in the controller.
*/ -}}
{{- define "backend.controller.pod" -}}
{{- with .Values.backend.imagePullSecrets }}
2023-02-15 01:25:36 +00:00
imagePullSecrets:
{{- toYaml . | nindent 2 }}
{{- end }}
serviceAccountName: {{ include "backend.names.serviceAccountName" . }}
automountServiceAccountToken: {{ .Values.automountServiceAccountToken }}
{{- with .Values.backend.podSecurityContext }}
2023-02-15 01:25:36 +00:00
securityContext:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- with .Values.backend.priorityClassName }}
2023-02-15 01:25:36 +00:00
priorityClassName: {{ . }}
{{- end }}
{{- with .Values.backend.runtimeClassName }}
2023-02-15 01:25:36 +00:00
runtimeClassName: {{ . }}
{{- end }}
{{- with .Values.backend.schedulerName }}
2023-02-15 01:25:36 +00:00
schedulerName: {{ . }}
{{- end }}
{{- with .Values.backend.hostNetwork }}
2023-02-15 01:25:36 +00:00
hostNetwork: {{ . }}
{{- end }}
{{- with .Values.backend.hostname }}
2023-02-15 01:25:36 +00:00
hostname: {{ . }}
{{- end }}
{{- if .Values.backend.dnsPolicy }}
dnsPolicy: {{ .Values.backend.dnsPolicy }}
{{- else if .Values.backend.hostNetwork }}
2023-02-15 01:25:36 +00:00
dnsPolicy: ClusterFirstWithHostNet
{{- else }}
dnsPolicy: ClusterFirst
{{- end }}
{{- with .Values.backend.dnsConfig }}
2023-02-15 01:25:36 +00:00
dnsConfig:
{{- toYaml . | nindent 2 }}
{{- end }}
enableServiceLinks: {{ .Values.backend.enableServiceLinks }}
2023-02-15 01:25:36 +00:00
{{- with .Values.termination.gracePeriodSeconds }}
terminationGracePeriodSeconds: {{ . }}
{{- end }}
{{- if .Values.backend.initContainers }}
2023-02-15 01:25:36 +00:00
initContainers:
{{- $initContainers := list }}
{{- range $index, $key := (keys .Values.backend.initContainers | uniq | sortAlpha) }}
2023-07-21 03:00:40 +00:00
{{- $container := get $.Values.backend.initContainers $key }}
2023-02-15 01:25:36 +00:00
{{- if not $container.name -}}
{{- $_ := set $container "name" $key }}
{{- end }}
{{- if $container.env -}}
{{- $_ := set $ "ObjectValues" (dict "env" $container.env) -}}
{{- $newEnv := fromYaml (include "common.controller.env_vars" $) -}}
{{- $_ := unset $.ObjectValues "env" -}}
{{- $_ := set $container "env" $newEnv.env }}
{{- end }}
{{- $initContainers = append $initContainers $container }}
{{- end }}
{{- tpl (toYaml $initContainers) $ | nindent 2 }}
{{- end }}
containers:
{{- include "backend.controller.mainContainer" . | nindent 2 }}
{{- if .Values.backend.additionalContainers }}
2023-02-15 01:25:36 +00:00
{{- $additionalContainers := list }}
{{- range $index, $key := (keys .Values.backend.additionalContainers | uniq | sortAlpha) }}
{{- $container := get $.Values.backend.additionalContainers $key }}
2023-02-15 01:25:36 +00:00
{{- if not $container.name -}}
{{- $_ := set $container "name" $key }}
2023-02-15 01:25:36 +00:00
{{- end }}
{{- if $container.env -}}
{{- $_ := set $ "ObjectValues" (dict "env" $container.env) -}}
{{- $newEnv := fromYaml (include "backend.controller.env_vars" $) -}}
{{- $_ := set $container "env" $newEnv.env }}
{{- $_ := unset $.ObjectValues "env" -}}
{{- end }}
{{- $additionalContainers = append $additionalContainers $container }}
{{- end }}
{{- tpl (toYaml $additionalContainers) $ | nindent 2 }}
{{- end }}
{{- with (include "backend.controller.volumes" . | trim) }}
volumes:
{{- nindent 2 . }}
{{- end }}
{{- with .Values.backend.hostAliases }}
2023-02-15 01:25:36 +00:00
hostAliases:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- with .Values.backend.nodeSelector }}
2023-02-15 01:25:36 +00:00
nodeSelector:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- with .Values.backend.affinity }}
2023-02-15 01:25:36 +00:00
affinity:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- with .Values.backend.topologySpreadConstraints }}
2023-02-15 01:25:36 +00:00
topologySpreadConstraints:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- with .Values.backend.tolerations }}
2023-02-15 01:25:36 +00:00
tolerations:
{{- toYaml . | nindent 2 }}
{{- end }}
{{- end -}}