Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Workaround - cannot parse clusterNetworkPrefix and endpointMacPrefix #5

Open
wants to merge 20 commits into
base: windowsCni
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
ccfbda5
Rakelkar/flannel windows hostgw (#1)
rakelkar Oct 4, 2017
51105f8
Renamed files and directories
madhanrm Nov 22, 2017
7de75fc
Update vendor golang.org/x/sys
madhanrm Dec 16, 2017
1fc833a
Fix: building json request to hns endpoints (Policies was malformed) …
banatm Jan 10, 2018
0dbfae4
fix no valid addresses caused by lack of ip's version (#4)
carlory Feb 6, 2018
8917a32
Merge remote-tracking branch 'upstream/master' into windowsCni
ptylenda Feb 11, 2018
2771e0c
msys fix
ptylenda Feb 11, 2018
5782881
Rakelkar/flannel windows hostgw (#1)
rakelkar Oct 4, 2017
2d27717
Renamed files and directories
madhanrm Nov 22, 2017
723b0a1
Fix: building json request to hns endpoints (Policies was malformed) …
banatm Jan 10, 2018
879f4ea
fix no valid addresses caused by lack of ip's version (#4)
carlory Feb 6, 2018
e2b1a8f
y# This is a combination of 2 commits.
Feb 12, 2018
222da31
Merge remote-tracking branch 'upstream2/windowsCni' into windowsCni
Feb 15, 2018
fbf080f
Merge remote-tracking branch 'upstream/master' into windowsCni
Feb 15, 2018
0049c64
ClusterNetworkPrefix and EnpoingMacPrefix parsing workarounds
ptylenda Mar 4, 2018
13a9b51
DNS for HNS network workaround
ptylenda Mar 5, 2018
229b2ff
DNS for HNS network workaround
ptylenda Mar 5, 2018
5c024f9
Workaround for manual creation of NAT using New-NetNat
ptylenda Mar 5, 2018
de7bd03
Workaround for manual creation of NAT using New-NetNat
ptylenda Mar 5, 2018
c2007b8
Workaround for manual creation of NAT using New-NetNat
ptylenda Mar 5, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
4 changes: 2 additions & 2 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ environment:
install:
- echo %PATH%
- echo %GOPATH%
- set PATH=%GOPATH%\bin;c:\go\bin;%PATH%
- go version
- go env

- ps: $webClient = New-Object System.Net.WebClient; $InstallPath="c:" ; $webClient.DownloadFile("https://raw.githubusercontent.com/jhowardmsft/docker-tdmgcc/master/gcc.zip", "$InstallPath\gcc.zip"); Expand-Archive $InstallPath\gcc.zip -DestinationPath $InstallPath\gcc -Force; $webClient.DownloadFile("https://raw.githubusercontent.com/jhowardmsft/docker-tdmgcc/master/runtime.zip", "$InstallPath\runtime.zip"); Expand-Archive $InstallPath\runtime.zip -DestinationPath $InstallPath\gcc -Force; $webClient.DownloadFile("https://raw.githubusercontent.com/jhowardmsft/docker-tdmgcc/master/binutils.zip","$InstallPath\binutils.zip"); Expand-Archive $InstallPath\binutils.zip -DestinationPath $InstallPath\gcc -Force;
- set PATH=%GOPATH%\bin;c:\go\bin;c:\gcc\bin;%PATH%
build: off

test_script:
Expand Down
Loading