diff options
| author | Samuel Munilla <smunilla@redhat.com> | 2016-08-29 10:33:54 -0400 | 
|---|---|---|
| committer | Samuel Munilla <smunilla@redhat.com> | 2016-08-29 10:35:58 -0400 | 
| commit | 451be904989839d60eb6dbb9af9060e1248e4ac3 (patch) | |
| tree | 23d155cded00cd65ca07446a36d3ce2a23510fa5 | |
| parent | 9ed3fd2942ba247a1569ae5dd5d15cdeb41563d9 (diff) | |
Default to port 80 when deploying cockpit-ui
This should save first-time users some pain.
Fixes BZ#1371031
| -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 | 
