Browse Source

Disable console install when not 3.9 or newer

Samuel Padgett 7 years ago
parent
commit
7467ce4829
1 changed files with 3 additions and 1 deletions
  1. 3 1
      playbooks/common/private/components.yml

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

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