Resolve the local cluster container registry without needing a port? #698
-
From the guide for local setup, I see I have to get the port for my registry using This works, but it's inconvenient. Is there any way to enable this workflow without using ports in the docker image tag? I think I might have a workaround for this... still experimenting. However,
(from https://k3d.io/usage/guides/registries/#create-a-dedicated-registry-together-with-your-cluster) Is there any way to make the host port mapping static instead of random? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @neezer , thanks for starting this discussion!
Unfortunately not, as in the end, it's plain old networking and as long as it's not a standard port (like
This part I'd like to make a bit more convenient, by including the port in the log output at least.
Yep, create the registry standalone (i.e. not with |
Beta Was this translation helpful? Give feedback.
Hi @neezer , thanks for starting this discussion!
Unfortunately not, as in the end, it's plain old networking and as long as it's not a standard port (like
80
for http or443
for https), you'll have to specify a port (or setup some fancy proxy setup) 🤔This part I'd like to make a bit more convenient, by including the port in the log output at least.
Yep, create the registry standalone (i.e. not with
--registry-create
which is intentionally s…