mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-26 23:29:33 +01:00
0120b9f38d
* Drop support for `cluster_domain_suffix` customization and always use `cluster.local`. Many components in the Kubernetes ecosystem assume this default suffix and its very rare to be setting a special value here these days * Cleanup a few variables that are seldom used
23 lines
637 B
HCL
23 lines
637 B
HCL
module "workers" {
|
|
source = "./workers"
|
|
name = var.cluster_name
|
|
cluster_name = var.cluster_name
|
|
|
|
# GCE
|
|
region = var.region
|
|
network = google_compute_network.network.name
|
|
worker_count = var.worker_count
|
|
machine_type = var.worker_type
|
|
os_image = var.os_image
|
|
disk_size = var.worker_disk_size
|
|
preemptible = var.worker_preemptible
|
|
|
|
# configuration
|
|
kubeconfig = module.bootstrap.kubeconfig-kubelet
|
|
ssh_authorized_key = var.ssh_authorized_key
|
|
service_cidr = var.service_cidr
|
|
snippets = var.worker_snippets
|
|
node_labels = var.worker_node_labels
|
|
}
|
|
|