How to update proxy settings for running cluster? #7835
-
I have a Talos v1.5.3 cluster consists of 1 control plane and 1 worker. I'm trying to set According to ProxyConfig section, this can be done using So, here is my controlplane.yaml file: # lines removed for brevity
cluster:
proxy:
image: registry.k8s.io/kube-proxy:v1.28.2
extraArgs:
metrics-bind-address: "0.0.0.0:10249" When I do However, when I do What else that I've tried but didn't work (in random order):
Contents of patch.yaml file: cluster:
proxy:
image: registry.k8s.io/kube-proxy:v1.28.2
extraArgs:
metrics-bind-address: "0.0.0.0:10249" Did I miss something? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
There's a caveat here - kube-proxy is a bootstrap manifest, it lives fully in Kubernetes. Talos by default doesn't update them, so you need to run |
Beta Was this translation helpful? Give feedback.
There's a caveat here - kube-proxy is a bootstrap manifest, it lives fully in Kubernetes. Talos by default doesn't update them, so you need to run
talosctl upgrade-k8s
to the same Kubernetes version to get things updated.