Skip to content

Commit 83f9cda

Browse files
authored
fix: k3sup breaking changes (#117)
k3sup [removed a flag](alexellis/k3sup@0.13.9...0.13.10#diff-cfcd5a78ad9476ee24d7680dd023e71136f329c771d76ae6837ba68320b6379cL161-L165) in its latest release, which causes our CIs to break. This happens, because we currently do not pin the k3sup version during installation. We previously disabled printing the config file, but this whole feature got removed, so we can safely remove the flag.
1 parent 62f42c1 commit 83f9cda

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

main-setup.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ resource "terraform_data" "k3sup_control" {
3131

3232
provisioner "local-exec" {
3333
command = <<-EOT
34-
k3sup install --print-config=false \
34+
k3sup install \
3535
--ssh-key='${local_sensitive_file.ssh_private.filename}' \
3636
--ip='${hcloud_server.control.ipv4_address}' \
3737
--k3s-channel='${var.k3s_channel}' \

0 commit comments

Comments
 (0)