Created
October 17, 2021 09:18
-
-
Save mutsune/644f16a16c064f434995b94df211644d to your computer and use it in GitHub Desktop.
nerdctl with k3s (armv7)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir nerdctl | |
cd nerdctl | |
wget 'https://github.com/containerd/nerdctl/releases/download/v0.12.1/nerdctl-0.12.1-linux-arm-v7.tar.gz' | |
tar xzf nerdctl-0.12.1-linux-arm-v7.tar.gz | |
alias k3sctl="/root/nerdctl/nerdctl --address /run/k3s/containerd/containerd.sock --namespace k8s.io" | |
wget 'https://github.com/containernetworking/plugins/releases/download/v1.0.1/cni-plugins-linux-arm-v1.0.1.tgz' | |
mkdir -p /opt/cni/bin | |
tar xzf cni-plugins-linux-arm-v1.0.1.tgz -C /opt/cni/bin |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment