From 6c8838b098948cdeb2b2710cc0326524378b8d3f Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 4 Oct 2024 01:46:04 +0900 Subject: [PATCH] tempest: Drop deprecated auth_version It was deprecated in tempest 40.0.0[1]. The corresponding parameter of puppet-tempest was also deprecated[2]. [1] https://github.com/openstack/tempest/commit/c0c90279ce [2] https://github.com/openstack/puppet-tempest/commit/1fd2598f Change-Id: I36731fea93867254eea96074050387b6689fe173 --- .../puppet/modules/packstack/manifests/provision/tempest.pp | 2 -- 1 file changed, 2 deletions(-) diff --git a/packstack/puppet/modules/packstack/manifests/provision/tempest.pp b/packstack/puppet/modules/packstack/manifests/provision/tempest.pp index e5c509ee6..58a3f89f9 100644 --- a/packstack/puppet/modules/packstack/manifests/provision/tempest.pp +++ b/packstack/puppet/modules/packstack/manifests/provision/tempest.pp @@ -15,7 +15,6 @@ class packstack::provision::tempest () # Authentication/Keystone $identity_uri_v3 = lookup('CONFIG_KEYSTONE_PUBLIC_URL') - $auth_version = lookup('CONFIG_KEYSTONE_API_VERSION') $admin_username = lookup('CONFIG_KEYSTONE_ADMIN_USERNAME') $admin_password = lookup('CONFIG_KEYSTONE_ADMIN_PW') $admin_project_name = 'admin' @@ -112,7 +111,6 @@ class packstack::provision::tempest () admin_username => $admin_username, use_dynamic_credentials => $use_dynamic_credentials, aodh_available => $aodh_available, - auth_version => $auth_version, ceilometer_available => $ceilometer_available, cinder_available => $cinder_available, configure_images => $configure_images,