openstack-helm-infra/helm-toolkit/templates/snippets/_kubernetes_metadata_labels.tpl
Matthew Heler f9d3c16d1c Revert "helm-toolkit: Support standard kubernetes/helm labels"
This reverts commit 75e0c2d0f5.

This commit was blocking chart upgrades.

Change-Id: I15aa5f507beeeadd04a0bddec241f5dd7ca272c9
2018-12-14 18:00:55 +00:00

38 lines
1.1 KiB
Smarty

{{/*
Copyright 2017 The Openstack-Helm Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/}}
{{/*
abstract: |
Renders a set of standardised labels
values: |
release_group: null
usage: |
{{ tuple . "foo" "bar" | include "helm-toolkit.snippets.kubernetes_metadata_labels" }}
return: |
release_group: RELEASE-NAME
application: foo
component: bar
*/}}
{{- define "helm-toolkit.snippets.kubernetes_metadata_labels" -}}
{{- $envAll := index . 0 -}}
{{- $application := index . 1 -}}
{{- $component := index . 2 -}}
release_group: {{ $envAll.Values.release_group | default $envAll.Release.Name }}
application: {{ $application }}
component: {{ $component }}
{{- end -}}