docs/getting-started/rkt: Add default route to k8s_cluster.conf example

This commit is contained in:
Josh Wood 2016-01-20 17:25:50 -08:00
parent d6d2f6f203
commit 54a416fcc1

View File

@ -97,7 +97,10 @@ $ cat <<EOF >/etc/rkt/net.d/k8s_cluster.conf
"type": "host-local", "type": "host-local",
"subnet": "10.255.228.1/24", "subnet": "10.255.228.1/24",
"gateway": "10.255.228.1" "gateway": "10.255.228.1"
} },
"routes": [
{ "dst": "0.0.0.0/0" }
]
} }
EOF EOF
``` ```