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.

37 lines
765 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_config:
  17. grpc:
  18. max_recv_message_size: 16777216
  19. max_send_message_size: 16777216
  20. debug:
  21. level: ""
  22. registries:
  23. "docker.io":
  24. - "https://mirror.gcr.io"
  25. - "https://registry-1.docker.io"
  26. ```
  27. [containerd]: https://containerd.io/