Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
0dc63334
Unverified
Commit
0dc63334
authored
Nov 15, 2022
by
Manuel Buil
Committed by
GitHub
Nov 15, 2022
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6506 from manuelbuil/revertWinRemoval
Revert "Remove stuff which belongs in the windows executor implementation"
parents
6d2e13b6
e41e4010
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
1 deletion
+25
-1
go.mod
go.mod
+1
-1
agent_windows.go
pkg/daemons/agent/agent_windows.go
+24
-0
No files found.
go.mod
View file @
0dc63334
...
...
@@ -66,6 +66,7 @@ replace (
)
require (
github.com/Microsoft/hcsshim v0.9.2
github.com/Mirantis/cri-dockerd v0.0.0-00010101000000-000000000000
github.com/cloudnativelabs/kube-router v1.3.2
github.com/containerd/cgroups v1.0.3
...
...
@@ -159,7 +160,6 @@ require (
github.com/JeffAshton/win_pdh v0.0.0-20161109143554-76bb4ee9f0ab // indirect
github.com/MakeNowJust/heredoc v1.0.0 // indirect
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/Microsoft/hcsshim v0.9.2 // indirect
github.com/NYTimes/gziphandler v1.1.1 // indirect
github.com/PuerkitoBio/purell v1.1.1 // indirect
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
...
...
pkg/daemons/agent/agent_windows.go
View file @
0dc63334
...
...
@@ -7,7 +7,9 @@ import (
"os"
"path/filepath"
"strings"
"time"
"github.com/Microsoft/hcsshim"
"github.com/k3s-io/k3s/pkg/daemons/config"
"github.com/k3s-io/k3s/pkg/util"
"github.com/sirupsen/logrus"
...
...
@@ -15,6 +17,9 @@ import (
"k8s.io/kubernetes/pkg/kubeapiserver/authorizer/modes"
)
// NetworkName may be overridden at runtime in downstream projects
var
NetworkName
=
"vxlan0"
const
(
socketPrefix
=
"npipe://"
)
...
...
@@ -35,6 +40,10 @@ func kubeProxyArgs(cfg *config.Agent) map[string]string {
argsMap
[
"hostname-override"
]
=
cfg
.
NodeName
}
if
sourceVip
:=
waitForManagementIP
(
NetworkName
);
sourceVip
!=
""
{
argsMap
[
"source-vip"
]
=
sourceVip
}
return
argsMap
}
...
...
@@ -124,3 +133,18 @@ func kubeletArgs(cfg *config.Agent) map[string]string {
}
return
argsMap
}
func
waitForManagementIP
(
networkName
string
)
string
{
for
range
time
.
Tick
(
time
.
Second
*
5
)
{
network
,
err
:=
hcsshim
.
GetHNSNetworkByName
(
networkName
)
if
err
!=
nil
{
logrus
.
WithError
(
err
)
.
Warning
(
"can't find HNS network, retrying"
,
networkName
)
continue
}
if
network
.
ManagementIP
==
""
{
continue
}
return
network
.
ManagementIP
}
return
""
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment