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.

272 lines
14 KiB

  1. # Deploy a Production Ready Kubernetes Cluster
  2. ![Kubernetes Logo](https://raw.githubusercontent.com/kubernetes-sigs/kubespray/master/docs/img/kubernetes-logo.png)
  3. If you have questions, check the documentation at [kubespray.io](https://kubespray.io) and join us on the [kubernetes slack](https://kubernetes.slack.com), channel **\#kubespray**.
  4. You can get your invite [here](http://slack.k8s.io/)
  5. - Can be deployed on **[AWS](docs/aws.md), GCE, [Azure](docs/azure.md), [OpenStack](docs/openstack.md), [vSphere](docs/vsphere.md), [Equinix Metal](docs/equinix-metal.md) (bare metal), Oracle Cloud Infrastructure (Experimental), or Baremetal**
  6. - **Highly available** cluster
  7. - **Composable** (Choice of the network plugin for instance)
  8. - Supports most popular **Linux distributions**
  9. - **Continuous integration tests**
  10. ## Quick Start
  11. Below are several ways to use Kubespray to deploy a Kubernetes cluster.
  12. ### Ansible
  13. #### Usage
  14. Install Ansible according to [Ansible installation guide](/docs/ansible.md#installing-ansible)
  15. then run the following steps:
  16. ```ShellSession
  17. # Copy ``inventory/sample`` as ``inventory/mycluster``
  18. cp -rfp inventory/sample inventory/mycluster
  19. # Update Ansible inventory file with inventory builder
  20. declare -a IPS=(10.10.1.3 10.10.1.4 10.10.1.5)
  21. CONFIG_FILE=inventory/mycluster/hosts.yaml python3 contrib/inventory_builder/inventory.py ${IPS[@]}
  22. # Review and change parameters under ``inventory/mycluster/group_vars``
  23. cat inventory/mycluster/group_vars/all/all.yml
  24. cat inventory/mycluster/group_vars/k8s_cluster/k8s-cluster.yml
  25. # Deploy Kubespray with Ansible Playbook - run the playbook as root
  26. # The option `--become` is required, as for example writing SSL keys in /etc/,
  27. # installing packages and interacting with various systemd daemons.
  28. # Without --become the playbook will fail to run!
  29. ansible-playbook -i inventory/mycluster/hosts.yaml --become --become-user=root cluster.yml
  30. ```
  31. Note: When Ansible is already installed via system packages on the control node,
  32. Python packages installed via `sudo pip install -r requirements.txt` will go to
  33. a different directory tree (e.g. `/usr/local/lib/python2.7/dist-packages` on
  34. Ubuntu) from Ansible's (e.g. `/usr/lib/python2.7/dist-packages/ansible` still on
  35. buntu). As a consequence, the `ansible-playbook` command will fail with:
  36. ```raw
  37. ERROR! no action detected in task. This often indicates a misspelled module name, or incorrect module path.
  38. ```
  39. This likely indicates that a task depends on a module present in ``requirements.txt``.
  40. One way of addressing this is to uninstall the system Ansible package then
  41. reinstall Ansible via ``pip``, but this not always possible and one must
  42. take care regarding package versions.
  43. A workaround consists of setting the `ANSIBLE_LIBRARY`
  44. and `ANSIBLE_MODULE_UTILS` environment variables respectively to
  45. the `ansible/modules` and `ansible/module_utils` subdirectories of the ``pip``
  46. installation location, which is the ``Location`` shown by running
  47. `pip show [package]` before executing `ansible-playbook`.
  48. A simple way to ensure you get all the correct version of Ansible is to use
  49. the [pre-built docker image from Quay](https://quay.io/repository/kubespray/kubespray?tab=tags).
  50. You will then need to use [bind mounts](https://docs.docker.com/storage/bind-mounts/)
  51. to access the inventory and SSH key in the container, like this:
  52. ```ShellSession
  53. git checkout v2.20.0
  54. docker pull quay.io/kubespray/kubespray:v2.20.0
  55. docker run --rm -it --mount type=bind,source="$(pwd)"/inventory/sample,dst=/inventory \
  56. --mount type=bind,source="${HOME}"/.ssh/id_rsa,dst=/root/.ssh/id_rsa \
  57. quay.io/kubespray/kubespray:v2.20.0 bash
  58. # Inside the container you may now run the kubespray playbooks:
  59. ansible-playbook -i /inventory/inventory.ini --private-key /root/.ssh/id_rsa cluster.yml
  60. ```
  61. ### Vagrant
  62. For Vagrant we need to install Python dependencies for provisioning tasks.
  63. Check that ``Python`` and ``pip`` are installed:
  64. ```ShellSession
  65. python -V && pip -V
  66. ```
  67. If this returns the version of the software, you're good to go. If not, download and install Python from here <https://www.python.org/downloads/source/>
  68. Install Ansible according to [Ansible installation guide](/docs/ansible.md#installing-ansible)
  69. then run the following step:
  70. ```ShellSession
  71. vagrant up
  72. ```
  73. ## Documents
  74. - [Requirements](#requirements)
  75. - [Kubespray vs ...](docs/comparisons.md)
  76. - [Getting started](docs/getting-started.md)
  77. - [Setting up your first cluster](docs/setting-up-your-first-cluster.md)
  78. - [Ansible inventory and tags](docs/ansible.md)
  79. - [Integration with existing ansible repo](docs/integration.md)
  80. - [Deployment data variables](docs/vars.md)
  81. - [DNS stack](docs/dns-stack.md)
  82. - [HA mode](docs/ha-mode.md)
  83. - [Network plugins](#network-plugins)
  84. - [Vagrant install](docs/vagrant.md)
  85. - [Flatcar Container Linux bootstrap](docs/flatcar.md)
  86. - [Fedora CoreOS bootstrap](docs/fcos.md)
  87. - [Debian Jessie setup](docs/debian.md)
  88. - [openSUSE setup](docs/opensuse.md)
  89. - [Downloaded artifacts](docs/downloads.md)
  90. - [Cloud providers](docs/cloud.md)
  91. - [OpenStack](docs/openstack.md)
  92. - [AWS](docs/aws.md)
  93. - [Azure](docs/azure.md)
  94. - [vSphere](docs/vsphere.md)
  95. - [Equinix Metal](docs/equinix-metal.md)
  96. - [Large deployments](docs/large-deployments.md)
  97. - [Adding/replacing a node](docs/nodes.md)
  98. - [Upgrades basics](docs/upgrades.md)
  99. - [Air-Gap installation](docs/offline-environment.md)
  100. - [NTP](docs/ntp.md)
  101. - [Hardening](docs/hardening.md)
  102. - [Mirror](docs/mirror.md)
  103. - [Roadmap](docs/roadmap.md)
  104. ## Supported Linux Distributions
  105. - **Flatcar Container Linux by Kinvolk**
  106. - **Debian** Bullseye, Buster, Jessie, Stretch
  107. - **Ubuntu** 16.04, 18.04, 20.04, 22.04
  108. - **CentOS/RHEL** 7, [8, 9](docs/centos.md#centos-8)
  109. - **Fedora** 35, 36
  110. - **Fedora CoreOS** (see [fcos Note](docs/fcos.md))
  111. - **openSUSE** Leap 15.x/Tumbleweed
  112. - **Oracle Linux** 7, [8, 9](docs/centos.md#centos-8)
  113. - **Alma Linux** [8, 9](docs/centos.md#centos-8)
  114. - **Rocky Linux** [8, 9](docs/centos.md#centos-8)
  115. - **Kylin Linux Advanced Server V10** (experimental: see [kylin linux notes](docs/kylinlinux.md))
  116. - **Amazon Linux 2** (experimental: see [amazon linux notes](docs/amazonlinux.md))
  117. - **UOS Linux** (experimental: see [uos linux notes](docs/uoslinux.md))
  118. - **openEuler** (experimental: see [openEuler notes](docs/openeuler.md))
  119. Note: Upstart/SysV init based OS types are not supported.
  120. ## Supported Components
  121. - Core
  122. - [kubernetes](https://github.com/kubernetes/kubernetes) v1.25.5
  123. - [etcd](https://github.com/etcd-io/etcd) v3.5.6
  124. - [docker](https://www.docker.com/) v20.10 (see note)
  125. - [containerd](https://containerd.io/) v1.6.15
  126. - [cri-o](http://cri-o.io/) v1.24 (experimental: see [CRI-O Note](docs/cri-o.md). Only on fedora, ubuntu and centos based OS)
  127. - Network Plugin
  128. - [cni-plugins](https://github.com/containernetworking/plugins) v1.1.1
  129. - [calico](https://github.com/projectcalico/calico) v3.24.5
  130. - [canal](https://github.com/projectcalico/canal) (given calico/flannel versions)
  131. - [cilium](https://github.com/cilium/cilium) v1.12.1
  132. - [flannel](https://github.com/flannel-io/flannel) v0.20.1
  133. - [kube-ovn](https://github.com/alauda/kube-ovn) v1.10.7
  134. - [kube-router](https://github.com/cloudnativelabs/kube-router) v1.5.1
  135. - [multus](https://github.com/intel/multus-cni) v3.8
  136. - [weave](https://github.com/weaveworks/weave) v2.8.1
  137. - [kube-vip](https://github.com/kube-vip/kube-vip) v0.5.5
  138. - Application
  139. - [cert-manager](https://github.com/jetstack/cert-manager) v1.11.0
  140. - [coredns](https://github.com/coredns/coredns) v1.9.3
  141. - [ingress-nginx](https://github.com/kubernetes/ingress-nginx) v1.5.1
  142. - [krew](https://github.com/kubernetes-sigs/krew) v0.4.3
  143. - [argocd](https://argoproj.github.io/) v2.5.6
  144. - [helm](https://helm.sh/) v3.10.3
  145. - [metallb](https://metallb.universe.tf/) v0.12.1
  146. - [registry](https://github.com/distribution/distribution) v2.8.1
  147. - Storage Plugin
  148. - [cephfs-provisioner](https://github.com/kubernetes-incubator/external-storage) v2.1.0-k8s1.11
  149. - [rbd-provisioner](https://github.com/kubernetes-incubator/external-storage) v2.1.1-k8s1.11
  150. - [aws-ebs-csi-plugin](https://github.com/kubernetes-sigs/aws-ebs-csi-driver) v0.5.0
  151. - [azure-csi-plugin](https://github.com/kubernetes-sigs/azuredisk-csi-driver) v1.10.0
  152. - [cinder-csi-plugin](https://github.com/kubernetes/cloud-provider-openstack/blob/master/docs/cinder-csi-plugin/using-cinder-csi-plugin.md) v1.22.0
  153. - [gcp-pd-csi-plugin](https://github.com/kubernetes-sigs/gcp-compute-persistent-disk-csi-driver) v1.4.0
  154. - [local-path-provisioner](https://github.com/rancher/local-path-provisioner) v0.0.22
  155. - [local-volume-provisioner](https://github.com/kubernetes-sigs/sig-storage-local-static-provisioner) v2.5.0
  156. ## Container Runtime Notes
  157. - Supported Docker versions are 18.09, 19.03 and 20.10. The *recommended* Docker version is 20.10. `Kubelet` might break on docker's non-standard version numbering (it no longer uses semantic versioning). To ensure auto-updates don't break your cluster look into e.g. the YUM ``versionlock`` plugin or ``apt pin``).
  158. - The cri-o version should be aligned with the respective kubernetes version (i.e. kube_version=1.20.x, crio_version=1.20)
  159. ## Requirements
  160. - **Minimum required version of Kubernetes is v1.23**
  161. - **Ansible v2.11+, Jinja 2.11+ and python-netaddr is installed on the machine that will run Ansible commands**
  162. - The target servers must have **access to the Internet** in order to pull docker images. Otherwise, additional configuration is required (See [Offline Environment](docs/offline-environment.md))
  163. - The target servers are configured to allow **IPv4 forwarding**.
  164. - If using IPv6 for pods and services, the target servers are configured to allow **IPv6 forwarding**.
  165. - The **firewalls are not managed**, you'll need to implement your own rules the way you used to.
  166. in order to avoid any issue during deployment you should disable your firewall.
  167. - If kubespray is ran from non-root user account, correct privilege escalation method
  168. should be configured in the target servers. Then the `ansible_become` flag
  169. or command parameters `--become or -b` should be specified.
  170. Hardware:
  171. These limits are safeguarded by Kubespray. Actual requirements for your workload can differ. For a sizing guide go to the [Building Large Clusters](https://kubernetes.io/docs/setup/cluster-large/#size-of-master-and-master-components) guide.
  172. - Master
  173. - Memory: 1500 MB
  174. - Node
  175. - Memory: 1024 MB
  176. ## Network Plugins
  177. You can choose among ten network plugins. (default: `calico`, except Vagrant uses `flannel`)
  178. - [flannel](docs/flannel.md): gre/vxlan (layer 2) networking.
  179. - [Calico](https://docs.projectcalico.org/latest/introduction/) is a networking and network policy provider. Calico supports a flexible set of networking options
  180. designed to give you the most efficient networking across a range of situations, including non-overlay
  181. and overlay networks, with or without BGP. Calico uses the same engine to enforce network policy for hosts,
  182. pods, and (if using Istio and Envoy) applications at the service mesh layer.
  183. - [canal](https://github.com/projectcalico/canal): a composition of calico and flannel plugins.
  184. - [cilium](http://docs.cilium.io/en/latest/): layer 3/4 networking (as well as layer 7 to protect and secure application protocols), supports dynamic insertion of BPF bytecode into the Linux kernel to implement security services, networking and visibility logic.
  185. - [weave](docs/weave.md): Weave is a lightweight container overlay network that doesn't require an external K/V database cluster.
  186. (Please refer to `weave` [troubleshooting documentation](https://www.weave.works/docs/net/latest/troubleshooting/)).
  187. - [kube-ovn](docs/kube-ovn.md): Kube-OVN integrates the OVN-based Network Virtualization with Kubernetes. It offers an advanced Container Network Fabric for Enterprises.
  188. - [kube-router](docs/kube-router.md): Kube-router is a L3 CNI for Kubernetes networking aiming to provide operational
  189. simplicity and high performance: it uses IPVS to provide Kube Services Proxy (if setup to replace kube-proxy),
  190. iptables for network policies, and BGP for ods L3 networking (with optionally BGP peering with out-of-cluster BGP peers).
  191. It can also optionally advertise routes to Kubernetes cluster Pods CIDRs, ClusterIPs, ExternalIPs and LoadBalancerIPs.
  192. - [macvlan](docs/macvlan.md): Macvlan is a Linux network driver. Pods have their own unique Mac and Ip address, connected directly the physical (layer 2) network.
  193. - [multus](docs/multus.md): Multus is a meta CNI plugin that provides multiple network interface support to pods. For each interface Multus delegates CNI calls to secondary CNI plugins such as Calico, macvlan, etc.
  194. The network plugin to use is defined by the variable `kube_network_plugin`. There is also an
  195. option to leverage built-in cloud provider networking instead.
  196. See also [Network checker](docs/netcheck.md).
  197. ## Ingress Plugins
  198. - [nginx](https://kubernetes.github.io/ingress-nginx): the NGINX Ingress Controller.
  199. - [metallb](docs/metallb.md): the MetalLB bare-metal service LoadBalancer provider.
  200. ## Community docs and resources
  201. - [kubernetes.io/docs/setup/production-environment/tools/kubespray/](https://kubernetes.io/docs/setup/production-environment/tools/kubespray/)
  202. - [kubespray, monitoring and logging](https://github.com/gregbkr/kubernetes-kargo-logging-monitoring) by @gregbkr
  203. - [Deploy Kubernetes w/ Ansible & Terraform](https://rsmitty.github.io/Terraform-Ansible-Kubernetes/) by @rsmitty
  204. - [Deploy a Kubernetes Cluster with Kubespray (video)](https://www.youtube.com/watch?v=CJ5G4GpqDy0)
  205. ## Tools and projects on top of Kubespray
  206. - [Digital Rebar Provision](https://github.com/digitalrebar/provision/blob/v4/doc/integrations/ansible.rst)
  207. - [Terraform Contrib](https://github.com/kubernetes-sigs/kubespray/tree/master/contrib/terraform)
  208. - [Kubean](https://github.com/kubean-io/kubean)
  209. ## CI Tests
  210. [![Build graphs](https://gitlab.com/kargo-ci/kubernetes-sigs-kubespray/badges/master/pipeline.svg)](https://gitlab.com/kargo-ci/kubernetes-sigs-kubespray/pipelines)
  211. CI/end-to-end tests sponsored by: [CNCF](https://cncf.io), [Equinix Metal](https://metal.equinix.com/), [OVHcloud](https://www.ovhcloud.com/), [ELASTX](https://elastx.se/).
  212. See the [test matrix](docs/test_cases.md) for details.