Browse Source

Merge pull request #6927 from sdodson/1538974

Automatic merge from submit-queue.

Don't deploy the console if disabled or registry subtype

Whenever openshift_deployment_subtype == registry or the console is explicitly listed as a disabled feature don't deploy.

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1538974
OpenShift Merge Robot 7 years ago
parent
commit
b1828482c9
1 changed files with 8 additions and 0 deletions
  1. 8 0
      playbooks/init/basic_facts.yml

+ 8 - 0
playbooks/init/basic_facts.yml

@@ -67,3 +67,11 @@
       first_master_client_binary: "{{  openshift_client_binary }}"
       #Some roles may require this to be set for first master
       openshift_client_binary: "{{ openshift_client_binary }}"
+
+- name: Disable web console if required
+  hosts: oo_masters_to_config
+  gather_facts: no
+  tasks:
+  - set_fact:
+      openshift_web_console_install: False
+    when: openshift_deployment_subtype == 'registry' or ( osm_disabled_features is defined and 'WebConsole' in osm_disabled_features )