This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add BarbicanClient service for configuring edge sites
A new BarbicanClient tripleo service provides a means of configuring the barbican Key Manager settings for cinder, glance and nova services running at an edge site. This is necessary because the BarbicanApi tripleo service is only capable of configuring the Key Manager settings for services running in the control plane. For cinder, the BarbicanClient ensures the KeyManager settings are available to the cinder-volume and cinder-backup services. This is necessary because the Key Manager setttings are traditionally associated with the cinder-api service, but cinder-api is not deployed at the edge. Closes-Bug: #1886070 Change-Id: I17d6c3a3af5b192b77d264ff3e94e64ef6064c77 (cherry picked from commit 5080e45)
- Loading branch information
Showing
8 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
heat_template_version: rocky | ||
|
||
description: > | ||
OpenStack Barbican client configuration | ||
parameters: | ||
EndpointMap: | ||
default: {} | ||
description: Mapping of service endpoint -> protocol. Typically set | ||
via parameter_defaults in the resource registry. | ||
type: json | ||
ServiceData: | ||
default: {} | ||
description: Dictionary packing service data | ||
type: json | ||
ServiceNetMap: | ||
default: {} | ||
description: Mapping of service_name -> network name. Typically set | ||
via parameter_defaults in the resource registry. This | ||
mapping overrides those in ServiceNetMapDefaults. | ||
type: json | ||
DefaultPasswords: | ||
default: {} | ||
type: json | ||
RoleName: | ||
default: '' | ||
description: Role name on which the service is applied | ||
type: string | ||
RoleParameters: | ||
default: {} | ||
description: Parameters specific to the role | ||
type: json | ||
|
||
outputs: | ||
role_data: | ||
description: Role data for the Barbican client. | ||
value: | ||
service_name: barbican_client | ||
service_config_settings: | ||
nova_compute: | ||
nova::compute::keymgr_backend: barbican | ||
nova::compute::barbican_endpoint: | ||
get_param: [EndpointMap, BarbicanInternal, uri] | ||
nova::compute::barbican_auth_endpoint: | ||
get_param: [EndpointMap, KeystoneInternal, uri_no_suffix] | ||
cinder_volume: &cinder_barbican_config | ||
cinder::config::cinder_config: | ||
key_manager/backend: | ||
value: barbican | ||
barbican/barbican_endpoint: | ||
value: {get_param: [EndpointMap, BarbicanInternal, uri]} | ||
barbican/auth_endpoint: | ||
value: {get_param: [EndpointMap, KeystoneInternal, uri_no_suffix]} | ||
cinder_backup: *cinder_barbican_config | ||
glance_api: | ||
glance::api::keymgr_backend: barbican | ||
glance::api::keymgr_encryption_api_url: | ||
get_param: [EndpointMap, BarbicanInternal, uri] | ||
glance::api::keymgr_encryption_auth_url: | ||
get_param: [EndpointMap, KeystoneInternal, uri_no_suffix] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# A Heat environment file which can be used to configure services running at | ||
# a DCN/Edge site to access Barbican in the control plane. | ||
resource_registry: | ||
OS::TripleO::Services::BarbicanClient: ../../deployment/barbican/barbican-client-puppet.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
releasenotes/notes/add-barbican-client-for-dcn-7182e8bab41fce21.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
--- | ||
features: | ||
- | | ||
Add new BarbicanClient tripleo service for configuring DCN/Edge nodes | ||
to access a barbican service running in the control plane. The client | ||
service is disabled by default, and can be enabled by including the | ||
environments/services/barbican-edge.yaml environment file when deploying | ||
a DCN/Edge stack. | ||
fixes: | ||
- | | ||
Ensure the barbican Key Manager settings are configured on DCN/Edge nodes | ||
when the barbican service is deployed in the control plane. See `bug 1886070 | ||
<https://bugs.launchpad.net/tripleo/+bug/1886070>`_. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters