You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
361 B
14 lines
361 B
|
|
{{/*
|
|
Return the name of the Secret used to store the runtime configuration
|
|
*/}}
|
|
{{- define "cloudbeaver.secretRuntimeConfName" -}}
|
|
{{ include "common.names.fullname" . }}-runtime-conf
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Return the correct hostname
|
|
*/}}
|
|
{{- define "cloudbeaver.hostname" -}}
|
|
{{- coalesce (tpl .Values.hostname $) (tpl .Values.ingress.hostname $) -}}
|
|
{{- end -}}
|
|
|