From 3d956ee90c2ab0ea94cd84cf2d9e48406061f885 Mon Sep 17 00:00:00 2001 From: yatinkarel Date: Tue, 25 Aug 2020 11:57:10 +0530 Subject: [PATCH] Remove usage of deprecate *_bind_host keystone params The parameters were deprecated earlier and are now removed with https://review.opendev.org/#/c/746648/, let's cleanup there usage. Change-Id: I5c0c3804f6a250806bb4f4bfd270e85317c4cdb3 --- packstack/puppet/modules/packstack/manifests/keystone.pp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/packstack/puppet/modules/packstack/manifests/keystone.pp b/packstack/puppet/modules/packstack/manifests/keystone.pp index 9c4e8c68c..b5b573e62 100644 --- a/packstack/puppet/modules/packstack/manifests/keystone.pp +++ b/packstack/puppet/modules/packstack/manifests/keystone.pp @@ -9,12 +9,6 @@ class packstack::keystone () $keystone_url = regsubst(regsubst(hiera('CONFIG_KEYSTONE_PUBLIC_URL'),'/v2.0',''),'/v3','') $keystone_admin_url = hiera('CONFIG_KEYSTONE_ADMIN_URL') - $bind_host = hiera('CONFIG_IP_VERSION') ? { - 'ipv6' => '::0', - default => '0.0.0.0', - # TO-DO(mmagr): Add IPv6 support when hostnames are used - } - class { '::keystone::client': } if hiera('CONFIG_KEYSTONE_FERNET_TOKEN_ROTATE_ENABLE',false) { @@ -37,8 +31,6 @@ class packstack::keystone () enable_fernet_setup => true, service_name => 'httpd', enable_ssl => $keystone_use_ssl, - public_bind_host => $bind_host, - admin_bind_host => $bind_host, default_domain => 'Default', }