~bitfehler/k8s.sr.ht

1177c4c167acc7605bd01586a6042c86f3d651ed — Conrad Hoffmann 1 year, 4 months ago 927cce1
Document routing for service network
1 files changed, 7 insertions(+), 6 deletions(-)

M README.md
M README.md => README.md +7 -6
@@ 100,16 100,17 @@ Subnets:

### Routing

Add routes on each node for the other two. E.g. on patchouli2, in
`/etc/network/interfaces`:
Add routes on each node for the service network and the pod network parts of
the other nodes. E.g. on sakuya2, in `/etc/network/interfaces`:

```
auto eth1
iface eth1 inet static
    address 10.0.0.132
    netmask 255.255.255.0
    up ip route add 10.200.134.0/24 via 10.0.0.134
    up ip route add 10.200.135.0/24 via 10.0.0.135
	address 10.0.0.134
	netmask 255.255.255.0
	up ip route add 10.200.132.0/24 via 10.0.0.132
	up ip route add 10.200.135.0/24 via 10.0.0.135
    up ip route add 10.32.0.0/24 via 10.200.134.1
```

## Installation