Remove deprecated keystone::service params
Change-Id: I732a1e8ce8ae2500ac4ff0a1a82a6f1d3336fee1
This commit is contained in:
		@@ -1,10 +1,6 @@
 | 
			
		||||
# == Class keystone::service
 | 
			
		||||
#
 | 
			
		||||
# Encapsulates the keystone service to a class.
 | 
			
		||||
# This allows resources that require keystone to
 | 
			
		||||
# require this class, which can optionally
 | 
			
		||||
# validate that the service can actually accept
 | 
			
		||||
# connections.
 | 
			
		||||
#
 | 
			
		||||
# === Parameters
 | 
			
		||||
#
 | 
			
		||||
@@ -28,53 +24,12 @@
 | 
			
		||||
#   (Optional) Whether the keystone service has restart
 | 
			
		||||
#   Defaults to true
 | 
			
		||||
#
 | 
			
		||||
## DEPRECATED PARAMS
 | 
			
		||||
#
 | 
			
		||||
# [*validate*]
 | 
			
		||||
#   (optional) Whether to validate the service is working after any service refreshes
 | 
			
		||||
#   Defaults to undef
 | 
			
		||||
#
 | 
			
		||||
# [*admin_token*]
 | 
			
		||||
#   (optional) The admin token to use for validation
 | 
			
		||||
#   Defaults to undef
 | 
			
		||||
#
 | 
			
		||||
# [*admin_endpoint*]
 | 
			
		||||
#   (optional) The admin endpont to use for validation
 | 
			
		||||
#   Defaults to undef
 | 
			
		||||
#
 | 
			
		||||
# [*retries*]
 | 
			
		||||
#   (optional) Number of times to retry validation
 | 
			
		||||
#   Defaults to undef
 | 
			
		||||
#
 | 
			
		||||
# [*delay*]
 | 
			
		||||
#   (optional) Number of seconds between validation attempts
 | 
			
		||||
#   Defaults to undef
 | 
			
		||||
#
 | 
			
		||||
# [*insecure*]
 | 
			
		||||
#   (optional) Whether to validate keystone connections
 | 
			
		||||
#   using the --insecure option with keystone client.
 | 
			
		||||
#   Defaults to undef
 | 
			
		||||
#
 | 
			
		||||
# [*cacert*]
 | 
			
		||||
#   (optional) Whether to validate keystone connections
 | 
			
		||||
#   using the specified argument with the --os-cacert option
 | 
			
		||||
#   with keystone client.
 | 
			
		||||
#   Defaults to undef
 | 
			
		||||
#
 | 
			
		||||
class keystone::service (
 | 
			
		||||
  $ensure       = undef,
 | 
			
		||||
  $service_name = $::keystone::params::service_name,
 | 
			
		||||
  $enable       = true,
 | 
			
		||||
  $hasstatus    = true,
 | 
			
		||||
  $hasrestart   = true,
 | 
			
		||||
  ## DEPRECATED PARAMS
 | 
			
		||||
  $validate       = undef,
 | 
			
		||||
  $admin_token    = undef,
 | 
			
		||||
  $admin_endpoint = undef,
 | 
			
		||||
  $retries        = undef,
 | 
			
		||||
  $delay          = undef,
 | 
			
		||||
  $insecure       = undef,
 | 
			
		||||
  $cacert         = undef,
 | 
			
		||||
) inherits keystone::params {
 | 
			
		||||
 | 
			
		||||
  include keystone::deps
 | 
			
		||||
 
 | 
			
		||||
@@ -0,0 +1,5 @@
 | 
			
		||||
---
 | 
			
		||||
upgrade:
 | 
			
		||||
  - |
 | 
			
		||||
    The deprecated parameters validate, admin_token, admin_endpoint, retries,
 | 
			
		||||
    delay, insecure and cacert in keystone::service is removed.
 | 
			
		||||
		Reference in New Issue
	
	Block a user