From d65245dac982f4722f228a6a2bd071b967bcade4 Mon Sep 17 00:00:00 2001 From: Oleksandr Berezovskyi Date: Tue, 10 Feb 2026 10:21:10 +0200 Subject: [PATCH] feat(terraform): allow scheduling on control plane k8s nodes --- terraform/main.tf | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/terraform/main.tf b/terraform/main.tf index f439deb..2fcc8ff 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -60,6 +60,13 @@ data "talos_machine_configuration" "machine-config" { cluster_endpoint = "https://${each.value.hostname}:6443" machine_secrets = talos_machine_secrets.secrets[each.key].machine_secrets + config_patches = [ + yamlencode({ + cluster = { + allowSchedulingOnControlPlanes = true + } + }) + ] } resource "talos_machine_configuration_apply" "talos-config" {