[tech] improve cluster vm: ram 2 -> 4, hdd -> ssd (20 -> 40)

This commit is contained in:
2023-04-01 09:10:14 +07:00
parent 4b050e0cba
commit b050b04af8

View File

@@ -10,13 +10,14 @@ resource "yandex_compute_instance" "k8s-cluster" {
resources {
cores = 2
memory = 2
memory = 4
}
boot_disk {
initialize_params {
image_id = "fd8kdq6d0p8sij7h5qe3" # ubuntu-20-04-lts-v20220822
size = "20"
size = "40"
type = "network-ssd"
}
}