diff options
Diffstat (limited to 'playbooks/init')
| -rw-r--r-- | playbooks/init/base_packages.yml | 4 | ||||
| -rw-r--r-- | playbooks/init/facts.yml | 4 | ||||
| -rw-r--r-- | playbooks/init/repos.yml | 4 | 
3 files changed, 7 insertions, 5 deletions
diff --git a/playbooks/init/base_packages.yml b/playbooks/init/base_packages.yml index f7007087c..15b3dd492 100644 --- a/playbooks/init/base_packages.yml +++ b/playbooks/init/base_packages.yml @@ -1,6 +1,6 @@  --- -- name: Ensure that all non-node hosts are accessible -  hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_nfs_to_config +- name: Install packages necessary for installer +  hosts: oo_all_hosts    any_errors_fatal: true    tasks:    - when: diff --git a/playbooks/init/facts.yml b/playbooks/init/facts.yml index 9e411a551..094db845d 100644 --- a/playbooks/init/facts.yml +++ b/playbooks/init/facts.yml @@ -13,7 +13,7 @@    # TODO: Should this role be refactored into health_checks??    - name: Run openshift_sanitize_inventory to set variables -    include_role: +    import_role:        name: openshift_sanitize_inventory    - name: Detecting Operating System from ostree_booted @@ -100,3 +100,5 @@        # We need to setup openshift_client_binary here for special uses of delegate_to in        # later roles and plays.        first_master_client_binary: "{{  openshift_client_binary }}" +      #Some roles may require this to be set for first master +      openshift_client_binary: "{{ openshift_client_binary }}" diff --git a/playbooks/init/repos.yml b/playbooks/init/repos.yml index 866c889b6..667f38ddd 100644 --- a/playbooks/init/repos.yml +++ b/playbooks/init/repos.yml @@ -4,7 +4,7 @@    gather_facts: no    tasks:    - name: subscribe instances to Red Hat Subscription Manager -    include_role: +    import_role:        name: rhel_subscribe      when:      - ansible_distribution == 'RedHat' @@ -12,5 +12,5 @@      - rhsub_user is defined      - rhsub_pass is defined    - name: initialize openshift repos -    include_role: +    import_role:        name: openshift_repos  | 
