Browse Source

Merge pull request #7200 from mgugino-upstream-stage/webconsole-version-check

Fix openshift-webconsole version check
Michael Gugino 7 years ago
parent
commit
a060e22db3

+ 1 - 3
playbooks/common/private/components.yml

@@ -20,9 +20,7 @@
 - import_playbook: ../../openshift-hosted/private/config.yml
 
 - import_playbook: ../../openshift-web-console/private/config.yml
-  when:
-    - openshift_web_console_install | default(true) | bool
-    - openshift.common.version_gte_3_9
+  when: openshift_web_console_install | default(true) | bool
 
 - import_playbook: ../../openshift-metrics/private/config.yml
   when: openshift_metrics_install_metrics | default(false) | bool

+ 5 - 2
playbooks/openshift-web-console/private/config.yml

@@ -13,10 +13,13 @@
 
 - name: Web Console
   hosts: oo_first_master
-  roles:
-  - openshift_web_console
   vars:
     first_master: "{{ groups.oo_first_master[0] }}"
+  tasks:
+  - debug: msg="{{ openshift_version | version_compare('3.9', '>=') }}"
+  - import_role:
+      name: openshift_web_console
+    when: openshift_version | version_compare('3.9', '>=')
 
 - name: Web Console Install Checkpoint End
   hosts: all