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
712 B

  1. # conrainerd
  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. ## Containerd config
  10. Example: define registry mirror for docker hub
  11. ```yaml
  12. containerd_config:
  13. grpc:
  14. max_recv_message_size: 16777216
  15. max_send_message_size: 16777216
  16. debug:
  17. level: ""
  18. registries:
  19. "docker.io":
  20. - "https://mirror.gcr.io"
  21. - "https://registry-1.docker.io"
  22. ```
  23. [containerd]: https://containerd.io/