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.

447 lines
16 KiB

  1. # Kubernetes on Openstack with Terraform
  2. Provision a Kubernetes cluster with [Terraform](https://www.terraform.io) on
  3. Openstack.
  4. ## Status
  5. This will install a Kubernetes cluster on an Openstack Cloud. It should work on
  6. most modern installs of OpenStack that support the basic services.
  7. ## Approach
  8. The terraform configuration inspects variables found in
  9. [variables.tf](variables.tf) to create resources in your OpenStack cluster.
  10. There is a [python script](../terraform.py) that reads the generated`.tfstate`
  11. file to generate a dynamic inventory that is consumed by the main ansible script
  12. to actually install kubernetes and stand up the cluster.
  13. ### Networking
  14. The configuration includes creating a private subnet with a router to the
  15. external net. It will allocate floating IPs from a pool and assign them to the
  16. hosts where that makes sense. You have the option of creating bastion hosts
  17. inside the private subnet to access the nodes there. Alternatively, a node with
  18. a floating IP can be used as a jump host to nodes without.
  19. ### Kubernetes Nodes
  20. You can create many different kubernetes topologies by setting the number of
  21. different classes of hosts. For each class there are options for allocating
  22. floating IP addresses or not.
  23. - Master nodes with etcd
  24. - Master nodes without etcd
  25. - Standalone etcd hosts
  26. - Kubernetes worker nodes
  27. Note that the Ansible script will report an invalid configuration if you wind up
  28. with an even number of etcd instances since that is not a valid configuration. This
  29. restriction includes standalone etcd nodes that are deployed in a cluster along with
  30. master nodes with etcd replicas. As an example, if you have three master nodes with
  31. etcd replicas and three standalone etcd nodes, the script will fail since there are
  32. now six total etcd replicas.
  33. ### GlusterFS
  34. The Terraform configuration supports provisioning of an optional GlusterFS
  35. shared file system based on a separate set of VMs. To enable this, you need to
  36. specify:
  37. - the number of Gluster hosts (minimum 2)
  38. - Size of the non-ephemeral volumes to be attached to store the GlusterFS bricks
  39. - Other properties related to provisioning the hosts
  40. Even if you are using Container Linux by CoreOS for your cluster, you will still
  41. need the GlusterFS VMs to be based on either Debian or RedHat based images.
  42. Container Linux by CoreOS cannot serve GlusterFS, but can connect to it through
  43. binaries available on hyperkube v1.4.3_coreos.0 or higher.
  44. ## Requirements
  45. - [Install Terraform](https://www.terraform.io/intro/getting-started/install.html)
  46. - [Install Ansible](http://docs.ansible.com/ansible/latest/intro_installation.html)
  47. - you already have a suitable OS image in Glance
  48. - you already have a floating IP pool created
  49. - you have security groups enabled
  50. - you have a pair of keys generated that can be used to secure the new hosts
  51. ## Module Architecture
  52. The configuration is divided into three modules:
  53. - Network
  54. - IPs
  55. - Compute
  56. The main reason for splitting the configuration up in this way is to easily
  57. accommodate situations where floating IPs are limited by a quota or if you have
  58. any external references to the floating IP (e.g. DNS) that would otherwise have
  59. to be updated.
  60. You can force your existing IPs by modifying the compute variables in
  61. `kubespray.tf` as follows:
  62. ```
  63. k8s_master_fips = ["151.101.129.67"]
  64. k8s_node_fips = ["151.101.129.68"]
  65. ```
  66. ## Terraform
  67. Terraform will be used to provision all of the OpenStack resources with base software as appropriate.
  68. ### Configuration
  69. #### Inventory files
  70. Create an inventory directory for your cluster by copying the existing sample and linking the `hosts` script (used to build the inventory based on Terraform state):
  71. ```ShellSession
  72. $ cp -LRp contrib/terraform/openstack/sample-inventory inventory/$CLUSTER
  73. $ cd inventory/$CLUSTER
  74. $ ln -s ../../contrib/terraform/openstack/hosts
  75. ```
  76. This will be the base for subsequent Terraform commands.
  77. #### OpenStack access and credentials
  78. No provider variables are hardcoded inside `variables.tf` because Terraform
  79. supports various authentication methods for OpenStack: the older script and
  80. environment method (using `openrc`) as well as a newer declarative method, and
  81. different OpenStack environments may support Identity API version 2 or 3.
  82. These are examples and may vary depending on your OpenStack cloud provider,
  83. for an exhaustive list on how to authenticate on OpenStack with Terraform
  84. please read the [OpenStack provider documentation](https://www.terraform.io/docs/providers/openstack/).
  85. ##### Declarative method (recommended)
  86. The recommended authentication method is to describe credentials in a YAML file `clouds.yaml` that can be stored in:
  87. * the current directory
  88. * `~/.config/openstack`
  89. * `/etc/openstack`
  90. `clouds.yaml`:
  91. ```
  92. clouds:
  93. mycloud:
  94. auth:
  95. auth_url: https://openstack:5000/v3
  96. username: "username"
  97. project_name: "projectname"
  98. project_id: projectid
  99. user_domain_name: "Default"
  100. password: "password"
  101. region_name: "RegionOne"
  102. interface: "public"
  103. identity_api_version: 3
  104. ```
  105. If you have multiple clouds defined in your `clouds.yaml` file you can choose
  106. the one you want to use with the environment variable `OS_CLOUD`:
  107. ```
  108. export OS_CLOUD=mycloud
  109. ```
  110. ##### Openrc method
  111. When using classic environment variables, Terraform uses default `OS_*`
  112. environment variables. A script suitable for your environment may be available
  113. from Horizon under *Project* -> *Compute* -> *Access & Security* -> *API Access*.
  114. With identity v2:
  115. ```
  116. source openrc
  117. env | grep OS
  118. OS_AUTH_URL=https://openstack:5000/v2.0
  119. OS_PROJECT_ID=projectid
  120. OS_PROJECT_NAME=projectname
  121. OS_USERNAME=username
  122. OS_PASSWORD=password
  123. OS_REGION_NAME=RegionOne
  124. OS_INTERFACE=public
  125. OS_IDENTITY_API_VERSION=2
  126. ```
  127. With identity v3:
  128. ```
  129. source openrc
  130. env | grep OS
  131. OS_AUTH_URL=https://openstack:5000/v3
  132. OS_PROJECT_ID=projectid
  133. OS_PROJECT_NAME=username
  134. OS_PROJECT_DOMAIN_ID=default
  135. OS_USERNAME=username
  136. OS_PASSWORD=password
  137. OS_REGION_NAME=RegionOne
  138. OS_INTERFACE=public
  139. OS_IDENTITY_API_VERSION=3
  140. OS_USER_DOMAIN_NAME=Default
  141. ```
  142. Terraform does not support a mix of DomainName and DomainID, choose one or the
  143. other:
  144. ```
  145. * provider.openstack: You must provide exactly one of DomainID or DomainName to authenticate by Username
  146. ```
  147. ```
  148. unset OS_USER_DOMAIN_NAME
  149. export OS_USER_DOMAIN_ID=default
  150. or
  151. unset OS_PROJECT_DOMAIN_ID
  152. set OS_PROJECT_DOMAIN_NAME=Default
  153. ```
  154. #### Cluster variables
  155. The construction of the cluster is driven by values found in
  156. [variables.tf](variables.tf).
  157. For your cluster, edit `inventory/$CLUSTER/cluster.tf`.
  158. |Variable | Description |
  159. |---------|-------------|
  160. |`cluster_name` | All OpenStack resources will use the Terraform variable`cluster_name` (default`example`) in their name to make it easier to track. For example the first compute resource will be named`example-kubernetes-1`. |
  161. |`network_name` | The name to be given to the internal network that will be generated |
  162. |`dns_nameservers`| An array of DNS name server names to be used by hosts in the internal subnet. |
  163. |`floatingip_pool` | Name of the pool from which floating IPs will be allocated |
  164. |`external_net` | UUID of the external network that will be routed to |
  165. |`flavor_k8s_master`,`flavor_k8s_node`,`flavor_etcd`, `flavor_bastion`,`flavor_gfs_node` | Flavor depends on your openstack installation, you can get available flavor IDs through`nova flavor-list` |
  166. |`image`,`image_gfs` | Name of the image to use in provisioning the compute resources. Should already be loaded into glance. |
  167. |`ssh_user`,`ssh_user_gfs` | The username to ssh into the image with. This usually depends on the image you have selected |
  168. |`public_key_path` | Path on your local workstation to the public key file you wish to use in creating the key pairs |
  169. |`number_of_k8s_masters`, `number_of_k8s_masters_no_floating_ip` | Number of nodes that serve as both master and etcd. These can be provisioned with or without floating IP addresses|
  170. |`number_of_k8s_masters_no_etcd`, `number_of_k8s_masters_no_floating_ip_no_etcd` | Number of nodes that serve as just master with no etcd. These can be provisioned with or without floating IP addresses |
  171. |`number_of_etcd` | Number of pure etcd nodes |
  172. |`number_of_k8s_nodes`, `number_of_k8s_nodes_no_floating_ip` | Kubernetes worker nodes. These can be provisioned with or without floating ip addresses. |
  173. |`number_of_bastions` | Number of bastion hosts to create. Scripts assume this is really just zero or one |
  174. |`number_of_gfs_nodes_no_floating_ip` | Number of gluster servers to provision. |
  175. | `gfs_volume_size_in_gb` | Size of the non-ephemeral volumes to be attached to store the GlusterFS bricks |
  176. |`supplementary_master_groups` | To add ansible groups to the masters, such as `kube-node` for tainting them as nodes, empty by default. |
  177. |`supplementary_node_groups` | To add ansible groups to the nodes, such as `kube-ingress` for running ingress controller pods, empty by default. |
  178. #### Terraform state files
  179. In the cluster's inventory folder, the following files might be created (either by Terraform
  180. or manually), to prevent you from pushing them accidentally they are in a
  181. `.gitignore` file in the `terraform/openstack` directory :
  182. * `.terraform`
  183. * `.tfvars`
  184. * `.tfstate`
  185. * `.tfstate.backup`
  186. You can still add them manually if you want to.
  187. ### Initialization
  188. Before Terraform can operate on your cluster you need to install the required
  189. plugins. This is accomplished as follows:
  190. ```ShellSession
  191. $ cd inventory/$CLUSTER
  192. $ terraform init ../../contrib/terraform/openstack
  193. ```
  194. This should finish fairly quickly telling you Terraform has successfully initialized and loaded necessary modules.
  195. ### Provisioning cluster
  196. You can apply the Terraform configuration to your cluster with the following command
  197. issued from your cluster's inventory directory (`inventory/$CLUSTER`):
  198. ```ShellSession
  199. $ terraform apply -var-file=cluster.tf ../../contrib/terraform/openstack
  200. ```
  201. if you chose to create a bastion host, this script will create
  202. `contrib/terraform/openstack/k8s-cluster.yml` with an ssh command for Ansible to
  203. be able to access your machines tunneling through the bastion's IP address. If
  204. you want to manually handle the ssh tunneling to these machines, please delete
  205. or move that file. If you want to use this, just leave it there, as ansible will
  206. pick it up automatically.
  207. ### Destroying cluster
  208. You can destroy your new cluster with the following command issued from the cluster's inventory directory:
  209. ```ShellSession
  210. $ terraform destroy -var-file=cluster.tf ../../contrib/terraform/openstack
  211. ```
  212. If you've started the Ansible run, it may also be a good idea to do some manual cleanup:
  213. * remove SSH keys from the destroyed cluster from your `~/.ssh/known_hosts` file
  214. * clean up any temporary cache files: `rm /tmp/$CLUSTER-*`
  215. ### Debugging
  216. You can enable debugging output from Terraform by setting
  217. `OS_DEBUG` to 1 and`TF_LOG` to`DEBUG` before running the Terraform command.
  218. ### Terraform output
  219. Terraform can output values that are useful for configure Neutron/Octavia LBaaS or Cinder persistent volume provisioning as part of your Kubernetes deployment:
  220. - `private_subnet_id`: the subnet where your instances are running is used for `openstack_lbaas_subnet_id`
  221. - `floating_network_id`: the network_id where the floating IP are provisioned is used for `openstack_lbaas_floating_network_id`
  222. ## Ansible
  223. ### Node access
  224. #### SSH
  225. Ensure your local ssh-agent is running and your ssh key has been added. This
  226. step is required by the terraform provisioner:
  227. ```
  228. $ eval $(ssh-agent -s)
  229. $ ssh-add ~/.ssh/id_rsa
  230. ```
  231. If you have deployed and destroyed a previous iteration of your cluster, you will need to clear out any stale keys from your SSH "known hosts" file ( `~/.ssh/known_hosts`).
  232. #### Bastion host
  233. Bastion access will be determined by:
  234. - Your choice on the amount of bastion hosts (set by `number_of_bastions` terraform variable).
  235. - The existence of nodes/masters with floating IPs (set by `number_of_k8s_masters`, `number_of_k8s_nodes`, `number_of_k8s_masters_no_etcd` terraform variables).
  236. If you have a bastion host, your ssh traffic will be directly routed through it. This is regardless of whether you have masters/nodes with a floating IP assigned.
  237. If you don't have a bastion host, but at least one of your masters/nodes have a floating IP, then ssh traffic will be tunneled by one of these machines.
  238. So, either a bastion host, or at least master/node with a floating IP are required.
  239. #### Test access
  240. Make sure you can connect to the hosts. Note that Container Linux by CoreOS will have a state `FAILED` due to Python not being present. This is okay, because Python will be installed during bootstrapping, so long as the hosts are not `UNREACHABLE`.
  241. ```
  242. $ ansible -i inventory/$CLUSTER/hosts -m ping all
  243. example-k8s_node-1 | SUCCESS => {
  244. "changed": false,
  245. "ping": "pong"
  246. }
  247. example-etcd-1 | SUCCESS => {
  248. "changed": false,
  249. "ping": "pong"
  250. }
  251. example-k8s-master-1 | SUCCESS => {
  252. "changed": false,
  253. "ping": "pong"
  254. }
  255. ```
  256. If it fails try to connect manually via SSH. It could be something as simple as a stale host key.
  257. ### Configure cluster variables
  258. Edit `inventory/$CLUSTER/group_vars/all.yml`:
  259. - Set variable **bootstrap_os** appropriately for your desired image:
  260. ```
  261. # Valid bootstrap options (required): ubuntu, coreos, centos, none
  262. bootstrap_os: coreos
  263. ```
  264. - **bin_dir**:
  265. ```
  266. # Directory where the binaries will be installed
  267. # Default:
  268. # bin_dir: /usr/local/bin
  269. # For Container Linux by CoreOS:
  270. bin_dir: /opt/bin
  271. ```
  272. - and **cloud_provider**:
  273. ```
  274. cloud_provider: openstack
  275. ```
  276. Edit `inventory/$CLUSTER/group_vars/k8s-cluster.yml`:
  277. - Set variable **kube_network_plugin** to your desired networking plugin.
  278. - **flannel** works out-of-the-box
  279. - **calico** requires [configuring OpenStack Neutron ports](/docs/openstack.md) to allow service and pod subnets
  280. ```
  281. # Choose network plugin (calico, weave or flannel)
  282. # Can also be set to 'cloud', which lets the cloud provider setup appropriate routing
  283. kube_network_plugin: flannel
  284. ```
  285. - Set variable **resolvconf_mode**
  286. ```
  287. # Can be docker_dns, host_resolvconf or none
  288. # Default:
  289. # resolvconf_mode: docker_dns
  290. # For Container Linux by CoreOS:
  291. resolvconf_mode: host_resolvconf
  292. ```
  293. ### Deploy Kubernetes
  294. ```
  295. $ ansible-playbook --become -i inventory/$CLUSTER/hosts cluster.yml
  296. ```
  297. This will take some time as there are many tasks to run.
  298. ## Kubernetes
  299. ### Set up kubectl
  300. 1. [Install kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) on your workstation
  301. 2. Add a route to the internal IP of a master node (if needed):
  302. ```
  303. sudo route add [master-internal-ip] gw [router-ip]
  304. ```
  305. or
  306. ```
  307. sudo route add -net [internal-subnet]/24 gw [router-ip]
  308. ```
  309. 3. List Kubernetes certificates & keys:
  310. ```
  311. ssh [os-user]@[master-ip] sudo ls /etc/kubernetes/ssl/
  312. ```
  313. 4. Get `admin`'s certificates and keys:
  314. ```
  315. ssh [os-user]@[master-ip] sudo cat /etc/kubernetes/ssl/admin-[cluster_name]-k8s-master-1-key.pem > admin-key.pem
  316. ssh [os-user]@[master-ip] sudo cat /etc/kubernetes/ssl/admin-[cluster_name]-k8s-master-1.pem > admin.pem
  317. ssh [os-user]@[master-ip] sudo cat /etc/kubernetes/ssl/ca.pem > ca.pem
  318. ```
  319. 5. Configure kubectl:
  320. ```ShellSession
  321. $ kubectl config set-cluster default-cluster --server=https://[master-internal-ip]:6443 \
  322. --certificate-authority=ca.pem
  323. $ kubectl config set-credentials default-admin \
  324. --certificate-authority=ca.pem \
  325. --client-key=admin-key.pem \
  326. --client-certificate=admin.pem
  327. $ kubectl config set-context default-system --cluster=default-cluster --user=default-admin
  328. $ kubectl config use-context default-system
  329. ```
  330. 7. Check it:
  331. ```
  332. kubectl version
  333. ```
  334. If you are using floating ip addresses then you may get this error:
  335. ```
  336. Unable to connect to the server: x509: certificate is valid for 10.0.0.6, 10.0.0.6, 10.233.0.1, 127.0.0.1, not 132.249.238.25
  337. ```
  338. You can tell kubectl to ignore this condition by adding the
  339. `--insecure-skip-tls-verify` option.
  340. ## GlusterFS
  341. GlusterFS is not deployed by the standard`cluster.yml` playbook, see the
  342. [GlusterFS playbook documentation](../../network-storage/glusterfs/README.md)
  343. for instructions.
  344. Basically you will install Gluster as
  345. ```ShellSession
  346. $ ansible-playbook --become -i inventory/$CLUSTER/hosts ./contrib/network-storage/glusterfs/glusterfs.yml
  347. ```
  348. ## What's next
  349. Try out your new Kubernetes cluster with the [Hello Kubernetes service](https://kubernetes.io/docs/tasks/access-application-cluster/service-access-application-cluster/).