Upgrading Windows OS version support + containerd feature state for v1.19

Co-authored-by: jsturtevant <jstur@microsoft.com>
This commit is contained in:
marosset
2020-06-11 03:32:51 +00:00
committed by James Sturtevant
parent b31e51bad6
commit 8a9763a8bc
3 changed files with 53 additions and 18 deletions
@@ -399,6 +399,32 @@ containerd config default > /etc/containerd/config.toml
systemctl restart containerd
```
{{% /tab %}}
{{% tab name="Windows (PowerShell)" %}}
```powershell
# (Install containerd)
# download containerd
cmd /c curl -OL https://github.com/containerd/containerd/releases/download/v1.4.0-beta.2/containerd-1.4.0-beta.2-windows-amd64.tar.gz
cmd /c tar xvf .\containerd-1.4.0-beta.2-windows-amd64.tar.gz
```
```powershell
# extract and configure
Copy-Item -Path ".\bin\" -Destination "$Env:ProgramFiles\containerd" -Recurse -Force
cd $Env:ProgramFiles\containerd\
.\containerd.exe config default | Out-File config.toml -Encoding ascii
# review configuration. depending on your set up, you may want to adjust:
# - the sandbox_image (kubernetes pause image)
# - cni bin_dir and conf_dir locations
Get-Content config.toml
```
```powershell
# start containerd
.\containerd.exe --register-service
Start-Service containerd
```
{{% /tab %}}
{{< /tabs >}}
### systemd