Fixing cloudformation overrides
The cloudformation secrets overrides were misplaced inside the orchestration key. Reference: https://github.com/openstack/openstack-helm/blob/master/heat/values.yaml#L803 Story: 2009891 Task: 44673 Signed-off-by: Thiago Brito <thiago.brito@windriver.com> Change-Id: I05126f1f47dd9152cb2b2102018c50f5640c31ce
This commit is contained in:
@@ -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',
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -309,7 +309,7 @@ class KeystoneHelm(openstack.OpenstackBaseHelm):
|
||||
'tls': {
|
||||
'identity': {
|
||||
'api': {
|
||||
'internal': 'keystone-tls-public'
|
||||
'internal': 'keystone-tls-public',
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -175,6 +175,20 @@ class HeatGetOverrideTest(HeatHelmTestCase,
|
||||
},
|
||||
},
|
||||
},
|
||||
'secrets': {
|
||||
'tls': {
|
||||
'orchestration': {
|
||||
'api': {
|
||||
'internal': 'heat-tls-public',
|
||||
},
|
||||
},
|
||||
'cloudformation': {
|
||||
'cfn': {
|
||||
'internal': 'cloudformation-tls-public',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
'manifests': {
|
||||
'certificates': True,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user