Skip to content
This repository has been archived by the owner on Oct 24, 2023. It is now read-only.

fix: add missing container images in VHD #284

Merged
merged 3 commits into from
Jan 11, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions packer/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ for KV_FLEXVOLUME_VERSION in ${KV_FLEXVOLUME_VERSIONS}; do
pullContainerImage "docker" "mcr.microsoft.com/k8s/flexvolume/keyvault-flexvolume:v${KV_FLEXVOLUME_VERSION}"
done

BLOBFUSE-FLEXVOLUME_VERSIONS="1.0.7"
for FLEXVOLUME_VERSIONS in ${FLEXVOLUME_VERSIONS}; do
pullContainerImage "docker" "mcr.microsoft.com/k8s/flexvolume/blobfuse-flexvolume:v${FLEXVOLUME_VERSIONS}"
BLOBFUSE_FLEXVOLUME_VERSIONS="1.0.7"
for BLOBFUSE_FLEXVOLUME_VERSION in ${BLOBFUSE_FLEXVOLUME_VERSIONS}; do
mboersma marked this conversation as resolved.
Show resolved Hide resolved
pullContainerImage "docker" "mcr.microsoft.com/k8s/flexvolume/blobfuse-flexvolume:v${BLOBFUSE_FLEXVOLUME_VERSION}"
done

IP_MASQ_AGENT_VERSIONS="2.0.0"
Expand Down