Skip to content

Commit

Permalink
allow service annotations (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
domdepasquale committed Aug 8, 2023
1 parent 812717b commit 3c614c6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/application-core/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: 1.3.1
version: 1.4.0

maintainers:
- name: Dominic DePasquale
3 changes: 3 additions & 0 deletions charts/application-core/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ metadata:
{{- include "application-core.labels" . | nindent 4 }}
annotations:
{{- include "application-core.annotations" $ | nindent 4 }}
{{- if .Values.service.annotations }}
{{- toYaml .Values.service.annotations | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.service.type }}
ports:
Expand Down
1 change: 1 addition & 0 deletions charts/application-core/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ securityContext:
service:
type: ClusterIP
port: 8000
annotations: {}

sessionAffinity:
enabled: false
Expand Down

0 comments on commit 3c614c6

Please sign in to comment.