Ver Fonte

Merge pull request #7108 from spadgett/check-version-for-console-install

Automatic merge from submit-queue.

Disable console install when not 3.9 or newer

Fixes https://github.com/openshift/origin/issues/18573

/assign @sdodson 
@smarterclayton @stevekuznetsov
OpenShift Merge Robot há 7 anos atrás
pai
commit
10760235ed
1 ficheiros alterados com 3 adições e 1 exclusões
  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