Common

Install base packages and updates /etc/hosts with mappings to all hosts in the cluster.

Configuration

Defaults are set in defaults/main.yml.

  • host_mappings:

    List defining additional /etc/hosts mappings. Each entry should define ip and name.

    Example:

     host_mappings:
       - { ip: '52.7.220.1', name: 'docker-registry.example.org' }
    

    Default:

    host_mappings: []
    
  • epel_releases:

    EPEL repository released packaged per OS version

    Default:

    epel_releases:
      '6': 'epel-release-6-8.noarch.rpm'
    
  • epel_repo:

    EPEL repository URL

    Default:

    epel_repo: "http://dl.fedoraproject.org/pub/epel/{{ ansible_distribution_major_version }}/{{ ansible_architecture }}/{{ epel_releases[ansible_distribution_major_version] }}"