feat: Initial k8s cluster setup
This commit is contained in:
parent
dc71408e1b
commit
5def74736b
6 changed files with 233 additions and 0 deletions
|
|
@ -0,0 +1,15 @@
|
|||
variable "controlplanes" {
|
||||
description = "Control plane node configuration"
|
||||
type = object({
|
||||
cpu = number
|
||||
memory = number
|
||||
disk = string
|
||||
storagepool = string
|
||||
talos_version = string
|
||||
nodes = list(object({
|
||||
name = string
|
||||
ip_address = string
|
||||
}))
|
||||
})
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue