Skip to content
main.yml 9.16 KiB
Newer Older
Smaine Kahlouch's avatar
Smaine Kahlouch committed
---
- name: check if fedora coreos
  stat:
    path: /run/ostree-booted
  register: ostree

spaced's avatar
spaced committed
- name: set is_ostree
spaced's avatar
spaced committed
    is_ostree: "{{ ostree.stat.exists }}"
- name: gather os specific variables
  include_vars: "{{ item }}"
  with_first_found:
    - files:
        - "{{ ansible_distribution|lower }}-{{ ansible_distribution_version|lower|replace('/', '_') }}.yml"
        - "{{ ansible_distribution|lower }}-{{ ansible_distribution_release|lower }}-{{ host_architecture }}.yml"
        - "{{ ansible_distribution|lower }}-{{ ansible_distribution_release|lower }}.yml"
        - "{{ ansible_distribution|lower }}-{{ ansible_distribution_major_version|lower|replace('/', '_') }}.yml"
Antoine Legrand's avatar
Antoine Legrand committed
        - "{{ ansible_distribution|lower }}-{{ host_architecture }}.yml"
        - "{{ ansible_distribution|lower }}.yml"
Antoine Legrand's avatar
Antoine Legrand committed
        - "{{ ansible_os_family|lower }}-{{ host_architecture }}.yml"
        - "{{ ansible_os_family|lower }}.yml"
        - defaults.yml
        - ../vars
Smana's avatar
Smana committed
      skip: true
- name: Warn about Docker version on SUSE
  debug:
    msg: "SUSE distributions always install Docker from the distro repos"
  when: ansible_pkg_mgr == 'zypper'

- include_tasks: set_facts_dns.yml
  when: dns_mode != 'none' and resolvconf_mode == 'docker_dns'
- name: check for minimum kernel version
  fail:
    msg: >
          docker requires a minimum kernel version of
          {{ docker_kernel_min_version }} on
          {{ ansible_distribution }}-{{ ansible_distribution_version }}
  when: (not ansible_os_family in ["CoreOS", "Coreos", "Container Linux by CoreOS", "Flatcar", "Flatcar Container Linux by Kinvolk", "ClearLinux"]) and (ansible_kernel is version(docker_kernel_min_version, "<"))
- name: ensure docker-ce repository public key is installed
  action: "{{ docker_repo_key_info.pkg_key }}"
ant31's avatar
ant31 committed
  args:
    id: "{{ item }}"
    url: "{{ docker_repo_key_info.url }}"
ant31's avatar
ant31 committed
    state: present
  register: keyserver_task_result
  until: keyserver_task_result is succeeded
  delay: "{{ retry_stagger | d(3) }}"
  with_items: "{{ docker_repo_key_info.repo_keys }}"
spaced's avatar
spaced committed
  when: not (ansible_os_family in ["CoreOS", "Coreos", "Container Linux by CoreOS", "Flatcar", "Flatcar Container Linux by Kinvolk", "RedHat", "Suse", "ClearLinux"] or is_ostree)
- name: ensure docker-ce repository is enabled
  action: "{{ docker_repo_info.pkg_repo }}"
ant31's avatar
ant31 committed
  args:
ant31's avatar
ant31 committed
    state: present
  with_items: "{{ docker_repo_info.repos }}"
spaced's avatar
spaced committed
  when: not (ansible_os_family in ["CoreOS", "Coreos", "Container Linux by CoreOS", "Flatcar", "Flatcar Container Linux by Kinvolk", "RedHat", "Suse", "ClearLinux"] or is_ostree) and (docker_repo_info.repos|length > 0)

- name: ensure docker-engine repository public key is installed
  action: "{{ dockerproject_repo_key_info.pkg_key }}"
  args:
    id: "{{ item }}"
    url: "{{ dockerproject_repo_key_info.url }}"
    state: present
  register: keyserver_task_result
  until: keyserver_task_result is succeeded
  delay: "{{ retry_stagger | d(3) }}"
  with_items: "{{ dockerproject_repo_key_info.repo_keys }}"
