You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The second-party package of "cri-tools" (crictl) and also the
third-party package "kubernetes-cni" (cni-plugins) will go away.
So don't rely on them being installed, but just use "ctr" and
"/usr/local/libexec/cni" instead from the nerdctl-full install.
Signed-off-by: Anders F Björklund <anders.f.bjorklund@gmail.com>
# See <https://kubernetes.io/docs/setup/production-environment/tools/kubeadm/create-cluster-kubeadm/>
@@ -140,7 +134,7 @@ probes:
140
134
script: |
141
135
#!/bin/bash
142
136
set -eux -o pipefail
143
-
if ! timeout 30s bash -c "images=\"$(kubeadm config images list)\"; until for image in \$images; do sudo crictl image -q \$image | grep -q sha256; done; do sleep 3; done"; then
137
+
if ! timeout 30s bash -c "images=\"$(kubeadm config images list)\"; until for image in \$images; do sudo ctr -n k8s.io image inspect \$image >/dev/null; done; do sleep 3; done"; then
0 commit comments