From 9de56d8fc8b35d96866f11ab240a650f42727c59 Mon Sep 17 00:00:00 2001 From: Steve Wilkerson Date: Tue, 13 Mar 2018 17:36:11 -0500 Subject: [PATCH] Cinder: Fix sudoers reference in configmap The cinder_sudoers entry in the cinder configmap-etc was consuming the neutron_sudoers entry in the values.yaml. This corrects it to point at cinder_sudoers instead Change-Id: I214912b3ed4185a201f4f94e82eaa50d6d321018 --- cinder/templates/configmap-etc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/templates/configmap-etc.yaml b/cinder/templates/configmap-etc.yaml index c889bbbaca..e345814299 100644 --- a/cinder/templates/configmap-etc.yaml +++ b/cinder/templates/configmap-etc.yaml @@ -110,7 +110,7 @@ data: policy.json: | {{ toJson .Values.conf.policy | indent 4 }} cinder_sudoers: | -{{- tuple .Values.conf.neutron_sudoers "etc/_cinder_sudoers.tpl" . | include "helm-toolkit.utils.configmap_templater" }} +{{- tuple .Values.conf.cinder_sudoers "etc/_cinder_sudoers.tpl" . | include "helm-toolkit.utils.configmap_templater" }} rootwrap.conf: | {{- tuple .Values.conf.rootwrap "etc/_rootwrap.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }} volume.filters: |