diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-08-29 10:42:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-29 10:42:45 -0400 |
commit | 65495026e3c494521754e252af73e1bd69f46e7d (patch) | |
tree | 23d155cded00cd65ca07446a36d3ce2a23510fa5 /roles | |
parent | 9ed3fd2942ba247a1569ae5dd5d15cdeb41563d9 (diff) | |
parent | 451be904989839d60eb6dbb9af9060e1248e4ac3 (diff) | |
download | openshift-65495026e3c494521754e252af73e1bd69f46e7d.tar.gz openshift-65495026e3c494521754e252af73e1bd69f46e7d.tar.bz2 openshift-65495026e3c494521754e252af73e1bd69f46e7d.tar.xz openshift-65495026e3c494521754e252af73e1bd69f46e7d.zip |
Merge pull request #2377 from smunilla/BZ1371031
Default to port 80 when deploying cockpit-ui
Diffstat (limited to 'roles')
-rw-r--r-- | roles/cockpit-ui/tasks/main.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/cockpit-ui/tasks/main.yml b/roles/cockpit-ui/tasks/main.yml index 00a7da4a9..c752bcff1 100644 --- a/roles/cockpit-ui/tasks/main.yml +++ b/roles/cockpit-ui/tasks/main.yml @@ -36,7 +36,7 @@ {{ openshift.common.client_binary }} new-app --template=registry-console {{ cockpit_image_prefix }} -p OPENSHIFT_OAUTH_PROVIDER_URL="{{ openshift.master.public_api_url }}" - -p REGISTRY_HOST="{{ docker_registry_route.stdout }}" + -p REGISTRY_HOST="{{ docker_registry_route.stdout }}:80" -p COCKPIT_KUBE_URL="{{ registry_console_cockpit_kube_url.stdout }}" -n default register: deploy_registry_console |