diff --git a/charts/hunting/Chart.yaml b/charts/hunting/Chart.yaml index 24c667c..e701265 100644 --- a/charts/hunting/Chart.yaml +++ b/charts/hunting/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.4.12 +version: 0.4.13 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/charts/hunting/templates/service.yaml b/charts/hunting/templates/service.yaml index 8f1a80f..fa32424 100644 --- a/charts/hunting/templates/service.yaml +++ b/charts/hunting/templates/service.yaml @@ -4,6 +4,9 @@ metadata: name: {{ include "hunting.fullname" . }} labels: {{- include "hunting.labels" . | nindent 4 }} + {{- if .Values.service.additionalLabels }} + {{- toYaml .Values.service.additionalLabels | nindent 4 }} + {{- end }} spec: type: {{ .Values.service.type }} sessionAffinity: None diff --git a/charts/hunting/values.yaml b/charts/hunting/values.yaml index ac19b3f..0439c31 100644 --- a/charts/hunting/values.yaml +++ b/charts/hunting/values.yaml @@ -93,6 +93,7 @@ securityContext: {} service: type: ClusterIP port: 8000 + additionalLabels: {} ingress: enabled: false