Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: integrate registry proxy in k3d #1555

Open
iwilltry42 opened this issue Feb 14, 2025 · 1 comment
Open

Feat: integrate registry proxy in k3d #1555

iwilltry42 opened this issue Feb 14, 2025 · 1 comment
Labels
component/registry k3d manged registry enhancement New feature or request priority/high

Comments

@iwilltry42
Copy link
Member

iwilltry42 commented Feb 14, 2025

Original issue comment below:

I ran into this issue as well (came up because I kept hitting docker.io rate limits), so created a custom registry that proxies all image requests to the host docker instance: https://github.com/ligfx/k3d-registry-dockerd

I use it like so:

configfile=$(mktemp)
cat << HERE > "$configfile"
apiVersion: k3d.io/v1alpha5
kind: Simple
registries:
  create:
    image: ligfx/k3d-registry-dockerd:v0.1
    proxy:
      remoteURL: "*"
    volumes:
      - /var/run/docker.sock:/var/run/docker.sock
HERE
k3d cluster create mytest --config "$configfile"

It's also had the side effect of significantly speeding up cluster creation and pod rollout, which is nice!

Originally posted by @ligfx in #19 (comment)

@iwilltry42 iwilltry42 added component/registry k3d manged registry enhancement New feature or request priority/high labels Feb 14, 2025
@iwilltry42 iwilltry42 changed the title # Feat: integrate registry proxy in k3d I ran into this issue as well (came up because I kept hitting docker.io rate limits), so created a custom registry that proxies all image requests to the host docker instance: https://github.com/ligfx/k3d-registry-dockerd Feat: integrate registry proxy in k3d Feb 14, 2025
@iwilltry42
Copy link
Member Author

@ligfx if you're up for it, we could move your repo over to the k3d-io org or even integrate it into the k3d repo (just like proxy and lb).
Then we add the builds to the official CI pipeline.

Feature wise I would add a flag to cluster create that will use your registry.
Same for registry create.
So just shortcuts to what you'd else do manually.

I'd assign you as the code owner of that part, no matter where it lands.

WDYT?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
component/registry k3d manged registry enhancement New feature or request priority/high
Projects
None yet
Development

No branches or pull requests

1 participant