2019-09-07 13:38:51 -07:00
|
|
|
# Kubernetes assets (kubeconfig, manifests)
|
2019-09-14 16:24:32 -07:00
|
|
|
module "bootstrap" {
|
2024-07-25 21:41:54 -07:00
|
|
|
source = "git::https://github.com/poseidon/terraform-render-bootstrap.git?ref=1609060f4f138f3b3aef74a9e5494e0fe831c423"
|
2017-07-29 11:35:53 -07:00
|
|
|
|
2019-05-27 15:37:36 -07:00
|
|
|
cluster_name = var.cluster_name
|
|
|
|
api_servers = [format("%s.%s", var.cluster_name, var.dns_zone)]
|
|
|
|
etcd_servers = digitalocean_record.etcds.*.fqdn
|
2019-05-06 00:38:23 -07:00
|
|
|
|
Introduce the component system for managing pre-installed addons
* Previously: Typhoon provisions clusters with kube-system components
like CoreDNS, kube-proxy, and a chosen CNI provider (among flannel,
Calico, or Cilium) pre-installed. This is convenient since clusters
come with "batteries included". But it also means upgrading these
components is generally done in lock-step, by upgrading to a new
Typhoon / Kubernetes release
* It can be valuable to manage these components with a separate
plan/apply process or through automations and deploy systems. For
example, this allows managing CoreDNS separately from the cluster's
lifecycle.
* These "components" will continue to be pre-installed by default,
but a new `components` variable allows them to be disabled and
managed as "addons", components you apply after cluster creation
and manage on a rolling basis. For some of these, we may provide
Terraform modules to aide in managing these components.
```
module "cluster" {
# defaults
components = {
enable = true
coredns = {
enable = true
}
kube_proxy = {
enable = true
}
# Only the CNI set in var.networking will be installed
flannel = {
enable = true
}
calico = {
enable = true
}
cilium = {
enable = true
}
}
}
```
An earlier variable `install_container_networking = true/false` has
been removed, since it can now be achieved with this more extensible
and general components mechanism by setting the chosen networking
provider enable field to false.
2024-05-18 15:05:33 -07:00
|
|
|
networking = var.networking
|
2019-05-06 00:38:23 -07:00
|
|
|
# only effective with Calico networking
|
|
|
|
network_encapsulation = "vxlan"
|
|
|
|
network_mtu = "1450"
|
|
|
|
|
2019-05-27 15:37:36 -07:00
|
|
|
pod_cidr = var.pod_cidr
|
|
|
|
service_cidr = var.service_cidr
|
|
|
|
cluster_domain_suffix = var.cluster_domain_suffix
|
|
|
|
enable_reporting = var.enable_reporting
|
|
|
|
enable_aggregation = var.enable_aggregation
|
2024-05-12 21:03:40 -07:00
|
|
|
components = var.components
|
2017-07-29 11:35:53 -07:00
|
|
|
}
|
2019-05-27 15:37:36 -07:00
|
|
|
|