ant31's avatar
ant31 committed
  when:
spaced's avatar
spaced committed
    - not (ansible_os_family in ["CoreOS", "Coreos", "Container Linux by CoreOS", "Flatcar", "Flatcar Container Linux by Kinvolk", "RedHat", "Suse", "ClearLinux"] or is_ostree)
ant31's avatar
ant31 committed
    - use_docker_engine is defined and use_docker_engine

- name: ensure docker-engine repository is enabled
  action: "{{ dockerproject_repo_info.pkg_repo }}"
  args:
    state: present
  with_items: "{{ dockerproject_repo_info.repos }}"
ant31's avatar
ant31 committed
  when:
    - use_docker_engine is defined and use_docker_engine
spaced's avatar
spaced committed
    - not (ansible_os_family in ["CoreOS", "Coreos", "Container Linux by CoreOS", "Flatcar", "Flatcar Container Linux by Kinvolk", "RedHat", "Suse", "ClearLinux"] or is_ostree) and (dockerproject_repo_info.repos|length > 0)
Giacomo Longo's avatar
Giacomo Longo committed
- name: Configure docker repository on Fedora
  template:
    src: "fedora_docker.repo.j2"
    dest: "{{ yum_repo_dir }}/docker.repo"
spaced's avatar
spaced committed
  when: ansible_distribution == "Fedora" and not is_ostree
Giacomo Longo's avatar
Giacomo Longo committed

- name: Configure docker repository on RedHat/CentOS/Oracle Linux
  yum_repository:
    name: docker-ce
    baseurl: "{{ docker_rh_repo_base_url }}"
    description: "Docker CE Stable - $basearch"
    gpgcheck: yes
    gpgkey: "{{ docker_rh_repo_gpgkey }}"
    keepcache: "{{ docker_rpm_keepcache | default('1') }}"
    proxy: " {{ http_proxy | default('_none_') }}"
spaced's avatar
spaced committed
  when: ansible_distribution in ["CentOS","RedHat","OracleLinux"] and not is_ostree
Smana's avatar
Smana committed

- name: check if container-selinux is available
  yum:
    list: "container-selinux"
  register: yum_result
spaced's avatar
spaced committed
  when: ansible_distribution in ["CentOS","RedHat"] and not is_ostree
- name: Configure extras repository on RedHat/CentOS if container-selinux is not available in current repos
  yum_repository:
    name: extras
    description: "CentOS-7 - Extras"
    state: present
    baseurl: "{{ extras_rh_repo_base_url }}"
    file: "extras"
    gpgcheck: yes
    gpgkey: "{{ extras_rh_repo_gpgkey }}"
    keepcache: "{{ docker_rpm_keepcache | default('1') }}"
    proxy: " {{ http_proxy | default('_none_') }}"
spaced's avatar
spaced committed
    - ansible_distribution in ["CentOS","RedHat"] and not is_ostree
- name: Copy yum.conf for editing
  copy:
    src: "{{ yum_conf }}"
    dest: "{{ docker_yum_conf }}"
    remote_src: yes
spaced's avatar
spaced committed
  when: ansible_distribution in ["CentOS","RedHat","OracleLinux"] and not is_ostree

- name: Edit copy of yum.conf to set obsoletes=0
  lineinfile:
    path: "{{ docker_yum_conf }}"
    state: present
    regexp: '^obsoletes='
    line: 'obsoletes=0'
spaced's avatar
spaced committed
  when: ansible_distribution in ["CentOS","RedHat","OracleLinux"] and not is_ostree
- name: ensure docker packages are installed
  action: "{{ docker_package_info.pkg_mgr }}"
ant31's avatar
ant31 committed
  args:
    pkg: "{{ item.name }}"
    force: "{{ item.force|default(omit) }}"
    conf_file: "{{ item.yum_conf|default(omit) }}"
    state: "{{ item.state | default('present') }}"
