Last active
September 12, 2017 22:45
-
-
Save sjenning/396a4928c189006e08c21b8e71b47a73 to your computer and use it in GitHub Desktop.
How to use cri-o for kube development
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
| # on fedora 26 (as root) | |
| dnf --enablerepo=updates-testing -y install cri-o | |
| systemctl disable --now docker | |
| systemctl enable --now cri-o | |
| # cd to kubernetes repo | |
| CGROUP_DRIVER=systemd CONTAINER_RUNTIME=remote CONTAINER_RUNTIME_ENDPOINT='/var/run/crio.sock' IMAGE_SERVICE_ENDPOINT='/var/run/crio.sock' ./hack/local-up-cluster.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment