Create independent classes for key managers
This change introduces the new independent classes to manage options for key managers, which are implemented in the castellan library. Depends-on: https://review.opendev.org/772676 Change-Id: Id54b87472ae67a9005276e52de9dd68172e22eff
This commit is contained in:
@@ -229,21 +229,6 @@
|
|||||||
# (optional) Maximum number of results that could be returned by a request
|
# (optional) Maximum number of results that could be returned by a request
|
||||||
# Default: $::os_service_default.
|
# Default: $::os_service_default.
|
||||||
#
|
#
|
||||||
# [*keymgr_backend*]
|
|
||||||
# (optional) Key Manager service class.
|
|
||||||
# Example of valid value: castellan.key_manager.barbican_key_manager.BarbicanKeyManager
|
|
||||||
# Defaults to undef.
|
|
||||||
#
|
|
||||||
# [*keymgr_encryption_api_url*]
|
|
||||||
# (optional) Key Manager service URL
|
|
||||||
# Example of valid value: https://localhost:9311/v1
|
|
||||||
# Defaults to undef
|
|
||||||
#
|
|
||||||
# [*keymgr_encryption_auth_url*]
|
|
||||||
# (optional) Auth URL for keymgr authentication. Should be in format
|
|
||||||
# http://auth_url:5000/v3
|
|
||||||
# Defaults to undef
|
|
||||||
#
|
|
||||||
# DEPRECATED PARAMETERS
|
# DEPRECATED PARAMETERS
|
||||||
#
|
#
|
||||||
# [*stores*]
|
# [*stores*]
|
||||||
@@ -299,6 +284,21 @@
|
|||||||
# (optional) If set, use this value for max_overflow with sqlalchemy.
|
# (optional) If set, use this value for max_overflow with sqlalchemy.
|
||||||
# Defaults to undef.
|
# Defaults to undef.
|
||||||
#
|
#
|
||||||
|
# [*keymgr_backend*]
|
||||||
|
# (optional) Key Manager service class.
|
||||||
|
# Example of valid value: castellan.key_manager.barbican_key_manager.BarbicanKeyManager
|
||||||
|
# Defaults to undef
|
||||||
|
#
|
||||||
|
# [*keymgr_encryption_api_url*]
|
||||||
|
# (optional) Key Manager service URL
|
||||||
|
# Example of valid value: https://localhost:9311/v1
|
||||||
|
# Defaults to undef
|
||||||
|
#
|
||||||
|
# [*keymgr_encryption_auth_url*]
|
||||||
|
# (optional) Auth URL for keymgr authentication. Should be in format
|
||||||
|
# http://auth_url:5000/v3
|
||||||
|
# Defaults to undef
|
||||||
|
#
|
||||||
class glance::api(
|
class glance::api(
|
||||||
$package_ensure = 'present',
|
$package_ensure = 'present',
|
||||||
$bind_host = $::os_service_default,
|
$bind_host = $::os_service_default,
|
||||||
@@ -349,9 +349,6 @@ class glance::api(
|
|||||||
$validation_options = {},
|
$validation_options = {},
|
||||||
$limit_param_default = $::os_service_default,
|
$limit_param_default = $::os_service_default,
|
||||||
$api_limit_max = $::os_service_default,
|
$api_limit_max = $::os_service_default,
|
||||||
$keymgr_backend = undef,
|
|
||||||
$keymgr_encryption_api_url = undef,
|
|
||||||
$keymgr_encryption_auth_url = undef,
|
|
||||||
# DEPRECATED PARAMETERS
|
# DEPRECATED PARAMETERS
|
||||||
$stores = undef,
|
$stores = undef,
|
||||||
$default_store = undef,
|
$default_store = undef,
|
||||||
@@ -365,6 +362,9 @@ class glance::api(
|
|||||||
$database_max_retries = undef,
|
$database_max_retries = undef,
|
||||||
$database_retry_interval = undef,
|
$database_retry_interval = undef,
|
||||||
$database_max_overflow = undef,
|
$database_max_overflow = undef,
|
||||||
|
$keymgr_backend = undef,
|
||||||
|
$keymgr_encryption_api_url = undef,
|
||||||
|
$keymgr_encryption_auth_url = undef,
|
||||||
) inherits glance {
|
) inherits glance {
|
||||||
|
|
||||||
include glance::deps
|
include glance::deps
|
||||||
@@ -611,12 +611,16 @@ enabled_backends instead.')
|
|||||||
'DEFAULT/ca_file' : value => $ca_file;
|
'DEFAULT/ca_file' : value => $ca_file;
|
||||||
}
|
}
|
||||||
|
|
||||||
if $keymgr_backend {
|
if $keymgr_backend != undef {
|
||||||
glance_api_config {
|
warning('The keymgr_backend parameter is deprecated. Use the glance::key_manager class')
|
||||||
'key_manager/backend': value => $keymgr_backend;
|
include glance::key_manager
|
||||||
'barbican/barbican_endpoint': value => $keymgr_encryption_api_url;
|
}
|
||||||
'barbican/auth_endpoint': value => $keymgr_encryption_auth_url;
|
|
||||||
|
['keymgr_encryption_api_url', 'keymgr_encryption_auth_url'].each |String $barbican_opt| {
|
||||||
|
if getvar("${barbican_opt}") != undef {
|
||||||
|
warning("The ${barbican_opt} parameter is deprecated. Use the glance::key_manager::barbican class")
|
||||||
}
|
}
|
||||||
|
include glance::key_manager::barbican
|
||||||
}
|
}
|
||||||
|
|
||||||
if $manage_service {
|
if $manage_service {
|
||||||
|
22
manifests/key_manager.pp
Normal file
22
manifests/key_manager.pp
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# == Class: glance::key_manager
|
||||||
|
#
|
||||||
|
# Setup and configure Key Manager options
|
||||||
|
#
|
||||||
|
# === Parameters
|
||||||
|
#
|
||||||
|
# [*backend*]
|
||||||
|
# (Optional) Specify the key manager implementation.
|
||||||
|
# Defaults to $::os_service_default
|
||||||
|
#
|
||||||
|
class glance::key_manager (
|
||||||
|
$backend = $::os_service_default,
|
||||||
|
) {
|
||||||
|
|
||||||
|
include glance::deps
|
||||||
|
|
||||||
|
$backend_real = pick($glance::api::keymgr_backend, $backend)
|
||||||
|
|
||||||
|
oslo::key_manager { 'glance_api_config':
|
||||||
|
backend => $backend_real,
|
||||||
|
}
|
||||||
|
}
|
60
manifests/key_manager/barbican.pp
Normal file
60
manifests/key_manager/barbican.pp
Normal file
@@ -0,0 +1,60 @@
|
|||||||
|
# == Class: glance::key_manager::barbican
|
||||||
|
#
|
||||||
|
# Setup and configure Barbican Key Manager options
|
||||||
|
#
|
||||||
|
# === Parameters
|
||||||
|
#
|
||||||
|
# [*barbican_endpoint*]
|
||||||
|
# (Optional) Use this endpoint to connect to Barbican.
|
||||||
|
# Defaults to $::os_service_default
|
||||||
|
#
|
||||||
|
# [*barbican_api_version*]
|
||||||
|
# (Optional) Version of the Barbican API.
|
||||||
|
# Defaults to $::os_service_default
|
||||||
|
#
|
||||||
|
# [*auth_endpoint*]
|
||||||
|
# (Optional) Use this endpoint to connect to Keystone.
|
||||||
|
# Defaults to $::os_service_default
|
||||||
|
#
|
||||||
|
# [*retry_delay*]
|
||||||
|
# (Optional) Number of seconds to wait before retrying poll for key creation
|
||||||
|
# completion.
|
||||||
|
# Defaults to $::os_service_default
|
||||||
|
#
|
||||||
|
# [*number_of_retries*]
|
||||||
|
# (Optional) Number of times to retry poll fo key creation completion.
|
||||||
|
# Defaults to $::os_service_default
|
||||||
|
#
|
||||||
|
# [*barbican_endpoint_type*]
|
||||||
|
# (Optional) Specifies the type of endpoint.
|
||||||
|
# Defaults to $::os_service_default
|
||||||
|
#
|
||||||
|
# [*barbican_region_name*]
|
||||||
|
# (Optional) Specifies the region of the chosen endpoint.
|
||||||
|
# Defaults to $::os_service_default
|
||||||
|
#
|
||||||
|
class glance::key_manager::barbican (
|
||||||
|
$barbican_endpoint = $::os_service_default,
|
||||||
|
$barbican_api_version = $::os_service_default,
|
||||||
|
$auth_endpoint = $::os_service_default,
|
||||||
|
$retry_delay = $::os_service_default,
|
||||||
|
$number_of_retries = $::os_service_default,
|
||||||
|
$barbican_endpoint_type = $::os_service_default,
|
||||||
|
$barbican_region_name = $::os_service_default,
|
||||||
|
) {
|
||||||
|
|
||||||
|
include glance::deps
|
||||||
|
|
||||||
|
$barbican_endpoint_real = pick($glance::api::keymgr_encryption_api_url, $barbican_endpoint)
|
||||||
|
$auth_endpoint_real = pick($glance::api::keymgr_encryption_auth_url, $auth_endpoint)
|
||||||
|
|
||||||
|
oslo::key_manager::barbican { 'glance_api_config':
|
||||||
|
barbican_endpoint => $barbican_endpoint_real,
|
||||||
|
barbican_api_version => $barbican_api_version,
|
||||||
|
auth_endpoint => $auth_endpoint_real,
|
||||||
|
retry_delay => $retry_delay,
|
||||||
|
number_of_retries => $number_of_retries,
|
||||||
|
barbican_endpoint_type => $barbican_endpoint_type,
|
||||||
|
barbican_region_name => $barbican_region_name,
|
||||||
|
}
|
||||||
|
}
|
21
releasenotes/notes/key_manager-opts-ddaa497089657955.yaml
Normal file
21
releasenotes/notes/key_manager-opts-ddaa497089657955.yaml
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
---
|
||||||
|
features:
|
||||||
|
- |
|
||||||
|
The new ``glance::key_manager`` class has been added. This class manages
|
||||||
|
basic options of key managers.
|
||||||
|
|
||||||
|
- |
|
||||||
|
The new ``glance::key_manager::barbican`` class has been added. This class
|
||||||
|
manages options of BarbicanKeyManager.
|
||||||
|
|
||||||
|
deprecations:
|
||||||
|
- |
|
||||||
|
The ``glance::api::keymgr_backend`` parameter has been deprecated. Use
|
||||||
|
the ``glance::key_manager`` class.
|
||||||
|
|
||||||
|
- |
|
||||||
|
The following parameters of the ``glance::api`` class have been deprecated
|
||||||
|
in favor of the new ``glance::key_manager::barbican`` class.
|
||||||
|
|
||||||
|
- ``keymgr_encryption_api_url``
|
||||||
|
- ``keymgr_encryption_auth_url``
|
57
spec/classes/glance_key_manager_barbican_spec.rb
Normal file
57
spec/classes/glance_key_manager_barbican_spec.rb
Normal file
@@ -0,0 +1,57 @@
|
|||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe 'glance::key_manager::barbican' do
|
||||||
|
shared_examples 'glance::key_manager::barbican' do
|
||||||
|
context 'with default parameters' do
|
||||||
|
it {
|
||||||
|
is_expected.to contain_oslo__key_manager__barbican('glance_api_config').with(
|
||||||
|
:barbican_endpoint => '<SERVICE DEFAULT>',
|
||||||
|
:barbican_api_version => '<SERVICE DEFAULT>',
|
||||||
|
:auth_endpoint => '<SERVICE DEFAULT>',
|
||||||
|
:retry_delay => '<SERVICE DEFAULT>',
|
||||||
|
:number_of_retries => '<SERVICE DEFAULT>',
|
||||||
|
:barbican_endpoint_type => '<SERVICE DEFAULT>',
|
||||||
|
:barbican_region_name => '<SERVICE DEFAULT>',
|
||||||
|
)
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'with specified parameters' do
|
||||||
|
let :params do
|
||||||
|
{
|
||||||
|
:barbican_endpoint => 'http://localhost:9311/',
|
||||||
|
:barbican_api_version => 'v1',
|
||||||
|
:auth_endpoint => 'http://localhost:5000',
|
||||||
|
:retry_delay => 1,
|
||||||
|
:number_of_retries => 60,
|
||||||
|
:barbican_endpoint_type => 'public',
|
||||||
|
:barbican_region_name => 'regionOne',
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
it {
|
||||||
|
is_expected.to contain_oslo__key_manager__barbican('glance_api_config').with(
|
||||||
|
:barbican_endpoint => 'http://localhost:9311/',
|
||||||
|
:barbican_api_version => 'v1',
|
||||||
|
:auth_endpoint => 'http://localhost:5000',
|
||||||
|
:retry_delay => 1,
|
||||||
|
:number_of_retries => 60,
|
||||||
|
:barbican_endpoint_type => 'public',
|
||||||
|
:barbican_region_name => 'regionOne',
|
||||||
|
)
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
on_supported_os({
|
||||||
|
:supported_os => OSDefaults.get_supported_os
|
||||||
|
}).each do |os,facts|
|
||||||
|
context "on #{os}" do
|
||||||
|
let (:facts) do
|
||||||
|
facts.merge(OSDefaults.get_facts())
|
||||||
|
end
|
||||||
|
|
||||||
|
it_behaves_like 'glance::key_manager::barbican'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
39
spec/classes/glance_key_manager_spec.rb
Normal file
39
spec/classes/glance_key_manager_spec.rb
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe 'glance::key_manager' do
|
||||||
|
shared_examples 'glance::key_manager' do
|
||||||
|
context 'with default parameters' do
|
||||||
|
it {
|
||||||
|
is_expected.to contain_oslo__key_manager('glance_api_config').with(
|
||||||
|
:backend => '<SERVICE DEFAULT>'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'with specified parameters' do
|
||||||
|
let :params do
|
||||||
|
{
|
||||||
|
:backend => 'barbican'
|
||||||
|
}
|
||||||
|
end
|
||||||
|
|
||||||
|
it {
|
||||||
|
is_expected.to contain_oslo__key_manager('glance_api_config').with(
|
||||||
|
:backend => 'barbican'
|
||||||
|
)
|
||||||
|
}
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
on_supported_os({
|
||||||
|
:supported_os => OSDefaults.get_supported_os
|
||||||
|
}).each do |os,facts|
|
||||||
|
context "on #{os}" do
|
||||||
|
let (:facts) do
|
||||||
|
facts.merge(OSDefaults.get_facts())
|
||||||
|
end
|
||||||
|
|
||||||
|
it_behaves_like 'glance::key_manager'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Reference in New Issue
Block a user