Octavia: Get rid of redundant usage of service_auth parameters

... because now some of them are just defining the default values.

Depends-on: https://review.opendev.org/828151
Change-Id: Ie36cee4bddcbdc7247c1ba5a9c361450fc0b7f05
This commit is contained in:
Takashi Kajinami 2022-02-21 02:43:59 +09:00
parent d65f7b5f45
commit bf3ff4c2ab

View File

@ -133,14 +133,8 @@ class openstack_integration::octavia (
}
class { 'octavia::driver_agent':
}
# TODO(tkajinam): Consider using some of these values by defaults.
class { 'octavia::service_auth':
auth_url => $::openstack_integration::config::keystone_admin_uri,
username => 'octavia',
user_domain_name => 'Default',
project_name => 'services',
project_domain_name => 'Default',
password => 'a_big_secret',
auth_type => 'password'
auth_url => $::openstack_integration::config::keystone_admin_uri,
password => 'a_big_secret',
}
}