From 75b23999a514c951f18466647c9509dd5365acb6 Mon Sep 17 00:00:00 2001 From: clyhtsuriva Date: Wed, 26 Mar 2025 21:22:43 +0100 Subject: tofu: increase CPU+RAM & decrease count of k3s workers --- opentofu/main.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/opentofu/main.tf b/opentofu/main.tf index 5cc3adc..95ff76b 100644 --- a/opentofu/main.tf +++ b/opentofu/main.tf @@ -107,7 +107,7 @@ resource "proxmox_virtual_environment_vm" "k3s_master" { # Worker Nodes resource "proxmox_virtual_environment_vm" "k3s_worker" { - count = 3 + count = 2 name = "k3s-worker-${count.index}" node_name = var.proxmox_node tags = ["debian", "k8s", "k3s_worker"] @@ -122,13 +122,13 @@ resource "proxmox_virtual_environment_vm" "k3s_worker" { } cpu { - cores = 1 + cores = 4 sockets = 1 type = "host" } memory { - dedicated = 512 + dedicated = 4096 } disk { -- cgit v1.2.3 ture/data_storage'>feature/data_storage Yet another android myanimelist client
summaryrefslogtreecommitdiffstats
path: root/app/src/main/java/xyz/adjutor/aniki/presentation/model/manga/TopManga.kt (unfollow)
Commit message (Expand)AuthorFilesLines
2021-05-13DetailSearchMangaController.kt and activity OKClyhtsuriva2-59/+80
2021-05-13DetailTopAnimeController.kt and the activity are working fine.Clyhtsuriva2-89/+111
2021-05-13Redefining how the controller is started.Clyhtsuriva2-5/+2
2021-05-13DetailTopMangaController.kt and the activity are working fine.Clyhtsuriva2-91/+116
2021-05-12creating empty controller files for detail pagesClyhtsuriva4-0/+12
2021-05-12creating anime and manga packages for controllersClyhtsuriva8-8/+8