Browse Source

Fix crictl with Docker (#7081)

pull/7082/head
Florian Ruynat 3 years ago
committed by GitHub
parent
commit
c971debd15
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions
  1. 4
      roles/download/tasks/main.yml

4
roles/download/tasks/main.yml

@ -10,7 +10,9 @@
- name: install crictl
import_role:
name: container-engine/crictl
when: not skip_downloads|default(false)
when:
- not skip_downloads|default(false)
- container_manager in ['containerd', 'crio']
- name: download | Get kubeadm binary and list of required images
include_tasks: prep_kubeadm_images.yml

Loading…
Cancel
Save