diff --git a/README.md b/README.md index 3970984..b090878 100644 --- a/README.md +++ b/README.md @@ -325,6 +325,10 @@ None. Release Notes ------------- +**3.1.0** + +* add high availability of operations with Volumes + **3.0.0** * migrate the plugin from 2.0.0 to 3.0.0 package version diff --git a/deployment_scripts/puppet/modules/plugin_cinder_netapp/manifests/controller.pp b/deployment_scripts/puppet/modules/plugin_cinder_netapp/manifests/controller.pp index 2104eec..152fd1a 100644 --- a/deployment_scripts/puppet/modules/plugin_cinder_netapp/manifests/controller.pp +++ b/deployment_scripts/puppet/modules/plugin_cinder_netapp/manifests/controller.pp @@ -5,11 +5,16 @@ # class plugin_cinder_netapp::controller inherits plugin_cinder_netapp::params { + + cinder_config { + "DEFAULT/host": value => "str:netapp"; + } + $cinder_hash = $::fuel_settings['cinder'] if $::fuel_settings['cinder_netapp']['multibackend'] { class { 'plugin_cinder_netapp::multibackend_controller': cinder_user_password => $cinder_hash[user_password], - auth_host => $::fuel_settings['management_vip'] + auth_host => hiera('management_vip', undef) } } else { $section = 'DEFAULT' diff --git a/metadata.yaml b/metadata.yaml index 44ca02f..a42f4a8 100644 --- a/metadata.yaml +++ b/metadata.yaml @@ -3,7 +3,7 @@ name: cinder_netapp # Human-readable name for your plugin title: Cinder and NetApp integration # Plugin version -version: 3.0.0 +version: 3.1.0 # Description description: Enable to use NetApp nfs driver as a Cinder backend # Required fuel version