Skip to content

Commit 6a3a562

Browse files
feat: add pod labels to helm chart values. (#3935)
* feat: add pod labels to helm chart values. * update chart version to 0.0.7
1 parent f734a5b commit 6a3a562

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

charts/nuts-node/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.0.6
18+
version: 0.0.7
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/nuts-node/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ spec:
2121
{{- end }}
2222
labels:
2323
{{- include "chart.selectorLabels" . | nindent 8 }}
24+
{{- with .Values.podLabels }}
25+
{{ toYaml . | indent 8 }}
26+
{{- end }}
2427
spec:
2528
volumes:
2629
- name: nuts-config

charts/nuts-node/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ serviceAccount:
2525

2626
podAnnotations: {}
2727

28+
podLabels: {}
29+
2830
podSecurityContext:
2931
fsGroup: 18081
3032

0 commit comments

Comments
 (0)