diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-09-30 14:53:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-30 14:53:40 -0400 |
commit | 5746c82c54291aca3f50ee948b49a63d9ae4445b (patch) | |
tree | 378eca6a051b2b09ca285d4eec6077e68bb500ef /roles/cockpit-ui/tasks/main.yml | |
parent | 1ce3ac9c0f31da7536b0136c0424c33eac379ae4 (diff) | |
parent | 6826f27769563d30194818a0f13b9da086ddf7ab (diff) | |
download | openshift-5746c82c54291aca3f50ee948b49a63d9ae4445b.tar.gz openshift-5746c82c54291aca3f50ee948b49a63d9ae4445b.tar.bz2 openshift-5746c82c54291aca3f50ee948b49a63d9ae4445b.tar.xz openshift-5746c82c54291aca3f50ee948b49a63d9ae4445b.zip |
Merge pull request #2475 from smunilla/registry_all_the_time
Install Registry by Default
Diffstat (limited to 'roles/cockpit-ui/tasks/main.yml')
-rw-r--r-- | roles/cockpit-ui/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/cockpit-ui/tasks/main.yml b/roles/cockpit-ui/tasks/main.yml index 953357392..c573da6d6 100644 --- a/roles/cockpit-ui/tasks/main.yml +++ b/roles/cockpit-ui/tasks/main.yml @@ -36,7 +36,7 @@ - name: Retrieve docker-registry route command: > {{ openshift.common.client_binary }} get route docker-registry - --template='{{ '{{' }} .spec.host {{ '}}' }}' + -o jsonpath='{.spec.host}' --config={{ openshift_hosted_kubeconfig }} -n default register: docker_registry_route @@ -45,7 +45,7 @@ - name: Retrieve cockpit kube url command: > {{ openshift.common.client_binary }} get route registry-console - --template='https://{{ '{{' }} .spec.host {{ '}}' }}' + -o jsonpath='https://{.spec.host}' -n default register: registry_console_cockpit_kube_url changed_when: false |