Change network from 172.18 => 172.20

This commit is contained in:
Jedrzej Nowak 2016-04-13 14:36:01 +02:00
parent b97082dbd2
commit 009a29dd80
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ input:
value: 16
network:
schema: str!
value: '172.18.0.0'
value: '172.20.0.0'
service_cluster_ip_range:
schema: str!
value: 10.254.0.0/16

View File

@ -68,7 +68,7 @@ def setup_nodes(num=1):
'kube-node-%d-iface' % j,
'k8s/virt_iface',
{'name': 'cbr0',
'ipaddr': '172.18.%d.1' % (i + 1), # TODO(jnowak) support config for it
'ipaddr': '172.20.%d.1' % (i + 1), # TODO(jnowak) support config for it
'onboot': 'yes',
'bootproto': 'static',
'type': 'Bridge'})['kube-node-%d-iface' % j]