Merge "Fixing cloudformation overrides"

This commit is contained in:
Zuul
2022-03-28 22:49:31 +00:00
committed by Gerrit Code Review
3 changed files with 19 additions and 3 deletions

View File

@@ -134,10 +134,12 @@ class HeatHelm(openstack.OpenstackBaseHelm):
'tls': {
'orchestration': {
'api': {
'internal': 'heat-tls-public'
'internal': 'heat-tls-public',
},
},
'cloudformation': {
'cfn': {
'internal': 'heat-tls-public'
'internal': 'cloudformation-tls-public',
}
}
}

View File

@@ -309,7 +309,7 @@ class KeystoneHelm(openstack.OpenstackBaseHelm):
'tls': {
'identity': {
'api': {
'internal': 'keystone-tls-public'
'internal': 'keystone-tls-public',
}
}
}

View File

@@ -174,6 +174,20 @@ class HeatGetOverrideTest(HeatHelmTestCase,
},
},
},
'secrets': {
'tls': {
'orchestration': {
'api': {
'internal': 'heat-tls-public',
},
},
'cloudformation': {
'cfn': {
'internal': 'cloudformation-tls-public',
},
},
},
},
'manifests': {
'certificates': True,
},