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.

31 lines
646 B

  1. # containerd
  2. [containerd] An industry-standard container runtime with an emphasis on simplicity, robustness and portability
  3. Kubespray supports basic functionality for using containerd as the default container runtime in a cluster.
  4. _To use the containerd container runtime set the following variables:_
  5. ## k8s-cluster.yml
  6. ```yaml
  7. container_manager: containerd
  8. ```
  9. ## etcd.yml
  10. ```yaml
  11. etcd_deployment_type: host
  12. ```
  13. ## Containerd config
  14. Example: define registry mirror for docker hub
  15. ```yaml
  16. containerd_registries:
  17. "docker.io":
  18. - "https://mirror.gcr.io"
  19. - "https://registry-1.docker.io"
  20. ```
  21. [containerd]: https://containerd.io/