Speed up old docker package removal (#4408)

Both the `yum` and `apt` modules support a list as input, this allows us avoid the slower `with_items` approach, which can take a long time with a large count of cluster nodes.
This commit is contained in:
Chad Swenson
2019-04-01 17:08:35 -05:00
committed by Kubernetes Prow Robot
parent 5f12b7aedf
commit 5d5c9cab19
2 changed files with 22 additions and 19 deletions

View File

@@ -1,31 +1,16 @@
---
- name: Ensure old versions of Docker are not installed. | Debian
package:
name: '{{ item }}'
apt:
name: '{{ docker_remove_packages_apt }}'
state: absent
with_items:
- docker
- docker-engine
- docker.io
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
package:
name: '{{ item }}'
yum:
name: '{{ docker_remove_packages_yum }}'
state: absent
with_items:
- docker
- docker-common
- docker-engine
- docker-selinux.noarch
- docker-client
- docker-client-latest
- docker-latest
- docker-latest-logrotate
- docker-logrotate
- docker-engine-selinux.noarch
when:
- ansible_os_family == 'RedHat'
- (docker_versioned_pkg[docker_version | string] is search('docker-ce'))