Hi, is there any way to dynamically change configurations in /etc/rancher/rke2/config.yaml after installation? Say I have a running RKE2 environment, based on default configurations, node-monitor-grace-period is 40s and default-not-ready-toleration-seconds is 300s. If on a running RKE2 cluster, I want to reduce those values for all pods, what can I do?
Currently the steps I figured out is,
1. change values in /etc/rancher/rke2/config.yaml
2. restart all master nodes to let k8s service load new values
3. cordon & drain all nodes to recreate all pods, so each pod can adopt new values as value for 'tolerations'
But those steps definitely affects running services' availability, so wondering if there is any easier way to make those changes, thanks