We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f7cec3 commit 6b62c1aCopy full SHA for 6b62c1a
charts/controller/templates/controller-service.yaml
@@ -2,6 +2,10 @@ apiVersion: v1
2
kind: Service
3
metadata:
4
name: drycc-controller
5
+ annotations:
6
+ {{- with .Values.service.annotations }}
7
+ {{- toYaml . | nindent 4 }}
8
+ {{- end }}
9
labels:
10
heritage: drycc
11
spec:
charts/controller/values.yaml
@@ -29,7 +29,10 @@ celeryReplicas: 1
29
concurrencyPolicy: "Replace"
30
# Configuring this will no longer use the built-in database component
31
databaseUrl: ""
32
-
+# Service
33
+service:
34
+ # Provide any additional service annotations
35
+ annotations: {}
36
# Any custom controller environment variables
37
# can be specified as key-value pairs under environment
38
# this is usually a non required setting.
0 commit comments