Format:
go test -v --run=TestIntegration/TestExportedImageLabels/worker=containerd
Format:
go test -v --run=TestIntegration/TestExportedImageLabels/worker=containerd
Install docker
Install registry.exe
from distribution/distribution: The toolkit to pack, ship, store, and deliver container content (github.com)
# | |
# this is work in progress | |
# the following script was from Gabriel | |
# will modify it to run with the v1.0.0 CNI spec. | |
# | |
$ErrorActionPreference="Stop" | |
$containerdDir = join-path $env:ProgramFiles containerd |
$ErrorActionPreference="Stop" | |
$containerdDir = join-path $env:ProgramFiles containerd | |
if (!(Test-Path $containerdDir)){ | |
mkdir $containerdDir | |
} | |
$downloadPath = Join-Path $env:Tmp "containerd.tar.gz" | |
$downloadLink = "https://github.com/containerd/containerd/releases/download/v1.7.5/containerd-1.7.5-windows-amd64.tar.gz" |
quick instructions | |
================== | |
you will need https://github.com/containerd/containerd/releases/tag/v1.7.3 | |
installed and running with default config | |
you will also need a proper CNI installed |
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
We recommend the following extensions or their equivalent for your IDE of choice:
s = [x*2 | x <- [1..10]] | |
-- s = [2,4,6,8,10,12,14,16,18,20] |