Skip to content

Commit

Permalink
Add support for service annotations
Browse files Browse the repository at this point in the history
This update allows users to specify custom annotations using the Helm values file. This is useful for configuring cloud-specific features like internal load balancers on AWS.
  • Loading branch information
aidanthewiz committed Apr 12, 2024
1 parent 8278ff6 commit 9d05fd3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ metadata:
name: {{ include "tika-helm.fullname" . }}
labels:
{{- include "tika-helm.labels" . | nindent 4 }}
annotations:
{{- with .Values.service.annotations }}
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
type: {{ .Values.service.type }}
ports:
Expand Down

0 comments on commit 9d05fd3

Please sign in to comment.