e181530333
* Remove dockerproject org (#5548)
* Change dockerproject.org to download.docker.com
dockerproject.org was deprecated in 2017 and has gone down.
* Restore yum repo for containerd
Change-Id: I883bb512a2164a85865b1bd4fb569af0358c8c2b
Co-authored-by: Craig Rodrigues <rodrigc@crodrigues.org>
* remove legacy docker repo in kubernetes/preinstall before any packages installed (#5640)
* Remove dockerproject_.+_repo_.+ variables (#5662)
This 38688a4486
change replaces the
value for dockerproject_.+_repo_.+ docker variables but their new
value was previously defined in other variables. This change removes
the dockerproject_.+_repo_.+ docker variables in favor of the older
ones.
* Remove stale legacy yum docker repo /etc/yum.repos.d/docker.repo (#5569)
* Remove stale legacy yum docker repo /etc/yum.repos.d/docker.repo
* move task 'Remove legacy docker repo file' to pre-upgrade.yml
* fix upgrade procedure when in playbook (#5695)
exists role kubernetes/preinstall and not exists role container-engine
error 'yum_repo_dir' is undefined
Co-authored-by: Matthew Mosesohn <matthew.mosesohn@gmail.com>
Co-authored-by: Craig Rodrigues <rodrigc@crodrigues.org>
Co-authored-by: Victor Morales <chipahuac@hotmail.com>
25 lines
740 B
YAML
25 lines
740 B
YAML
---
|
|
- name: Remove legacy docker repo file
|
|
file:
|
|
path: "{{ yum_repo_dir }}/docker.repo"
|
|
state: absent
|
|
when:
|
|
- ansible_distribution in ["CentOS","RedHat","OracleLinux"]
|
|
- not is_atomic
|
|
|
|
- name: Ensure old versions of Docker are not installed. | Debian
|
|
apt:
|
|
name: '{{ docker_remove_packages_apt }}'
|
|
state: absent
|
|
when:
|
|
- ansible_os_family == 'Debian'
|
|
- (docker_versioned_pkg[docker_version | string] is search('docker-ce'))
|
|
|
|
- name: Ensure old versions of Docker are not installed. | RedHat
|
|
yum:
|
|
name: '{{ docker_remove_packages_yum }}'
|
|
state: absent
|
|
when:
|
|
- ansible_os_family == 'RedHat'
|
|
- (docker_versioned_pkg[docker_version | string] is search('docker-ce'))
|
|
- not is_atomic
|