Skip to content

Commit

Permalink
Add kvm network name validation
Browse files Browse the repository at this point in the history
  • Loading branch information
josedonizetti committed May 30, 2019
1 parent 722f501 commit 0c367f4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions pkg/drivers/kvm/network.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ func (d *Driver) ensureNetwork() error {

// createNetwork is called during creation of the VM only (and not on start)
func (d *Driver) createNetwork() error {

if d.Network == defaultPrivateNetworkName {
return fmt.Errorf("KVM network can't be named %v. This is the name of the private network created by minikube", defaultPrivateNetworkName)
}

conn, err := getConnection()
if err != nil {
return errors.Wrap(err, "getting libvirt connection")
Expand Down

0 comments on commit 0c367f4

Please sign in to comment.