From e237c3a612d6bd3a87d74e9904d0a06f3056df00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20de=20Saint=20Martin?= Date: Thu, 21 Jun 2018 15:12:06 +0200 Subject: [PATCH] Redis slave deployment: fix affinity -> slave.affinity. (#6246) --- stable/redis/Chart.yaml | 2 +- stable/redis/templates/redis-slave-deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stable/redis/Chart.yaml b/stable/redis/Chart.yaml index f6e46abcb5..24474e4344 100644 --- a/stable/redis/Chart.yaml +++ b/stable/redis/Chart.yaml @@ -1,5 +1,5 @@ name: redis -version: 3.5.0 +version: 3.6.0 appVersion: 4.0.10 description: Open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets. keywords: diff --git a/stable/redis/templates/redis-slave-deployment.yaml b/stable/redis/templates/redis-slave-deployment.yaml index f3ee1f7cdb..7aca36a7bf 100644 --- a/stable/redis/templates/redis-slave-deployment.yaml +++ b/stable/redis/templates/redis-slave-deployment.yaml @@ -46,7 +46,7 @@ spec: {{- if .Values.slave.schedulerName }} schedulerName: "{{ .Values.slave.schedulerName }}" {{- end }} - {{- with .Values.affinity }} + {{- with .Values.slave.affinity }} affinity: {{ toYaml . | indent 8 }} {{- end }}