summaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2017-02-09 17:30:27 -0500
committerGitHub <noreply@github.com>2017-02-09 17:30:27 -0500
commitce9cf2d55babcc1e2ec8eb4b2d69f944d5e728be (patch)
tree9d7f4c0b3f85fe78f65a9fd0ed072ecf516c9d04 /roles
parent8ee9a7bfe9901db69e5d2ee1d118ed0f7ce81005 (diff)
parent00f438ac92323cf3f2109adb7f2f70998f77bc23 (diff)
downloadopenshift-ce9cf2d55babcc1e2ec8eb4b2d69f944d5e728be.tar.gz
openshift-ce9cf2d55babcc1e2ec8eb4b2d69f944d5e728be.tar.bz2
openshift-ce9cf2d55babcc1e2ec8eb4b2d69f944d5e728be.tar.xz
openshift-ce9cf2d55babcc1e2ec8eb4b2d69f944d5e728be.zip
Merge pull request #3317 from sdodson/bz1393666
Document openshift_cockpit_deployer_prefix and add
Diffstat (limited to 'roles')
-rw-r--r--roles/cockpit-ui/tasks/main.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/roles/cockpit-ui/tasks/main.yml b/roles/cockpit-ui/tasks/main.yml
index 87ed7fee7..f2ef4f161 100644
--- a/roles/cockpit-ui/tasks/main.yml
+++ b/roles/cockpit-ui/tasks/main.yml
@@ -63,10 +63,12 @@
changed_when: false
when: check_docker_registry_exists.rc == 0
+# TODO: Need to fix the origin and enterprise templates so that they both respect IMAGE_PREFIX
- name: Deploy registry-console
command: >
{{ openshift.common.client_binary }} new-app --template=registry-console
{% if openshift_cockpit_deployer_prefix is defined %}-p IMAGE_PREFIX="{{ openshift_cockpit_deployer_prefix }}"{% endif %}
+ {% if openshift_cockpit_deployer_version is defined %}-p IMAGE_VERSION="{{ openshift_cockpit_deployer_version }}"{% endif %}
-p OPENSHIFT_OAUTH_PROVIDER_URL="{{ openshift.master.public_api_url }}"
-p REGISTRY_HOST="{{ docker_registry_route.stdout }}"
-p COCKPIT_KUBE_URL="{{ registry_console_cockpit_kube_url.stdout }}"