mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-07 14:03:01 +07:00
Reduce node count to 2
This commit is contained in:
parent
04f2b9efe0
commit
ad8274a4b1
@ -45,7 +45,7 @@ resource "lxd_profile" "kubernetes" {
|
||||
}
|
||||
|
||||
resource "lxd_container" "kubernetes_controllers" {
|
||||
count = 3
|
||||
count = 1
|
||||
name = "controller-${count.index}"
|
||||
image = "images:ubuntu/18.04"
|
||||
ephemeral = false
|
||||
@ -53,7 +53,7 @@ resource "lxd_container" "kubernetes_controllers" {
|
||||
}
|
||||
|
||||
resource "lxd_container" "kubernetes_workers" {
|
||||
count = 3
|
||||
count = 1
|
||||
name = "worker-${count.index}"
|
||||
image = "images:ubuntu/18.04"
|
||||
ephemeral = false
|
||||
|
Loading…
Reference in New Issue
Block a user