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

Commit

Permalink
ci: use 1.4.0 containerd release for windows in CI (#3742)
Browse files Browse the repository at this point in the history
  • Loading branch information
marosset committed Aug 24, 2020
1 parent 14d044e commit 15fefdc
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/topics/features.md
Expand Up @@ -514,7 +514,7 @@ We are investigating possible risks & mitigations for when VMs are deprovisioned

Kubernetes 1.18 introduces alpha support for the ContainerD runtime on Windows Server 2019. This is still a work-in-progress tracked in [kubernetes/enhancements#1001](https://github.com/kubernetes/enhancements/issues/1001). This feature in AKS-Engine is for testing the in-development versions of ContainerD and Kubernetes, and is not for production use. Be sure to review [open issues](https://github.com/azure/aks-engine/issues?q=containerd+label%3Awindows+is%3Aopen) if you want to test or contribute to this effort.

Containerd now has supported builds at https://github.com/containerd/containerd/releases/tag/v1.4.0-rc.0. You can find nightly builds of Containerd at https://github.com/marosset/windows-cri-containerd/releases/download/nightly/windows-cri-containerd.zip.
Containerd now has supported builds starting with https://github.com/containerd/containerd/releases/tag/v1.4.0. You can find nightly builds of Containerd at https://github.com/marosset/windows-cri-containerd/releases/download/nightly/windows-cri-containerd.zip.

### Deploying multi-OS clusters with ContainerD

Expand Down
2 changes: 1 addition & 1 deletion examples/windows/kubernetes-hybrid.azure-containerd.json
Expand Up @@ -7,7 +7,7 @@
"kubernetesConfig": {
"networkPlugin": "azure",
"containerRuntime": "containerd",
"windowsContainerdURL": "https://github.com/containerd/containerd/releases/download/v1.4.0-rc.0/containerd-1.4.0-rc.0-windows-amd64.tar.gz"
"windowsContainerdURL": "https://github.com/containerd/containerd/releases/download/v1.4.0/containerd-1.4.0-windows-amd64.tar.gz"
}
},
"masterProfile": {
Expand Down
2 changes: 1 addition & 1 deletion examples/windows/kubernetes-hybrid.kubenet-containerd.json
Expand Up @@ -7,7 +7,7 @@
"kubernetesConfig": {
"networkPlugin": "kubenet",
"containerRuntime": "containerd",
"windowsContainerdURL": "https://github.com/containerd/containerd/releases/download/v1.4.0-rc.0/containerd-1.4.0-rc.0-windows-amd64.tar.gz",
"windowsContainerdURL": "https://github.com/containerd/containerd/releases/download/v1.4.0/containerd-1.4.0-windows-amd64.tar.gz",
"windowsSdnPluginURL": "https://aksenginee2etestimages.blob.core.windows.net/test-content/windows-cni-containerd.zip"
}
},
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/engine/template.go
Expand Up @@ -231,7 +231,7 @@ func Build(cfg *config.Config, masterSubnetID string, agentSubnetIDs []string, i

if config.ContainerRuntime == "containerd" &&
prop.OrchestratorProfile.KubernetesConfig.WindowsContainerdURL == "" {
prop.OrchestratorProfile.KubernetesConfig.WindowsContainerdURL = "https://github.com/containerd/containerd/releases/download/v1.4.0-rc.0/containerd-1.4.0-rc.0-windows-amd64.tar.gz"
prop.OrchestratorProfile.KubernetesConfig.WindowsContainerdURL = "https://github.com/containerd/containerd/releases/download/v1.4.0/containerd-1.4.0-windows-amd64.tar.gz"
}

if config.ContainerRuntime != "" {
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/test_cluster_configs/containerd.json
Expand Up @@ -8,7 +8,7 @@
"kubernetesConfig": {
"networkPlugin": "azure",
"containerRuntime": "containerd",
"windowsContainerdURL": "https://github.com/containerd/containerd/releases/download/v1.4.0-rc.0/containerd-1.4.0-rc.0-windows-amd64.tar.gz"
"windowsContainerdURL": "https://github.com/containerd/containerd/releases/download/v1.4.0/containerd-1.4.0-windows-amd64.tar.gz"
}
},
"masterProfile": {
Expand Down

0 comments on commit 15fefdc

Please sign in to comment.