Giacomo Longo's avatar
Giacomo Longo committed
    update_cache: "{{ omit if ansible_distribution == 'Fedora' else True }}"
  register: docker_task_result
  until: docker_task_result is succeeded
  delay: "{{ retry_stagger | d(3) }}"
  with_items: "{{ docker_package_info.pkgs }}"
spaced's avatar
spaced committed
  when: not (ansible_os_family in ["CoreOS", "Coreos", "Container Linux by CoreOS", "Flatcar", "Flatcar Container Linux by Kinvolk", "ClearLinux"] or is_ostree) and (docker_package_info.pkgs|length > 0)
ant31's avatar
ant31 committed
  ignore_errors: true

- name: Ensure docker packages are installed
  action: "{{ docker_package_info.pkg_mgr }}"
  args:
    name: "{{ item.name }}"
    state: "{{ item.state | default('present') }}"
  with_items: "{{ docker_package_info.pkgs }}"
  register: docker_task_result
  until: docker_task_result is succeeded
  retries: 4
  delay: "{{ retry_stagger | d(3) }}"
  notify: restart docker
  ignore_errors: true
  when: ansible_os_family in ["ClearLinux"]

ant31's avatar
ant31 committed
- name: get available packages on Ubuntu
  command: apt-cache policy docker-ce
Giacomo Longo's avatar
Giacomo Longo committed
  when:
    - docker_task_result is failed
Giacomo Longo's avatar
Giacomo Longo committed
    - ansible_distribution == 'Ubuntu'
ant31's avatar
ant31 committed
  register: available_packages

- name: show available packages on ubuntu
  fail:
    msg: "{{ available_packages }}"
Giacomo Longo's avatar
Giacomo Longo committed
  when:
    - docker_task_result is failed
Giacomo Longo's avatar
Giacomo Longo committed
    - ansible_distribution == 'Ubuntu'
# This is required to ensure any apt upgrade will not break kubernetes
- name: Tell Debian hosts not to change the docker version with apt upgrade
  dpkg_selections:
    name: docker-ce
    selection: hold
  when: ansible_os_family in ["Debian"]
- name: ensure docker started, remove our config if docker start failed and try again
  block:
    - name: ensure service is started if docker packages are already present
      service:
        name: docker
        state: started
      when: docker_task_result is not changed
  rescue:
    - debug:
        msg: "Docker start failed. Try to remove our config"
    - name: remove kubespray generated config
      file:
        path: "{{ item }}"
        state: absent
      with_items:
        - /etc/systemd/system/docker.service.d/http-proxy.conf
        - /etc/systemd/system/docker.service.d/docker-options.conf
        - /etc/systemd/system/docker.service.d/docker-dns.conf
        - /etc/systemd/system/docker.service.d/docker-orphan-cleanup.conf
      notify: restart docker
- name: flush handlers so we can wait for docker to come up
  meta: flush_handlers

- name: set fact for docker_version
  command: "docker version -f '{{ '{{' }}.Client.Version{{ '}}' }}'"
  register: installed_docker_version

- name: check minimum docker version for docker_dns mode. You need at least docker version >= 1.12 for resolvconf_mode=docker_dns
  fail:
    msg: "You need at least docker version >= 1.12 for resolvconf_mode=docker_dns"
  when: >
        dns_mode != 'none' and
        resolvconf_mode == 'docker_dns' and
        installed_docker_version.stdout is version('1.12', '<')
# Install each plugin using a looped include to make error handling in the included task simpler.
- include_tasks: docker_plugin.yml
  loop: "{{ docker_plugins }}"
  loop_control:
    loop_var: docker_plugin

Chad Swenson's avatar
Chad Swenson committed
- name: Set docker systemd config
  import_tasks: systemd.yml
- name: ensure docker service is started and enabled
  service:
    name: "{{ item }}"
    enabled: yes
    state: started
  with_items:
Bogdan Dobrelya's avatar
Bogdan Dobrelya committed
    - docker