We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57edff6 commit dbc58f5Copy full SHA for dbc58f5
templates/service.yaml
@@ -9,6 +9,10 @@ metadata:
9
namespace: {{ .Release.Namespace }}
10
labels:
11
{{- include "media-servarr-base.labels" . | nindent 4 }}
12
+ {{- with .Values.service.annotations }}
13
+ annotations:
14
+ {{- toYaml . | nindent 4 }}
15
+ {{- end }}
16
spec:
17
type: {{ .Values.service.type }}
18
ports:
values.yaml
@@ -145,6 +145,8 @@ serviceAccount:
145
146
service:
147
type: 'ClusterIP'
148
+ annotations: {}
149
+ # example-annotation: "something"
150
151
- port: # by default uses application.port
152
targetPort: 'http'
0 commit comments