quaint-soccer-60531
05/08/2025, 12:02 PMv2.5.17
and are aware that we need to upgrade it. Meanwhile, I'm trying to apply labels to my machines created by Rancher at Hetzner Cloud. But it doesn't work. 🧵 👇quaint-soccer-60531
05/08/2025, 12:09 PMterraform plan
shows me that it wants to add the required configuration, eg.:
...
~ server_labels = {
+ "component" = "worker-pool"
+ "env" = "stag"
+ "pool" = "worker-pool-b"
}
...
But it does not show up in the hetznerConfig
section of the node template's API object in Rancher. I have already upgraded Hetzner Cloud Docker machine driver to `v3.6.0` which is supposed to support server labels. But I guess as long as they do not even show up in the node template there isn't much it can do.breezy-secretary-14861
05/09/2025, 5:57 PMquaint-soccer-60531
05/12/2025, 7:38 AMbreezy-secretary-14861
05/12/2025, 5:41 PMresource "aws_autoscaling_group" "<unique ASG name>" {
<.... some other configuration fields... >
launch_template {
id = aws_launch_template.<template name>.id
version = "$Latest"
}
tag {
key = "Environment"
value = "Dev"
propagate_at_launch = "true"
}
quaint-soccer-60531
05/13/2025, 11:11 AM