Merge pull request #4960 from wainersm/CCv0-kata-deploy-skopeo

CCv0 | kata-deploy: allow to build the image without skopeo
This commit is contained in:
GabyCT 2022-08-22 10:15:55 -05:00 committed by GitHub
commit 4960f43ef6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -112,12 +112,12 @@ install_cc_clh() {
#Install cc capable guest image #Install cc capable guest image
install_cc_image() { install_cc_image() {
info "Create CC image" export SKOPEO="${SKOPEO:-yes}"
export SKOPEO=yes
export UMOCI=yes export UMOCI=yes
export AA_KBC="offline_fs_kbc" export AA_KBC="offline_fs_kbc"
export KATA_BUILD_CC=yes export KATA_BUILD_CC=yes
info "Create CC image configured with SKOPEO=${SKOPEO} UMOCI=${UMOCI} AA_KBC=${AA_KBC}"
"${rootfs_builder}" --imagetype=image --prefix="${cc_prefix}" --destdir="${destdir}" "${rootfs_builder}" --imagetype=image --prefix="${cc_prefix}" --destdir="${destdir}"
} }