|
|
|
@ -16,6 +16,10 @@
|
|
|
|
|
# (optional) Command for designate rootwrap helper. |
|
|
|
|
# Defaults to 'sudo designate-rootwrap /etc/designate/rootwrap.conf'. |
|
|
|
|
# |
|
|
|
|
# [*state_path*] |
|
|
|
|
# (optional) Directory for storing state. |
|
|
|
|
# Defaults to $::designate::params::state_path |
|
|
|
|
# |
|
|
|
|
# [*default_transport_url*] |
|
|
|
|
# (optional) A URL representing the messaging driver to use and its full |
|
|
|
|
# configuration. Transport URLs take the form: |
|
|
|
@ -110,6 +114,7 @@ class designate(
|
|
|
|
|
$package_ensure = present, |
|
|
|
|
$common_package_name = $::designate::params::common_package_name, |
|
|
|
|
$root_helper = 'sudo designate-rootwrap /etc/designate/rootwrap.conf', |
|
|
|
|
$state_path = $::designate::params::state_path, |
|
|
|
|
$notification_transport_url = $::os_service_default, |
|
|
|
|
$rabbit_use_ssl = false, |
|
|
|
|
$rabbit_ha_queues = $::os_service_default, |
|
|
|
@ -184,7 +189,7 @@ class designate(
|
|
|
|
|
# default setting |
|
|
|
|
designate_config { |
|
|
|
|
'DEFAULT/root_helper' : value => $root_helper; |
|
|
|
|
'DEFAULT/state_path' : value => $::designate::params::state_path; |
|
|
|
|
'DEFAULT/state_path' : value => $state_path; |
|
|
|
|
'network_api:neutron/endpoint_type' : value => $neutron_endpoint_type; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|