Fix images info logic for containerd (#4965)

As crictl tool is used to download images, it must be also used to gather
images info
This commit is contained in:
Sergey Kolekonov
2019-07-12 14:29:07 +04:00
committed by Kubernetes Prow Robot
parent a36e9ae690
commit 46bef931e9
2 changed files with 1 additions and 43 deletions

View File

@@ -7,7 +7,7 @@
- name: Set image info command for containerd
set_fact:
image_info_command: "{{ containerd_bin_dir }}/ctr images ls | tail -n +2 | awk -F '[ :]+' '{print $1\":\"$2\",\"$1\":\"$4\"@\"$5}' | tr '\n' ','"
image_info_command: "{{ bin_dir }}/crictl images --verbose | awk -F ': ' '/RepoTags|RepoDigests/ {print $2}' | tr '\n' ','"
when: container_manager == 'containerd'
- name: Register docker images info