NB means Nota Bene, “note well” i just use it to not break the flow and write things as side.
A. Setup Yaml
#kind.yaml
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
networking:
disableDefaultCNI: true
nodes:
- role: control-plane
kind create cluster --config kind.yaml --name cni
kubectl delete deploy -n kube-system coredns
kubectl delete deploy -n local-path-storage local-path-provisioner
docker exec cni-control-plane crictl pull httpd > /dev/null
Why ?