Merge pull request #3396 from snir911/stable-2.3-fix-kata-deploy

stable-2.3 | kata-deploy: fix tar command in dockerfile
This commit is contained in:
snir911 2022-01-06 20:36:36 +02:00 committed by GitHub
commit 3d4dedefda
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ RUN curl -LO "https://storage.googleapis.com/kubernetes-release/release/$(curl -
&& mv ./kubectl /usr/local/bin/kubectl
RUN curl -LO "https://github.com/Azure/aks-engine/releases/download/${AKS_ENGINE_VER}/aks-engine-${AKS_ENGINE_VER}-linux-${ARCH}.tar.gz" \
&& tar "xvf aks-engine-${AKS_ENGINE_VER}-linux-${ARCH}.tar.gz" \
&& tar xvf "aks-engine-${AKS_ENGINE_VER}-linux-${ARCH}.tar.gz" \
&& mv "aks-engine-${AKS_ENGINE_VER}-linux-${ARCH}/aks-engine" /usr/local/bin/aks-engine \
&& rm "aks-engine-${AKS_ENGINE_VER}-linux-${ARCH}.tar.gz"