
libvirt-coreos is a cluster provider for kubernetes that starts local VMs and runs kubernetes on it. Its goal is to provide a multi-machines environment to develop and test kubernetes. The purpose is mostly the same as the vagrant provider but with a big focus on efficiency. The vagrant cluster takes a long time to boot and consumes a huge amount of disk space. libvirt-coreos aims at being cheaper. As a consequence, libvirt-coreos allows to start bigger clusters with more minions than vagrant.
12 lines
266 B
XML
12 lines
266 B
XML
<network>
|
|
<name>kubernetes_global</name>
|
|
<forward mode='nat'>
|
|
<nat>
|
|
<port start='1024' end='65535'/>
|
|
</nat>
|
|
</forward>
|
|
<bridge name='virbr_kub_gl' stp='off' delay='0'/>
|
|
<ip address='192.168.10.254' netmask='255.255.255.0'>
|
|
</ip>
|
|
</network>
|