Merge "feat(helm-toolkit): allow setting extra labels on pods"
This commit is contained in:
commit
0fa7e0fb7e
@ -15,7 +15,7 @@ apiVersion: v1
|
||||
appVersion: v1.0.0
|
||||
description: OpenStack-Helm Helm-Toolkit
|
||||
name: helm-toolkit
|
||||
version: 0.2.21
|
||||
version: 0.2.22
|
||||
home: https://docs.openstack.org/openstack-helm
|
||||
icon: https://www.openstack.org/themes/openstack/images/project-mascots/OpenStack-Helm/OpenStack_Project_OpenStackHelm_vertical.png
|
||||
sources:
|
||||
|
@ -17,12 +17,20 @@ abstract: |
|
||||
Renders a set of standardised labels
|
||||
values: |
|
||||
release_group: null
|
||||
pod:
|
||||
labels:
|
||||
default:
|
||||
label1.example.com: value
|
||||
bar:
|
||||
label2.example.com: bar
|
||||
usage: |
|
||||
{{ tuple . "foo" "bar" | include "helm-toolkit.snippets.kubernetes_metadata_labels" }}
|
||||
return: |
|
||||
release_group: RELEASE-NAME
|
||||
application: foo
|
||||
component: bar
|
||||
label1.example.com: value
|
||||
label2.example.com: bar
|
||||
*/}}
|
||||
|
||||
{{- define "helm-toolkit.snippets.kubernetes_metadata_labels" -}}
|
||||
@ -32,4 +40,12 @@ return: |
|
||||
release_group: {{ $envAll.Values.release_group | default $envAll.Release.Name }}
|
||||
application: {{ $application }}
|
||||
component: {{ $component }}
|
||||
{{- if ($envAll.Values.pod).labels }}
|
||||
{{- if hasKey $envAll.Values.pod.labels $component }}
|
||||
{{ index $envAll.Values.pod "labels" $component | toYaml }}
|
||||
{{- end -}}
|
||||
{{- if hasKey $envAll.Values.pod.labels "default" }}
|
||||
{{ $envAll.Values.pod.labels.default | toYaml }}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
{{- end -}}
|
||||
|
@ -28,4 +28,5 @@ helm-toolkit:
|
||||
- 0.2.19 Revoke all privileges for PUBLIC role in postgres dbs
|
||||
- 0.2.20 Modify the template of rbac_role to make secrets accessible
|
||||
- 0.2.21 Fix issue with db backup error return code being eaten
|
||||
- 0.2.22 Add ability to set labels to add to resources
|
||||
...
|
||||
|
Loading…
Reference in New Issue
Block a user