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

Clarify IPv6-only docs interface binding #972

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions docs/src/snap/howto/networking/ipv6.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,22 @@ only IPv6 CIDRs are used.
Start by bootstrapping the Kubernetes cluster and providing only IPv6
CIDRs for pods and services:

```{important}
To run an IPv6-only cluster on a host with both IPv4 and IPv6 interfaces,
you must include `--address ::/0` in the bootstrap and join commands.
Without this option, the snap will attempt to bind to the IPv4 interface,
which will fail if only IPv6 CIDRs are configured.
```

```bash
sudo k8s bootstrap --timeout 10m --interactive
```

When prompted, set the pod and service CIDRs to IPv6 ranges. For example:

```
Please set the Pod CIDR: [fd01::/108]
Please set the Service CIDR: [fd98::/108]
Please set the Pod CIDR: fd01::/108
Please set the Service CIDR: fd98::/108
```

Alternatively, these values can be configured in a bootstrap configuration file
Expand Down
Loading