From a71998a80cfe05b77845dd71931f3717b5997c30 Mon Sep 17 00:00:00 2001 From: Steve Wilkerson Date: Wed, 14 Mar 2018 15:13:15 -0500 Subject: [PATCH] Nova: Fix sudoers location in nova-etc configmap The nova_sudoers entry in the nova configmap-etc was consuming the neutron_sudoers entry in the values.yaml. This corrects it to point at nova_sudoers instead Change-Id: I621c817c579cc1c31fa51b1a0f49a43a652784a2 --- nova/templates/configmap-etc.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nova/templates/configmap-etc.yaml b/nova/templates/configmap-etc.yaml index 1645b35ea1..0d1d9f958d 100644 --- a/nova/templates/configmap-etc.yaml +++ b/nova/templates/configmap-etc.yaml @@ -213,7 +213,7 @@ data: policy.yaml: | {{ toYaml .Values.conf.policy | indent 4 }} nova_sudoers: | -{{- tuple .Values.conf.neutron_sudoers "etc/_nova_sudoers.tpl" . | include "helm-toolkit.utils.configmap_templater" }} +{{- tuple .Values.conf.nova_sudoers "etc/_nova_sudoers.tpl" . | include "helm-toolkit.utils.configmap_templater" }} rootwrap.conf: | {{- tuple .Values.conf.rootwrap "etc/_rootwrap.conf.tpl" . | include "helm-toolkit.utils.configmap_templater" }} api-metadata.filters: |