diff --git a/tuskar_ui/infrastructure/overview/forms.py b/tuskar_ui/infrastructure/overview/forms.py index ff78123e7..77ff8c372 100644 --- a/tuskar_ui/infrastructure/overview/forms.py +++ b/tuskar_ui/infrastructure/overview/forms.py @@ -412,6 +412,9 @@ class PostDeployInit(horizon.forms.SelfHandlingForm): "cinder": { "password": plan.parameter_value( controller_role.parameter_prefix + 'CinderPassword')}, + "cinderv2": { + "password": plan.parameter_value( + controller_role.parameter_prefix + 'CinderPassword')}, "ec2": { "password": plan.parameter_value( controller_role.parameter_prefix + 'GlancePassword')}, diff --git a/tuskar_ui/infrastructure/overview/tests.py b/tuskar_ui/infrastructure/overview/tests.py index 760f193cd..20155c867 100644 --- a/tuskar_ui/infrastructure/overview/tests.py +++ b/tuskar_ui/infrastructure/overview/tests.py @@ -278,6 +278,7 @@ class OverviewTests(test.BaseAdminViewTests): 'path': '/', 'admin_path': '/admin'}, 'cinder': {'password': None}, + 'cinderv2': {'password': None}, 'glance': {'password': None}, 'swift': {'password': None, 'path': '/v1/AUTH_%(tenant_id)s',