update
This commit is contained in:
99
kubespray/contrib/terraform/vsphere/variables.tf
Normal file
99
kubespray/contrib/terraform/vsphere/variables.tf
Normal file
@@ -0,0 +1,99 @@
|
||||
## Global ##
|
||||
|
||||
# Required variables
|
||||
|
||||
variable "machines" {
|
||||
description = "Cluster machines"
|
||||
type = map(object({
|
||||
node_type = string
|
||||
ip = string
|
||||
netmask = string
|
||||
}))
|
||||
}
|
||||
|
||||
variable "network" {}
|
||||
|
||||
variable "gateway" {}
|
||||
|
||||
variable "vsphere_datacenter" {}
|
||||
|
||||
variable "vsphere_compute_cluster" {}
|
||||
|
||||
variable "vsphere_datastore" {}
|
||||
|
||||
variable "vsphere_user" {}
|
||||
|
||||
variable "vsphere_password" {}
|
||||
|
||||
variable "vsphere_server" {}
|
||||
|
||||
variable "ssh_public_keys" {
|
||||
description = "List of public SSH keys which are injected into the VMs."
|
||||
type = list(string)
|
||||
}
|
||||
|
||||
variable "template_name" {}
|
||||
|
||||
# Optional variables (ones where reasonable defaults exist)
|
||||
variable "vapp" {
|
||||
default = false
|
||||
}
|
||||
|
||||
variable "interface_name" {
|
||||
default = "ens192"
|
||||
}
|
||||
|
||||
variable "folder" {
|
||||
default = ""
|
||||
}
|
||||
|
||||
variable "prefix" {
|
||||
default = "k8s"
|
||||
}
|
||||
|
||||
variable "inventory_file" {
|
||||
default = "inventory.ini"
|
||||
}
|
||||
|
||||
variable "dns_primary" {
|
||||
default = "8.8.4.4"
|
||||
}
|
||||
|
||||
variable "dns_secondary" {
|
||||
default = "8.8.8.8"
|
||||
}
|
||||
|
||||
variable "firmware" {
|
||||
default = "bios"
|
||||
}
|
||||
|
||||
variable "hardware_version" {
|
||||
default = "15"
|
||||
}
|
||||
|
||||
## Master ##
|
||||
|
||||
variable "master_cores" {
|
||||
default = 4
|
||||
}
|
||||
|
||||
variable "master_memory" {
|
||||
default = 4096
|
||||
}
|
||||
|
||||
variable "master_disk_size" {
|
||||
default = "20"
|
||||
}
|
||||
|
||||
## Worker ##
|
||||
|
||||
variable "worker_cores" {
|
||||
default = 16
|
||||
}
|
||||
|
||||
variable "worker_memory" {
|
||||
default = 8192
|
||||
}
|
||||
variable "worker_disk_size" {
|
||||
default = "100"
|
||||
}
|
||||
Reference in New Issue
Block a user