mirror of https://github.com/kubernetes/kops.git
27 lines
645 B
Markdown
27 lines
645 B
Markdown
# Flannel
|
|
|
|
## Installing
|
|
|
|
To install [flannel](https://github.com/coreos/flannel) - use `--networking flannel-vxlan` (recommended) or `--networking flannel-udp` (legacy). `--networking flannel` now selects `flannel-vxlan`.
|
|
|
|
```sh
|
|
export ZONES=mylistofzone
|
|
kops create cluster \
|
|
--zones $ZONES \
|
|
--networking flannel \
|
|
--yes \
|
|
--name myclustername.mydns.io
|
|
```
|
|
|
|
## Configuring
|
|
|
|
### Configuring Flannel iptables resync period
|
|
|
|
As of kOps 1.12.0, Flannel iptables resync option is configurable via editing a cluster and adding
|
|
`iptablesResyncSeconds` option to spec:
|
|
|
|
```yaml
|
|
networking:
|
|
flannel:
|
|
iptablesResyncSeconds: 360
|
|
``` |