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
This commit is contained in:
yatinkarel 2020-08-25 11:57:10 +05:30
parent 5ddd1f6083
commit 3d956ee90c
1 changed files with 0 additions and 8 deletions

View File

@ -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',
}