From e6fc4267bd645dfb9ecb1fd0fd1bcf23cc21aafa Mon Sep 17 00:00:00 2001 From: Takashi Kajinami Date: Fri, 18 Oct 2024 22:03:21 +0900 Subject: [PATCH] manila: Fix incomplete keystoneauth options Although we are not using these really, we can check if the required options can be configured. Change-Id: I31d4a2fa9a1bd7bfb422dea51aaab12af8d0a2af --- manifests/manila.pp | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/manifests/manila.pp b/manifests/manila.pp index ceca0ee22..05e602ad0 100644 --- a/manifests/manila.pp +++ b/manifests/manila.pp @@ -135,9 +135,21 @@ class openstack_integration::manila ( } } class { 'manila::data': } - - class { 'manila::compute::nova': } - class { 'manila::network::neutron': } - class { 'manila::volume::cinder': } + class { 'manila::compute::nova': + auth_url => $::openstack_integration::config::keystone_admin_uri, + password => 'a_big_secret', + } + class { 'manila::network::neutron': + auth_url => $::openstack_integration::config::keystone_admin_uri, + password => 'a_big_secret', + } + class { 'manila::volume::cinder': + auth_url => $::openstack_integration::config::keystone_admin_uri, + password => 'a_big_secret', + } + class { 'manila::image::glance': + auth_url => $::openstack_integration::config::keystone_admin_uri, + password => 'a_big_secret', + } class { 'manila::cron::db_purge': } }