In k8s1.16 when using kubenet and dual-stack, How to config to ping cbr0 gw on another node? In k8s1.16 when using kubenet and dual-stack, How to config to ping cbr0 gw on another node? kubernetes kubernetes

In k8s1.16 when using kubenet and dual-stack, How to config to ping cbr0 gw on another node?


Kubenet is a requirement for enabling IPv6 and as you stated, kubenet have some limitations and here we can read:

Kubenet is a very basic, simple network plugin, on Linux only. It does not, of itself, implement more advanced features like cross-node networking or network policy. It is typically used together with a cloud provider that sets up routing rules for communication between nodes, or in single-node environments.

I would like to highlight that kubenet is not creating routes automatically for you.

Based on this information we can understand that in your scenario this is the expected behavior and there is no problem happening. If you want to keep going in this direction you need to create routes manually.

It's important to remember this is an alpha feature (WIP).

There is also some work being done to make it possible to bootstrap a Kubernetes cluster with Dual Stack using Kubeadm, but it's not usable yet and there is no ETA for it.

There are some examples of IPv6 and dual-stack setups with other networking plugins in this repository, but it still require adding routes manually.

This project serves two primary purposes: (i) study and validate ipv6 support in kubernetes and associated plugins (ii) provide a dev environment for implementing and testing additional functionality (e.g.dual-stack)