We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e999ac2 commit 9382ec0Copy full SHA for 9382ec0
2 files changed
charts/redis/templates/redis-svc.yaml
@@ -3,6 +3,10 @@ apiVersion: v1
3
kind: Service
4
metadata:
5
name: drycc-redis
6
+ annotations:
7
+ {{- with .Values.service.annotations }}
8
+ {{- toYaml . | nindent 4 }}
9
+ {{- end }}
10
labels:
11
heritage: drycc
12
spec:
charts/redis/values.yaml
@@ -11,6 +11,12 @@ replicas: 1
# The following parameters are configured only when using an off-cluster Redis instance
addrs: "" # A list of clusters: "127.0.0.1:7001/1,127.0.0.2:7002/1"
13
password: "redis password" # "" == no password
14
+
15
+# Service
16
+service:
17
+ # Provide any additional service annotations
18
+ annotations: {}
19
20
# GCP PDs and EBS volumes are supported only
21
persistence:
22
enabled: false # Set to true to enable persistence
0 commit comments