diff options
Diffstat (limited to 'playbooks/init')
| -rw-r--r-- | playbooks/init/facts.yml | 10 | ||||
| -rw-r--r-- | playbooks/init/main.yml | 3 | 
2 files changed, 9 insertions, 4 deletions
diff --git a/playbooks/init/facts.yml b/playbooks/init/facts.yml index 1166ac538..d41f365dc 100644 --- a/playbooks/init/facts.yml +++ b/playbooks/init/facts.yml @@ -135,11 +135,13 @@      - openshift_http_proxy is defined or openshift_https_proxy is defined      - openshift_generate_no_proxy_hosts | default(True) | bool +  - name: Initialize openshift.node.sdn_mtu +    openshift_facts: +      role: node +      local_facts: +        sdn_mtu: "{{ openshift_node_sdn_mtu | default(None) }}" +    - name: initialize_facts set_fact repoquery command      set_fact:        repoquery_cmd: "{{ 'dnf repoquery --latest-limit 1 -d 0' if ansible_pkg_mgr == 'dnf' else 'repoquery --plugins' }}"        repoquery_installed: "{{ 'dnf repoquery --latest-limit 1 -d 0 --disableexcludes=all --installed' if ansible_pkg_mgr == 'dnf' else 'repoquery --plugins --installed' }}" - -  - name: initialize_facts set_fact on openshift_docker_hosted_registry_network -    set_fact: -      openshift_docker_hosted_registry_network: "{{ '' if 'oo_first_master' not in groups else hostvars[groups.oo_first_master.0].openshift.common.portal_net }}" diff --git a/playbooks/init/main.yml b/playbooks/init/main.yml index 1d4f41ffc..b2b972a7d 100644 --- a/playbooks/init/main.yml +++ b/playbooks/init/main.yml @@ -18,12 +18,15 @@  - import_playbook: facts.yml  - import_playbook: sanity_checks.yml +  when: not (skip_sanity_checks | default(False))  - import_playbook: validate_hostnames.yml +  when: not (skip_validate_hostnames | default(False))  - import_playbook: repos.yml  - import_playbook: version.yml +  when: not (skip_verison | default(False))  - name: Initialization Checkpoint End    hosts: all  | 
