hello, is there any way to change resources for th...
# rke2
n
hello, is there any way to change resources for the
kube-proxy
static pod?
Copy code
# /etc/rancher/rke2/config.yaml
control-plane-resource-requests:
  - kube-proxy-cpu=500m
  - kube-proxy-memory=512M
control-plane-resource-limits:
  - kube-proxy-cpu=1
  - kube-proxy-memory=1G
n
thank you. my bad, I knew about control-plane-resources but did not realized they are used also for kube-proxy (as this is not only control-plane pod)
c
Yeah it's kinda the odd man out there. Originally kube-proxy was a helm chart, but that wasn't quite flexible enough. So now it's a static pod like all the control-plane stuff. If we'd known we were going to do that we might have named the flags differently.
1