Skip to content

Commit 3c614c6

Browse files
allow service annotations (#43)
1 parent 812717b commit 3c614c6

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

charts/application-core/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: 1.3.1
18+
version: 1.4.0
1919

2020
maintainers:
2121
- name: Dominic DePasquale

charts/application-core/templates/service.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ metadata:
66
{{- include "application-core.labels" . | nindent 4 }}
77
annotations:
88
{{- include "application-core.annotations" $ | nindent 4 }}
9+
{{- if .Values.service.annotations }}
10+
{{- toYaml .Values.service.annotations | nindent 4 }}
11+
{{- end }}
912
spec:
1013
type: {{ .Values.service.type }}
1114
ports:

charts/application-core/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ securityContext:
5858
service:
5959
type: ClusterIP
6060
port: 8000
61+
annotations: {}
6162

6263
sessionAffinity:
6364
enabled: false

0 commit comments

Comments
 (0)