From 96aa69d131bd498a2fb19918d25ab438602ac8cb Mon Sep 17 00:00:00 2001 From: Itxaka Date: Mon, 8 Apr 2019 18:01:31 +0200 Subject: [PATCH] Fix configmap-etc values for tempest we are using the None value for some of the values that should be filled by the configmap-etc template but as that template checks for empty values and None is not counted, we are filling the tempest.conf with the wrong values for auth and others Instead use the null value for those so they get properly filled by the template system into the appropiate values Change-Id: I30528b1944722e9ce2e227b1b4dacae7635167ec --- tempest/values.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tempest/values.yaml b/tempest/values.yaml index 01292ef4a7..79ba8a5aec 100644 --- a/tempest/values.yaml +++ b/tempest/values.yaml @@ -122,22 +122,22 @@ conf: tempest: auth: # admin_username value set by configmap-etc - admin_username: None + admin_username: null # admin_password value set by configmap-etc - admin_password: None + admin_password: null # admin_project_name value set by configmap-etc - admin_project_name: None + admin_project_name: null # admin_domain_name value set by configmap-etc - admin_domain_name: None + admin_domain_name: null use_dynamic_credentials: true tempest_roles: admin, member identity: admin_domain_scope: true auth_version: v3 # region value set by configmap-etc - region: None + region: null # uri_v3 value set by configmap-etc - uri_v3: None + uri_v3: null identity-feature-enabled: api_v2: false api_v3: true