Upgrade kubernetes controlplane without upgrading etcd pod. I was thinking these steps:
- kubectl -n kube-system get po etcd-controlplane -o yaml > etcd-po-backup.yaml
- kubeadm upgrade apply 1.21.0
- Restore the old etcd pod from the yaml file from Step 1.
Do you see any issues with these steps? Any other suggestions or thoughts?
Thanks