Merge pull request #6829 from fidencio/topic/kata-deploy-remove-tarball-from-payload-image

kata-deploy: Do not ship the kata tarball
This commit is contained in:
Fabiano Fidêncio 2023-05-15 19:01:14 +02:00 committed by GitHub
commit da877a603d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,6 +24,7 @@ apt-get update && \
apt-get install -y --no-install-recommends kubectl && \
apt-get clean && rm -rf /var/lib/apt/lists/ && \
mkdir -p ${DESTINATION} && \
tar xvf ${KATA_ARTIFACTS} -C ${DESTINATION}
tar xvf ${WORKDIR}/${KATA_ARTIFACTS} -C ${DESTINATION} && \
rm -f ${WORKDIR}/${KATA_ARTIFACTS}
COPY scripts ${DESTINATION}/scripts