diff options
author | Imre Farkas <ifarkas@redhat.com> | 2013-11-05 14:23:58 +0100 |
---|---|---|
committer | Imre Farkas <ifarkas@redhat.com> | 2013-11-05 15:06:20 +0100 |
commit | df18ea222c606619e7567f8968cbc6d69a5c61c3 (patch) | |
tree | 5a1dd6a085907a6b4f82cb5fbe39b81ce65af4ed /overcloud-source.yaml | |
parent | 99b21423ee679c1d81402969c8c2b258f3b9080b (diff) |
Fix KeystoneURL
Currently KeystoneURL reports back the noncompute instance IP, not the proper
API endpoint for the Keystone service.
Change-Id: If121620ec549d33f81522465f72e501b7723dd7d
Diffstat (limited to 'overcloud-source.yaml')
-rw-r--r-- | overcloud-source.yaml | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/overcloud-source.yaml b/overcloud-source.yaml index 9f9c5957..8285c8f8 100644 --- a/overcloud-source.yaml +++ b/overcloud-source.yaml @@ -333,10 +333,14 @@ Outputs: KeystoneURL: Description: URL for the Overcloud Keystone service Value: - Fn::Select: - - 0 + Fn::Join: + - '' + - - http:// - Fn::Select: - - ctlplane - - Fn::GetAtt: - - notcompute - - networks + - 0 + - Fn::Select: + - ctlplane + - Fn::GetAtt: + - notcompute + - networks + - :5000/v2.0/ |