From 1e6b783cada393e1f0c396bafff1b91462c1b8fc Mon Sep 17 00:00:00 2001 From: lukasmetzner Date: Tue, 1 Jul 2025 11:04:52 +0200 Subject: [PATCH] fix: k3sup breaking changes k3sup removed a flag in its latest release, which causes our CIs to break. This happens, because we currently do not pin the k3sup version during installation. --- main-setup.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main-setup.tf b/main-setup.tf index d592187..e633a41 100644 --- a/main-setup.tf +++ b/main-setup.tf @@ -31,7 +31,7 @@ resource "terraform_data" "k3sup_control" { provisioner "local-exec" { command = <<-EOT - k3sup install --print-config=false \ + k3sup install \ --ssh-key='${local_sensitive_file.ssh_private.filename}' \ --ip='${hcloud_server.control.ipv4_address}' \ --k3s-channel='${var.k3s_channel}' \