diff options
| author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-02 12:44:05 -0500 | 
|---|---|---|
| committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-11-02 12:44:05 -0500 | 
| commit | 719ab11adadbcd2b608bef09f11512d746debb4c (patch) | |
| tree | 41cdccd5d27241f0b82234349aadea9c636eae84 | |
| parent | 63b19e964fcc09e60562fd253d725edcc2ec4aef (diff) | |
| parent | a9143d5d0e7245e12e0597fa5105fdcbb85e0846 (diff) | |
| download | openshift-719ab11adadbcd2b608bef09f11512d746debb4c.tar.gz openshift-719ab11adadbcd2b608bef09f11512d746debb4c.tar.bz2 openshift-719ab11adadbcd2b608bef09f11512d746debb4c.tar.xz openshift-719ab11adadbcd2b608bef09f11512d746debb4c.zip | |
Merge pull request #772 from detiber/aep
Disable OpenShift features if installing Atomic Enterprise
| -rwxr-xr-x | roles/openshift_facts/library/openshift_facts.py | 16 | ||||
| -rw-r--r-- | roles/openshift_master/tasks/main.yml | 1 | ||||
| -rw-r--r-- | roles/openshift_master/templates/master.yaml.v1.j2 | 3 | 
3 files changed, 18 insertions, 2 deletions
| diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py index ac19fac5f..e5aeb9244 100755 --- a/roles/openshift_facts/library/openshift_facts.py +++ b/roles/openshift_facts/library/openshift_facts.py @@ -508,8 +508,9 @@ def set_deployment_facts_if_unset(facts):              dict: the facts dict updated with the generated deployment_type              facts      """ -    # Perhaps re-factor this as a map? -    # pylint: disable=too-many-branches +    # disabled to avoid breaking up facts related to deployment type into +    # multiple methods for now. +    # pylint: disable=too-many-statements, too-many-branches      if 'common' in facts:          deployment_type = facts['common']['deployment_type']          if 'service_type' not in facts['common']: @@ -550,6 +551,17 @@ def set_deployment_facts_if_unset(facts):                      registry_url = 'aep3/aep-${component}:${version}'                  facts[role]['registry_url'] = registry_url +    if 'master' in facts: +        deployment_type = facts['common']['deployment_type'] +        openshift_features = ['Builder', 'S2IBuilder', 'WebConsole'] +        if 'disabled_features' in facts['master']: +            if deployment_type == 'atomic-enterprise': +                curr_disabled_features = set(facts['master']['disabled_features']) +                facts['master']['disabled_features'] = list(curr_disabled_features.union(openshift_features)) +        else: +            if deployment_type == 'atomic-enterprise': +                facts['master']['disabled_features'] = openshift_features +      if 'node' in facts:          deployment_type = facts['common']['deployment_type']          if 'storage_plugin_deps' not in facts['node']: diff --git a/roles/openshift_master/tasks/main.yml b/roles/openshift_master/tasks/main.yml index 94eb73346..3a886935f 100644 --- a/roles/openshift_master/tasks/main.yml +++ b/roles/openshift_master/tasks/main.yml @@ -62,6 +62,7 @@        api_server_args: "{{ osm_api_server_args | default(None) }}"        controller_args: "{{ osm_controller_args | default(None) }}"        infra_nodes: "{{ num_infra | default(None) }}" +      disabled_features: "{{ osm_disabled_features | default(None) }}"  - name: Install Master package    yum: pkg={{ openshift.common.service_type }}-master{{ openshift_version  }} state=present diff --git a/roles/openshift_master/templates/master.yaml.v1.j2 b/roles/openshift_master/templates/master.yaml.v1.j2 index 527c5231a..73a0bc6cc 100644 --- a/roles/openshift_master/templates/master.yaml.v1.j2 +++ b/roles/openshift_master/templates/master.yaml.v1.j2 @@ -22,6 +22,9 @@ corsAllowedOrigins:  {% for custom_origin in openshift.master.custom_cors_origins | default("") %}    - {{ custom_origin }}  {% endfor %} +{% if 'disabled_features' in openshift.master %} +disabledFeatures: {{ openshift.master.disabled_features | to_json }} +{% endif %}  {% if openshift.master.embedded_dns | bool %}  dnsConfig:    bindAddress: {{ openshift.master.bind_addr }}:{{ openshift.master.dns_port }} | 
