anybody know if there is an easy way to recreate t...
# general
e
anybody know if there is an easy way to recreate the k3d-proxy? I have been tooling around with trying to run our product in a k3d enviro and had used the k3d node edit --port-add options...well after a restart/reboot...things eventually came back up in k3s container (via exec -it kubectl get pods -- after having to override the resolv.conf) but the serverlb container continued to fail to start...the docs have this little tidbit:
Copy code
- can be used for multiple port-mappings to one or more nodes in your cluster
       - that way, port-mappings can also easily be added/removed after the cluster creation, as we can simply re-create the proxy without affecting cluster state
which led me to believe if i just deleted the lb container it would recreate on start / stop....but alas it did not...any tips or suggestions would be greatly appreciately...i've even tried hand rolling a docker run command for it but that gets stuck on values.yaml which I assume is injected from someplace i am missing...thanks in advance!
w
Nothing built-in. You can hand roll it with a docker run command, but have to get a bunch of things right (env vars, docker network, etc.). The values.yaml is written into a specific place inside the k3d-proxy container and then picked up by confd. I cannot tell you from memory where exactly that is, but you can probably create another cluster and inspect the config on the serverlb there.