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.

28 lines
679 B

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