diff --git a/manifests/api.pp b/manifests/api.pp index a1b88525..8e21ee8e 100644 --- a/manifests/api.pp +++ b/manifests/api.pp @@ -251,19 +251,6 @@ # properties. # Defaults to undef # -# [*validate*] -# (optional) Whether to validate the service is working after any service refreshes -# Defaults to undef -# -# [*validation_options*] -# (optional) Service validation options -# Should be a hash of options defined in openstacklib::service_validation -# If empty, defaults values are taken from openstacklib function. -# Default command list images. -# Require validate set at True. -# Example: -# Defaults to undef -# # [*scrub_time*] # (optional) The amount of time in seconds to delay before performing a delete. # Defaults to undef @@ -343,8 +330,6 @@ class glance::api( $default_store = undef, $multi_store = false, $show_multiple_locations = undef, - $validate = undef, - $validation_options = undef, $scrub_time = undef, $filesystem_store_metadata_file = undef, $filesystem_store_file_perm = undef, @@ -356,14 +341,6 @@ class glance::api( include glance::policy include glance::api::db - if $validate != undef { - warning('The glance::api::validate parameter has been deprecated and has no effect') - } - - if $validation_options != undef { - warning('The glance::api::validation_options parameter has been deprecated and has no effect') - } - if $scrub_time != undef { warning('The glance::scrub_time parameter is deprecated and has no effect') } diff --git a/releasenotes/notes/remove-service-validation-5ae1f6f973bc5990.yaml b/releasenotes/notes/remove-service-validation-5ae1f6f973bc5990.yaml new file mode 100644 index 00000000..1a360145 --- /dev/null +++ b/releasenotes/notes/remove-service-validation-5ae1f6f973bc5990.yaml @@ -0,0 +1,5 @@ +--- +upgrade: + - | + The ``validate`` parameter and the ``validation_options`` parameter of + the ``glance::api`` class have been removed.