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.
97 lines
2.7 KiB
97 lines
2.7 KiB
{{/*
|
|
Expand the name of the chart.
|
|
*/}}
|
|
{{- define "mlflow.name" -}}
|
|
{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }}
|
|
{{- end }}
|
|
|
|
{{/*
|
|
Create a default fully qualified app name.
|
|
We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec).
|
|
If release name contains chart name it will be used as a full name.
|
|
*/}}
|
|
{{- define "mlflow.fullname" -}}
|
|
{{- if .Values.fullnameOverride }}
|
|
{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }}
|
|
{{- else }}
|
|
{{- $name := default .Chart.Name .Values.nameOverride }}
|
|
{{- if contains $name .Release.Name }}
|
|
{{- .Release.Name | trunc 63 | trimSuffix "-" }}
|
|
{{- else }}
|
|
{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{/*
|
|
Create chart name and version as used by the chart label.
|
|
*/}}
|
|
{{- define "mlflow.chart" -}}
|
|
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
|
|
{{- end }}
|
|
|
|
{{/*
|
|
Common labels
|
|
*/}}
|
|
{{- define "mlflow.labels" -}}
|
|
helm.sh/chart: {{ include "mlflow.chart" . }}
|
|
{{ include "mlflow.selectorLabels" . }}
|
|
{{- if .Chart.AppVersion }}
|
|
version: {{ .Chart.AppVersion | quote }}
|
|
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
|
{{- end }}
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
{{- end }}
|
|
|
|
{{/*
|
|
Selector labels
|
|
*/}}
|
|
{{- define "mlflow.selectorLabels" -}}
|
|
app: {{ include "mlflow.name" . }}
|
|
app.kubernetes.io/name: {{ include "mlflow.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
{{- end }}
|
|
|
|
{{/*
|
|
Create the name of the service account to use
|
|
*/}}
|
|
{{- define "mlflow.serviceAccountName" -}}
|
|
{{- if .Values.serviceAccount.create }}
|
|
{{- default (include "mlflow.fullname" .) .Values.serviceAccount.name }}
|
|
{{- else }}
|
|
{{- default "default" .Values.serviceAccount.name }}
|
|
{{- end }}
|
|
{{- end }}
|
|
|
|
{{- define "mlflow.health" -}}
|
|
{{- $basPath := default "/" .Values.extraArgs.staticPrefix }}
|
|
{{- printf "%s/health" ($basPath | trimSuffix "/" )}}
|
|
{{- end }}
|
|
|
|
{{/*
|
|
Generate random hex similar to `openssl rand -hex 16` command.
|
|
Usage: {{ include "mlflow.generateRandomHex" 32 }}
|
|
*/}}
|
|
{{- define "mlflow.generateRandomHex" -}}
|
|
{{- $length := . -}}
|
|
{{- $chars := list "0" "1" "2" "3" "4" "5" "6" "7" "8" "9" "a" "b" "c" "d" "e" "f" -}}
|
|
{{- $result := "" -}}
|
|
{{- range $i := until $length -}}
|
|
{{- $result = print $result (index $chars (randInt 0 16)) -}}
|
|
{{- end -}}
|
|
{{- $result -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Create postgresql name secret name.
|
|
*/}}
|
|
{{- define "mlflow.postgresql.fullname" -}}
|
|
{{- printf "%s-postgresql" (include "mlflow.fullname" .) | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Create mysql name secret name.
|
|
*/}}
|
|
{{- define "mlflow.mysql.fullname" -}}
|
|
{{- printf "%s-mysql" (include "mlflow.fullname" .) | trunc 63 | trimSuffix "-" -}}
|
|
{{- end -}}
|
|
|