Hi - Question about HTTP Proxy in RKE2: In the RKE...
# rke2
a
Hi - Question about HTTP Proxy in RKE2: In the RKE2 docs it says that
RKE2 will automatically add the cluster internal Pod and Service IP ranges and cluster DNS domain to the list of NO_PROXY entries.
However I don't see the Cluster/Service CIDR ranges added to
/etc/default/rke2-server
. Just the ones I added myself. Anything I've missed?
c
That doesn’t mean that RKE2 rewrites the systemd unit or env file to set them them. They are added to the env var within the running process, which also passes that value on to child processes. You would need to examine
/proc/RKE2-PID/environ
to see that the value at runtime.
a
Thanks! I'll check it out
Yep, there it is - just not on the main PID. Thanks for the help!