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.

152 lines
5.5 KiB

  1. # Kubernetes on Exoscale with Terraform
  2. Provision a Kubernetes cluster on [Exoscale](https://www.exoscale.com/) using Terraform and Kubespray
  3. ## Overview
  4. The setup looks like following
  5. ```text
  6. Kubernetes cluster
  7. +-----------------------+
  8. +---------------+ | +--------------+ |
  9. | | | | +--------------+ |
  10. | API server LB +---------> | | | |
  11. | | | | | Master/etcd | |
  12. +---------------+ | | | node(s) | |
  13. | +-+ | |
  14. | +--------------+ |
  15. | ^ |
  16. | | |
  17. | v |
  18. +---------------+ | +--------------+ |
  19. | | | | +--------------+ |
  20. | Ingress LB +---------> | | | |
  21. | | | | | Worker | |
  22. +---------------+ | | | node(s) | |
  23. | +-+ | |
  24. | +--------------+ |
  25. +-----------------------+
  26. ```
  27. ## Requirements
  28. * Terraform 0.13.0 or newer (0.12 also works if you modify the provider block to include version and remove all `versions.tf` files)
  29. ## Quickstart
  30. NOTE: *Assumes you are at the root of the kubespray repo*
  31. Copy the sample inventory for your cluster and copy the default terraform variables.
  32. ```bash
  33. CLUSTER=my-exoscale-cluster
  34. cp -r inventory/sample inventory/$CLUSTER
  35. cp contrib/terraform/exoscale/default.tfvars inventory/$CLUSTER/
  36. cd inventory/$CLUSTER
  37. ```
  38. Edit `default.tfvars` to match your setup. You MUST, at the very least, change `ssh_public_keys`.
  39. ```bash
  40. # Ensure $EDITOR points to your favorite editor, e.g., vim, emacs, VS Code, etc.
  41. $EDITOR default.tfvars
  42. ```
  43. For authentication you can use the credentials file `~/.cloudstack.ini` or `./cloudstack.ini`.
  44. The file should look like something like this:
  45. ```ini
  46. [cloudstack]
  47. key = <API key>
  48. secret = <API secret>
  49. ```
  50. Follow the [Exoscale IAM Quick-start](https://community.exoscale.com/documentation/iam/quick-start/) to learn how to generate API keys.
  51. ### Encrypted credentials
  52. To have the credentials encrypted at rest, you can use [sops](https://github.com/mozilla/sops) and only decrypt the credentials at runtime.
  53. ```bash
  54. cat << EOF > cloudstack.ini
  55. [cloudstack]
  56. key =
  57. secret =
  58. EOF
  59. sops --encrypt --in-place --pgp <PGP key fingerprint> cloudstack.ini
  60. sops cloudstack.ini
  61. ```
  62. Run terraform to create the infrastructure
  63. ```bash
  64. terraform init ../../contrib/terraform/exoscale
  65. terraform apply -var-file default.tfvars ../../contrib/terraform/exoscale
  66. ```
  67. If your cloudstack credentials file is encrypted using sops, run the following:
  68. ```bash
  69. terraform init ../../contrib/terraform/exoscale
  70. sops exec-file -no-fifo cloudstack.ini 'CLOUDSTACK_CONFIG={} terraform apply -var-file default.tfvars ../../contrib/terraform/exoscale'
  71. ```
  72. You should now have a inventory file named `inventory.ini` that you can use with kubespray.
  73. You can now copy your inventory file and use it with kubespray to set up a cluster.
  74. You can type `terraform output` to find out the IP addresses of the nodes, as well as control-plane and data-plane load-balancer.
  75. It is a good idea to check that you have basic SSH connectivity to the nodes. You can do that by:
  76. ```bash
  77. ansible -i inventory.ini -m ping all
  78. ```
  79. Example to use this with the default sample inventory:
  80. ```bash
  81. ansible-playbook -i inventory.ini ../../cluster.yml -b -v
  82. ```
  83. ## Teardown
  84. The Kubernetes cluster cannot create any load-balancers or disks, hence, teardown is as simple as Terraform destroy:
  85. ```bash
  86. terraform destroy -var-file default.tfvars ../../contrib/terraform/exoscale
  87. ```
  88. ## Variables
  89. ### Required
  90. * `ssh_public_keys`: List of public SSH keys to install on all machines
  91. * `zone`: The zone where to run the cluster
  92. * `machines`: Machines to provision. Key of this object will be used as the name of the machine
  93. * `node_type`: The role of this node *(master|worker)*
  94. * `size`: The size to use
  95. * `boot_disk`: The boot disk to use
  96. * `image_name`: Name of the image
  97. * `root_partition_size`: Size *(in GB)* for the root partition
  98. * `ceph_partition_size`: Size *(in GB)* for the partition for rook to use as ceph storage. *(Set to 0 to disable)*
  99. * `node_local_partition_size`: Size *(in GB)* for the partition for node-local-storage. *(Set to 0 to disable)*
  100. * `ssh_whitelist`: List of IP ranges (CIDR) that will be allowed to ssh to the nodes
  101. * `api_server_whitelist`: List of IP ranges (CIDR) that will be allowed to connect to the API server
  102. * `nodeport_whitelist`: List of IP ranges (CIDR) that will be allowed to connect to the kubernetes nodes on port 30000-32767 (kubernetes nodeports)
  103. ### Optional
  104. * `prefix`: Prefix to use for all resources, required to be unique for all clusters in the same project *(Defaults to `default`)*
  105. An example variables file can be found `default.tfvars`
  106. ## Known limitations
  107. ### Only single disk
  108. Since Exoscale doesn't support additional disks to be mounted onto an instance, this script has the ability to create partitions for [Rook](https://rook.io/) and [node-local-storage](https://kubernetes.io/docs/concepts/storage/volumes/#local).
  109. ### No Kubernetes API
  110. The current solution doesn't use the [Exoscale Kubernetes cloud controller](https://github.com/exoscale/exoscale-cloud-controller-manager).
  111. This means that we need to set up a HTTP(S) loadbalancer in front of all workers and set the Ingress controller to DaemonSet mode.