Files
kata-containers/tools/packaging/artifact-list.sh
Fabiano Fidêncio f21c54a985 kata-deploy: QEMU, for 2.x, already includes virtiofs
There's no reason to ship qemu & qemu-virtiofs when the former already
includes vitiofs support (and that's the default for 2.x deployments).

In case we will enable experimental qemu DAX support, we should add a
new target, a "qemu-experimental" target, as Carlos has been working on.

Fixes: #1424

Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
2021-02-23 14:24:48 +01:00

23 lines
375 B
Bash
Executable File

#!/bin/bash
#
# Copyright (c) 2019 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
set -o errexit
set -o pipefail
set -o nounset
supported_artifacts=(
"install_clh"
"install_experimental_kernel"
"install_firecracker"
"install_image"
"install_kata_components"
"install_kernel"
"install_qemu"
)
for c in ${supported_artifacts[@]}; do echo $c; done