Replies: 1 comment 2 replies
-
You can also use If you are looking for a better way to manage machine configuration combined with upgrades, you can take a look at Omni. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Last night I ran
talosctl --nodes <controlplane node> upgrade-k8s --to 1.31.1
to upgrade from 1.30.My machineconfigs are generated with Ansible for each node using templates and a patch file. During that process, it removes all the comments from the original file. The file that remains contains only the config parts that I need. This keeps the config clean and readable. This is pushed to the nodes. When using
talosctl edit mc
, its short and easy to read.What happened last night is that after the kubernetes upgrade, the 2 worker nodes have all the comments added back to the machineconfig, while the 3 control planes remain without comments.
Besides the point that its just comments and doesn't do anything, I find it very weird that it did this and even weirder it would do this only on the workers and not on the control planes.
No harm done but its a bit of a hassle to clean them again and push the mc's back to the nodes. I wanted to report to make you aware of this as I believe this shouldn't have happened.
Beta Was this translation helpful? Give feedback.
All reactions