Would it be possible to enact Talos upgrades just by specifying a new image ID? By default, it seems that all VMs would be destroyed and recreated, which would probably break the cluster.
Terraform gives an example of zero downtime upgrades that utilises create_before_destroy = true combined with a local-exec to run a healthcheck before the original is destroyed:
Would it be possible to use local-exec to execute talosctl health? It would probably fail during initial cluster bootstrapping, so it'd need to workaround that to only run on upgrades.
Would it be possible to enact Talos upgrades just by specifying a new image ID? By default, it seems that all VMs would be destroyed and recreated, which would probably break the cluster.
Terraform gives an example of zero downtime upgrades that utilises
create_before_destroy = true
combined with alocal-exec
to run a healthcheck before the original is destroyed:Would it be possible to use
local-exec
to executetalosctl health
? It would probably fail during initial cluster bootstrapping, so it'd need to workaround that to only run on upgrades.