mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 07:29:32 +01:00
9b733d79c7
* https://github.com/projectcalico/calico/releases/tag/v3.24.3 * Add patch to allow Kubelet kubeconfig to drain nodes if desired in addition to just deleting them in shutdown integrations. See https://github.com/poseidon/terraform-render-bootstrap/pull/330
22 lines
714 B
HCL
22 lines
714 B
HCL
# Kubernetes assets (kubeconfig, manifests)
|
|
module "bootstrap" {
|
|
source = "git::https://github.com/poseidon/terraform-render-bootstrap.git?ref=8fb30b7732f360d3fe6a73a938f835762b01aa03"
|
|
|
|
cluster_name = var.cluster_name
|
|
api_servers = [format("%s.%s", var.cluster_name, var.dns_zone)]
|
|
etcd_servers = digitalocean_record.etcds.*.fqdn
|
|
|
|
networking = var.networking
|
|
|
|
# only effective with Calico networking
|
|
network_encapsulation = "vxlan"
|
|
network_mtu = "1450"
|
|
|
|
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
|
|
}
|
|
|