Last active
February 5, 2020 02:56
-
-
Save onelittlenightmusic/23cab0e0f70d4752688473c588e70cca to your computer and use it in GitHub Desktop.
This file contains hidden or 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
cat > kind-cluster-with-extramounts.yaml <<EOF | |
kind: Cluster | |
apiVersion: kind.sigs.k8s.io/v1alpha3 | |
nodes: | |
- role: control-plane | |
extraMounts: | |
- hostPath: /var/run/docker.sock | |
containerPath: /var/run/docker.sock | |
EOF | |
kind create cluster --config ./kind-cluster-with-extramounts.yaml --name clusterapi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment