You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
687 B

  1. # CRI-O
  2. [CRI-O] is a lightweight container runtime for Kubernetes.
  3. Kubespray supports basic functionality for using CRI-O as the default container runtime in a cluster.
  4. * Kubernetes supports CRI-O on v1.11.1 or later.
  5. * Helm and other tools may not function as normal due to dependency on Docker.
  6. * `scale.yml` and `upgrade-cluster.yml` are not supported on clusters using CRI-O.
  7. _To use CRI-O instead of Docker, set the following variables:_
  8. ## all.yml
  9. ```yaml
  10. download_container: false
  11. skip_downloads: false
  12. ```
  13. ## k8s-cluster.yml
  14. ```yaml
  15. kubelet_deployment_type: host
  16. container_manager: crio
  17. ```
  18. ## etcd.yml
  19. ```yaml
  20. etcd_deployment_type: host
  21. ```
  22. [CRI-O]: https://cri-o.io/