From 51e57e37353764fa04df56586fed10249a980671 Mon Sep 17 00:00:00 2001 From: Balazs Gibizer Date: Tue, 28 Nov 2023 18:07:27 +0100 Subject: [PATCH] Configure barbican access This adds the barbican section to the nova.conf template so nova can access the barbican. Depends-On: https://github.com/openstack-k8s-operators/openstack-operator/pull/562 --- templates/nova.conf | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/templates/nova.conf b/templates/nova.conf index 44725d1ef..9851f53ef 100644 --- a/templates/nova.conf +++ b/templates/nova.conf @@ -263,6 +263,18 @@ cafile = {{ .openstack_cacert }} region_name = {{ .openstack_region_name }} catalog_info = volumev3:cinderv3:internalURL +[barbican] +auth_url = {{ .keystone_internal_url }} +auth_type = password +project_domain_name = {{ .default_project_domain }} +user_domain_name = {{ .default_user_domain}} +project_name = service +username = {{ .nova_keystone_user }} +password = {{ .nova_keystone_password }} +cafile = {{ .openstack_cacert }} +region_name = {{ .openstack_region_name }} +barbican_endpoint_type = internal + [service_user] send_service_user_token = true auth_url = {{ .keystone_internal_url }}