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

chore: update Azure CNI version to v1.0.22 #1192

Merged
merged 2 commits into from May 3, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion packer/install-dependencies.sh
Expand Up @@ -62,8 +62,8 @@ echo " - nvidia-docker2 nvidia-container-runtime" >> ${RELEASE_NOTES_FILEPATH}
installClearContainersRuntime

VNET_CNI_VERSIONS="
1.0.22
1.0.18
1.0.17
"
for VNET_CNI_VERSION in $VNET_CNI_VERSIONS; do
VNET_CNI_PLUGINS_URL="https://acs-mirror.azureedge.net/cni/azure-vnet-cni-linux-amd64-v${VNET_CNI_VERSION}.tgz"
Expand Down
4 changes: 2 additions & 2 deletions pkg/api/const.go
Expand Up @@ -288,11 +288,11 @@ const (
// AzureCniPluginVerLinux specifies version of Azure CNI plugin, which has been mirrored from
// https://github.com/Azure/azure-container-networking/releases/download/${AZURE_PLUGIN_VER}/azure-vnet-cni-linux-amd64-${AZURE_PLUGIN_VER}.tgz
// to https://acs-mirror.azureedge.net/cni
AzureCniPluginVerLinux = "v1.0.18"
AzureCniPluginVerLinux = "v1.0.22"
// AzureCniPluginVerWindows specifies version of Azure CNI plugin, which has been mirrored from
// https://github.com/Azure/azure-container-networking/releases/download/${AZURE_PLUGIN_VER}/azure-vnet-cni-windows-amd64-${AZURE_PLUGIN_VER}.zip
// to https://acs-mirror.azureedge.net/cni
AzureCniPluginVerWindows = "v1.0.18"
AzureCniPluginVerWindows = "v1.0.22"
// CNIPluginVer specifies the version of CNI implementation
// https://github.com/containernetworking/plugins
CNIPluginVer = "v0.7.5"
Expand Down
2 changes: 1 addition & 1 deletion pkg/api/converterfromapi_test.go
Expand Up @@ -566,7 +566,7 @@ func getDefaultContainerService() *ContainerService {
EtcdVersion: "3.0.0",
EtcdDiskSizeGB: "256",
EtcdEncryptionKey: "sampleEncruptionKey",
AzureCNIVersion: "1.0.18",
AzureCNIVersion: "1.0.22",
AzureCNIURLLinux: "https://mirror.azk8s.cn/kubernetes/azure-container-networking/linux",
AzureCNIURLWindows: "https://mirror.azk8s.cn/kubernetes/azure-container-networking/windows",
KeyVaultSku: "Basic",
Expand Down