From e269cc6687af71b19e2903af48a104d5b1f052b1 Mon Sep 17 00:00:00 2001 From: Vladislav Kuzmin Date: Tue, 11 Jun 2019 15:13:50 +0400 Subject: [PATCH] Add key-manager to sevice catalog Key-manager needed primarily in castellan to reuse existing token from context in castellan. Change-Id: Ie865107dcb39bc078dbc669ba64989dc1ea62a64 Related-Bug: #1827047 --- cinder/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cinder/context.py b/cinder/context.py index ca79587e27f..bf99e88a211 100644 --- a/cinder/context.py +++ b/cinder/context.py @@ -115,7 +115,7 @@ class RequestContext(context.RequestContext): self.service_catalog = [s for s in service_catalog if s.get('type') in ('identity', 'compute', 'object-store', - 'image')] + 'image', 'key-manager')] else: # if list is empty or none self.service_catalog = []