We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9ef838 commit 5ffa541Copy full SHA for 5ffa541
2 files changed
charts/database/templates/database-service.yaml
@@ -3,6 +3,10 @@ apiVersion: v1
3
kind: Service
4
metadata:
5
name: drycc-database
6
+ annotations:
7
+ {{- with .Values.service.annotations }}
8
+ {{- toYaml . | nindent 4 }}
9
+ {{- end }}
10
labels:
11
heritage: drycc
12
spec:
charts/database/values.yaml
@@ -7,6 +7,10 @@ imageRegistry: "docker.io"
# limitsHugepages2Mi: 100Mi
# limitsHugepages1Gi: 2Gi
timeout: "1200"
+# Service
+service:
+ # Provide any additional service annotations
13
+ annotations: {}
14
# GCP PDs and EBS volumes are supported only
15
persistence:
16
enabled: false # Set to true to enable persistence
0 commit comments