mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-12-08 21:47:17 +08:00
41 lines
2.0 KiB
Smarty
41 lines
2.0 KiB
Smarty
{{/*
|
|
Copyright VMware, Inc.
|
|
SPDX-License-Identifier: APACHE-2.0
|
|
*/}}
|
|
|
|
{{/* vim: set filetype=mustache: */}}
|
|
|
|
{{/*
|
|
Kubernetes standard labels
|
|
{{ include "common.labels.standard" (dict "customLabels" .Values.commonLabels "context" $) -}}
|
|
*/}}
|
|
{{- define "common.labels.standard" -}}
|
|
{{- if and (hasKey . "customLabels") (hasKey . "context") -}}
|
|
{{ merge (include "common.tplvalues.render" (dict "value" .customLabels "context" .context) | fromYaml) (dict "app.kubernetes.io/name" (include "common.names.name" .context) "helm.sh/chart" (include "common.names.chart" .context) "app.kubernetes.io/instance" .context.Release.Name "app.kubernetes.io/managed-by" .context.Release.Service "app.kubernetes.io/version" .context.Chart.AppVersion) | toYaml }}
|
|
{{- else -}}
|
|
app.kubernetes.io/name: {{ include "common.names.name" . }}
|
|
helm.sh/chart: {{ include "common.names.chart" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/managed-by: {{ .Release.Service }}
|
|
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
|
|
{{/*
|
|
Labels used on immutable fields such as deploy.spec.selector.matchLabels or svc.spec.selector
|
|
{{ include "common.labels.matchLabels" (dict "customLabels" .Values.podLabels "context" $) -}}
|
|
|
|
We don't want to loop over custom labels appending them to the selector
|
|
since it's very likely that it will break deployments, services, etc.
|
|
However, it's important to overwrite the standard labels if the user
|
|
overwrote them on metadata.labels fields.
|
|
*/}}
|
|
{{- define "common.labels.matchLabels" -}}
|
|
{{- if and (hasKey . "customLabels") (hasKey . "context") -}}
|
|
{{ merge (pick (include "common.tplvalues.render" (dict "value" .customLabels "context" .context) | fromYaml) "app.kubernetes.io/name" "app.kubernetes.io/instance") (dict "app.kubernetes.io/name" (include "common.names.name" .context) "app.kubernetes.io/instance" .context.Release.Name ) | toYaml }}
|
|
{{- else -}}
|
|
app.kubernetes.io/name: {{ include "common.names.name" . }}
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
{{- end -}}
|
|
{{- end -}}
|