Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Update data collection script based on review feedback #102

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions data/kata-collect-data.sh.in
Original file line number Diff line number Diff line change
Expand Up @@ -261,26 +261,26 @@ show_package_versions()
local pattern="("
local project

# CC 2.x runtime. This shouldn't be installed but let's check anyway
# CC 2.x, 3.0 and runv runtimes. They shouldn't be installed but let's
# check anyway.
pattern+="cc-oci-runtime"
pattern+="cc-runtime"
pattern+="runv"

# core components
for project in @PROJECT_TYPE@
do
pattern+="|${project}-proxy"
pattern+="|${project}-runtime"
pattern+="|${project}-shim"
pattern+="|${project}-containers-image"
done

# assets
pattern+="|clear-containers-image"
pattern+="|linux-container"

# optimised hypervisor
pattern+="|qemu-lite"

# default distro hypervisor
pattern+="|qemu-system-x86"
# hypervisor name prefix
pattern+="|qemu-"

pattern+=")"

Expand Down