Merge "[SDC] Change default access mode for cert PVC"
[oom.git] / kubernetes / common / common / templates / _labels.tpl
1 {{/*
2 # Copyright © 2019 Orange
3 #
4 # Licensed under the Apache License, Version 2.0 (the "License");
5 # you may not use this file except in compliance with the License.
6 # You may obtain a copy of the License at
7 #
8 #       http://www.apache.org/licenses/LICENSE-2.0
9 #
10 # Unless required by applicable law or agreed to in writing, software
11 # distributed under the License is distributed on an "AS IS" BASIS,
12 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 # See the License for the specific language governing permissions and
14 # limitations under the License.
15 */}}
16
17
18
19 {{/*
20 Common labels
21 */}}
22 {{- define "common.labels" -}}
23 app.kubernetes.io/name: {{ include "common.name" . }}
24 helm.sh/chart: {{ include "common.chart" . }}
25 app.kubernetes.io/instance: {{ include "common.release" . }}
26 app.kubernetes.io/managed-by: {{ .Release.Service }}
27 {{- end -}}
28
29 {{/*
30 Labels to use on deploy.spec.selector.matchLabels and svc.spec.selector
31 */}}
32 {{- define "common.matchLabels" -}}
33 app.kubernetes.io/name: {{ include "common.name" . }}
34 app.kubernetes.io/instance: {{ include "common.release" . }}
35 {{- end -}}
36
37 {{/*
38   Generate "top" metadata for Deployment / StatefulSet / ...
39 */}}
40 {{- define "common.resourceMetadata" -}}
41 name: {{ include "common.fullname" . }}
42 namespace: {{ include "common.namespace" . }}
43 labels: {{- include "common.labels" . | nindent 2 }}
44 {{- end -}}
45
46 {{/*
47   Generate selectors for Deployment / StatefulSet / ...
48 */}}
49 {{- define "common.selectors" -}}
50 matchLabels: {{- include "common.matchLabels" . | nindent 2 }}
51 {{- end -}}
52
53 {{/*
54   Generate "template" metadata for Deployment / StatefulSet / ...
55 */}}
56 {{- define "common.templateMetadata" -}}
57 {{- if .Values.podAnnotations }}
58 annotations: {{- include "common.tplValue" (dict "value" .Values.podAnnotations "context" $) | nindent 2 }}
59 {{- end }}
60 labels: {{- include "common.labels" . | nindent 2 }}
61 name: {{ include "common.name" . }}
62 {{- end -}}