Skip to content

Commit

Permalink
Merge pull request #2 from borball/main
Browse files Browse the repository at this point in the history
add dural stack example
  • Loading branch information
borball authored Jan 14, 2022
2 parents 69437cb + 7da41f1 commit bd79887
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,3 +130,43 @@ clusteroperator.config.openshift.io/service-ca 4
clusteroperator.config.openshift.io/storage 4.9.5 True False False 8h

```


## Dual statck cluster setup

Only thing different is in file assets/install-config.yaml, both IPv4 and IPv6 CIDR shall be configured, following is an example:

```yaml
networking:
networkType: OVNKubernetes
machineNetwork:
- cidr: 10.19.136.0/21
- cidr: 2620:52:0:1388::/64
clusterNetwork:
- cidr: 10.132.0.0/14
hostPrefix: 23
- cidr: fd01::/48
hostPrefix: 64
serviceNetwork:
- 172.30.0.0/16
- fd02::/112

```

## Pure IPv6 cluster setup

The SNO node shall have a pure IPv6 configured, similarly the IPv6 CIDR shall be configured in file assets/install-config.yaml, following is an example:


```yaml
networking:
networkType: OVNKubernetes
machineNetwork:
- cidr: 2620:52:0:1388::/64
clusterNetwork:
- cidr: fd01::/48
hostPrefix: 64
serviceNetwork:
- fd02::/112

```

0 comments on commit bd79887

Please sign in to comment.