-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added hyperkit options for enterprise VPN support
The purpose of these changes is to enhance Hyperkit support from the minikube command line for better integration with enterprise networks behind a VPN. uuid: Provide VM UUID to restore MAC address (only supported with Hyperkit driver). vpnkitSock: Location of the VPNKit socket used for networking. If empty, disables Hyperkit VPNKitSock, if 'auto' uses Docker for Mac VPNKit connection, otherwise uses the specified VSock." vsockPorts: List of guest VSock ports that should be exposed as sockets on the host (Only supported on with hyperkit now). Note: tests pass but file: `vendor/github.com/google/certificate-transparency/go/x509/root_darwin.go` has to be edited to correct an issue - not committed since this is in the vendor directory.
- Loading branch information
seborama
committed
May 27, 2018
1 parent
57a4ddc
commit 589bf46
Showing
5 changed files
with
145 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
// +build darwin | ||
|
||
/* | ||
Copyright 2018 The Kubernetes Authors All rights reserved. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package hyperkit | ||
|
||
import ( | ||
"testing" | ||
) | ||
|
||
func Test_portExtraction(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
ports []string | ||
want []int | ||
wantErr error | ||
}{ | ||
{ | ||
"valid_empty", | ||
[]string{}, | ||
[]int{}, | ||
nil, | ||
}, | ||
{ | ||
"valid_list", | ||
[]string{"10", "20", "30"}, | ||
[]int{10, 20, 30}, | ||
nil, | ||
}, | ||
{ | ||
"invalid", | ||
[]string{"8080", "not_an_integer"}, | ||
nil, | ||
InvalidPortNumberError("not_an_integer"), | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
d := NewDriver("", "") | ||
d.VSockPorts = tt.ports | ||
got, gotErr := d.extractVSockPorts() | ||
if !testEq(got, tt.want) { | ||
t.Errorf("extractVSockPorts() got: %v, want: %v", got, tt.want) | ||
} | ||
if gotErr != tt.wantErr { | ||
t.Errorf("extractVSockPorts() gotErr: %s, wantErr: %s", gotErr.Error(), tt.wantErr.Error()) | ||
} | ||
} | ||
} | ||
|
||
func testEq(a, b []int) bool { | ||
|
||
if a == nil && b == nil { | ||
return true | ||
} | ||
|
||
if a == nil || b == nil { | ||
return false | ||
} | ||
|
||
if len(a) != len(b) { | ||
return false | ||
} | ||
|
||
for i := range a { | ||
if a[i] != b[i] { | ||
return false | ||
} | ||
} | ||
|
||
return true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters