Explorar el Código

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 hace 7 años
padre
commit
10760235ed
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  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