40 lines
1.4 KiB
Smarty
40 lines
1.4 KiB
Smarty
{{/*
|
|
Main entrypoint for the common library chart. It will render all underlying templates based on the provided values.
|
|
*/}}
|
|
{{- define "common.all" -}}
|
|
{{- /* Merge the local chart values and the common chart defaults */ -}}
|
|
{{- include "common.values.setup" . }}
|
|
|
|
{{- /* Enable code-server add-on if required */ -}}
|
|
{{- if .Values.addons.codeserver.enabled }}
|
|
{{- include "common.addon.codeserver" . }}
|
|
{{- end -}}
|
|
|
|
{{- /* Enable VPN add-on if required */ -}}
|
|
{{- if .Values.addons.vpn.enabled }}
|
|
{{- include "common.addon.vpn" . }}
|
|
{{- end -}}
|
|
|
|
{{- /* Build the templates */ -}}
|
|
{{- include "common.pvc" . }}
|
|
{{- print "---" | nindent 0 -}}
|
|
{{- if .Values.serviceAccount.create -}}
|
|
{{- include "common.serviceAccount" . }}
|
|
{{- print "---" | nindent 0 -}}
|
|
{{- end -}}
|
|
{{- if eq .Values.controllerType "deployment" }}
|
|
{{- include "common.deployment" . | nindent 0 }}
|
|
{{ else if eq .Values.controllerType "daemonset" }}
|
|
{{- include "common.daemonset" . | nindent 0 }}
|
|
{{ else if eq .Values.controllerType "statefulset" }}
|
|
{{- include "common.statefulset" . | nindent 0 }}
|
|
{{- end -}}
|
|
{{- print "---" | nindent 0 -}}
|
|
{{ include "common.service" . | nindent 0 }}
|
|
{{ include "common.custom.appService" . | nindent 0 }}
|
|
{{- print "---" | nindent 0 -}}
|
|
{{ include "common.ingress" . | nindent 0 }}
|
|
{{- print "---" | nindent 0 -}}
|
|
{{ include "common.custom.appIngress" . | nindent 0 }}
|
|
{{- end -}}
|