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

Enable support for IPv6 for Kubernetes #778

Open
mridang opened this issue Jan 24, 2025 · 1 comment
Open

Enable support for IPv6 for Kubernetes #778

mridang opened this issue Jan 24, 2025 · 1 comment
Assignees
Labels
community_new New idea raised by a community contributor

Comments

@mridang
Copy link

mridang commented Jan 24, 2025

Tell us about your request

Docker Desktop now seems to be support IPv6 networking but K8 doesn't seem to support it as yet. docker/for-mac#1432

Which service(s) is this request for?

Docker Desktop for Mac.

Tell us about the problem you're trying to solve. What are you trying to do, and why is it hard?

I would like to be able to connect to the internet from K8 pods using IPv6.

Are you currently working around the issue?

No.

Additional context

This could be fixed by simply editing the CNI configuration on the host VM. I've tried it but seems to revert back when Docker Desktop for Mac restarts.

{
   "cniVersion":"0.3.1",
   "name":"default",
   "plugins":[
      {
         "type":"bridge",
         "bridge":"cni0",
         "isDefaultGateway":true,
         "ipMasq":true,
         "hairpinMode":true,
         "ipam":{
            "type":"host-local",
            "subnet":"10.1.0.0/16",
            "gateway":"10.1.0.1",
         },
         "dns":{
            "nameservers":[
               "10.1.0.1"
            ]
         }
      },
      {
         "type":"portmap",
         "capabilities":{
            "portMappings":true
         },
         "snat":true
      }
   ]
}
@mridang mridang added the community_new New idea raised by a community contributor label Jan 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
community_new New idea raised by a community contributor
Projects
None yet
Development

No branches or pull requests

3 participants
@mridang @colinhemmings and others