Browse Source

add containerd.io to dpkg_selection (#7273)

`containerd.io` is the companion package of `docker-ce` and is the
proper package name. This is needed to avoid apt upgrade/dist-upgrade
from breaking kubernetes.
pull/7279/head
Cristian Calin 3 years ago
committed by GitHub
parent
commit
6450207713
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions
  1. 3
      roles/container-engine/docker/tasks/main.yml

3
roles/container-engine/docker/tasks/main.yml

@ -92,7 +92,7 @@
when: ansible_pkg_mgr == 'apt'
changed_when: false
with_items:
- containerd
- "{{ containerd_package }}"
- docker-ce
- docker-ce-cli
@ -127,6 +127,7 @@
when: ansible_pkg_mgr == 'apt'
changed_when: false
with_items:
- "{{ containerd_package }}"
- docker-ce
- docker-ce-cli

Loading…
Cancel
Save