diff options
author | Michael Chapman <michapma@redhat.com> | 2016-08-16 09:55:27 -0400 |
---|---|---|
committer | Michael Chapman <michapma@redhat.com> | 2016-08-16 09:56:46 -0400 |
commit | b31c262a32f85291c7546c248617fdbbe9e8b504 (patch) | |
tree | 8eab867b4ddc1bd2f8ad0c635e4c0bf864dd7617 | |
parent | 86c8fb3c833dd9acc80bb0e5367bee50aeebd5df (diff) |
Fix tacker endpoint
Tacker endpoint is currently configured to be on the same port as
congress (1789) when it should be 8888.
JIRA: APEX-229
Change-Id: I239c1200668dd50d0e4f104c33b658132a906f67
Signed-off-by: Michael Chapman <michapma@redhat.com>
-rwxr-xr-x | build/undercloud.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/undercloud.sh b/build/undercloud.sh index 43884b16..75aa265a 100755 --- a/build/undercloud.sh +++ b/build/undercloud.sh @@ -59,7 +59,7 @@ LIBGUESTFS_BACKEND=direct virt-customize \ --run-command "sed -i '/SERVICE_LIST/a\\ \x27tacker\x27: {\x27password_field\x27: \x27OVERCLOUD_TACKER_PASSWORD\x27},' /usr/lib/python2.7/site-packages/tripleoclient/constants.py" \ --run-command "sed -i '/PASSWORD_NAMES =/a\\ \"OVERCLOUD_TACKER_PASSWORD\",' /usr/lib/python2.7/site-packages/tripleoclient/utils.py" \ --run-command "sed -i '/AodhPassword/a\\ parameters\[\x27TackerPassword\x27\] = passwords\[\x27OVERCLOUD_TACKER_PASSWORD\x27\]' /usr/lib/python2.7/site-packages/tripleoclient/v1/overcloud_deploy.py" \ - --run-command "sed -i '/^SERVICES/a\ \x27tacker\x27: {\x27description\x27: \x27Tacker Service\x27, \x27type\x27: \x27servicevm\x27, \x27path\x27: \x27/\x27, \x27port\x27: 1789 },' /usr/lib/python2.7/site-packages/os_cloud_config/keystone.py" \ + --run-command "sed -i '/^SERVICES/a\ \x27tacker\x27: {\x27description\x27: \x27Tacker Service\x27, \x27type\x27: \x27servicevm\x27, \x27path\x27: \x27/\x27, \x27port\x27: 8888 },' /usr/lib/python2.7/site-packages/os_cloud_config/keystone.py" \ --upload /tmp/tacker.repo:/etc/yum.repos.d/ \ --install "python-tackerclient" \ --install "python2-aodhclient" \ |