update service annotation key for redis

Signed-off-by: arunkumar.anandhan <arunkumar.anandhan@niceincontact.com>
This commit is contained in:
arunkumar.anandhan 2021-10-04 15:04:23 -06:00
parent 49e65ec16e
commit 17e0a95bce
No known key found for this signature in database
GPG key ID: 0DFE6431E9F1EB28
2 changed files with 5 additions and 4 deletions

View file

@ -6,7 +6,7 @@ metadata:
name: {{ template "argo-cd.redis.fullname" . }} name: {{ template "argo-cd.redis.fullname" . }}
labels: labels:
{{- include "argo-cd.labels" (dict "context" . "component" .Values.redis.name "name" .Values.redis.name) | nindent 4 }} {{- include "argo-cd.labels" (dict "context" . "component" .Values.redis.name "name" .Values.redis.name) | nindent 4 }}
{{- with .Values.redis.serviceAnnotations }} {{- with .Values.redis.service.annotations }}
annotations: annotations:
{{- toYaml . | nindent 4 }} {{- toYaml . | nindent 4 }}
{{- end }} {{- end }}

View file

@ -365,6 +365,10 @@ redis:
enabled: true enabled: true
name: redis name: redis
# Annotations to be added to the provisioned service resource
service:
annotations: {}
image: image:
repository: redis repository: redis
tag: 6.2.4-alpine tag: 6.2.4-alpine
@ -395,9 +399,6 @@ redis:
## ##
podAnnotations: {} podAnnotations: {}
# Annotations to be added to the provisioned service resource
serviceAnnotations: {}
## Labels to be added to the Redis server pods ## Labels to be added to the Redis server pods
## ##
podLabels: {} podLabels: {}