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
8bd4ad74
Unverified
Commit
8bd4ad74
authored
Jul 14, 2019
by
Erik Wilson
Committed by
GitHub
Jul 14, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #636 from erikwilson/update-tunnel
Cleanup tunnel
parents
34fc4d03
e77dc568
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
+6
-8
tunnel.go
pkg/agent/tunnel/tunnel.go
+6
-8
No files found.
pkg/agent/tunnel/tunnel.go
View file @
8bd4ad74
...
...
@@ -18,6 +18,7 @@ import (
v1
"k8s.io/api/core/v1"
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/fields"
watchtypes
"k8s.io/apimachinery/pkg/watch"
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/tools/clientcmd"
"k8s.io/client-go/transport"
...
...
@@ -68,12 +69,10 @@ func Setup(config *config.Node) error {
}
addresses
:=
[]
string
{
config
.
ServerAddress
}
endpointResourceVersion
:=
""
endpoint
,
_
:=
client
.
CoreV1
()
.
Endpoints
(
"default"
)
.
Get
(
"kubernetes"
,
metav1
.
GetOptions
{})
if
endpoint
!=
nil
{
addresses
=
getAddresses
(
endpoint
)
endpointResourceVersion
=
endpoint
.
ResourceVersion
}
disconnect
:=
map
[
string
]
context
.
CancelFunc
{}
...
...
@@ -89,29 +88,28 @@ func Setup(config *config.Node) error {
go
func
()
{
connect
:
for
{
time
.
Sleep
(
5
*
time
.
Second
)
watch
,
err
:=
client
.
CoreV1
()
.
Endpoints
(
"default"
)
.
Watch
(
metav1
.
ListOptions
{
FieldSelector
:
fields
.
Set
{
"metadata.name"
:
"kubernetes"
}
.
String
(),
ResourceVersion
:
endpointResourceVersion
,
ResourceVersion
:
"0"
,
})
if
err
!=
nil
{
logrus
.
Errorf
(
"Unable to watch for tunnel endpoints: %v"
,
err
)
time
.
Sleep
(
5
*
time
.
Second
)
continue
connect
}
watching
:
for
{
select
{
case
ev
,
ok
:=
<-
watch
.
ResultChan
()
:
if
!
ok
{
logrus
.
Error
(
"Tunnel endpoint watch channel closed"
)
if
!
ok
||
ev
.
Type
==
watchtypes
.
Error
{
logrus
.
Error
f
(
"Tunnel endpoint watch channel closed: %v"
,
ev
)
continue
connect
}
endpoint
,
ok
:=
ev
.
Object
.
(
*
v1
.
Endpoints
)
if
!
ok
{
logrus
.
Error
(
"Tunnel could not case event object to endpoint"
)
logrus
.
Error
f
(
"Tunnel could not case event object to endpoint: %v"
,
ev
)
continue
watching
}
endpointResourceVersion
=
endpoint
.
ResourceVersion
var
addresses
=
getAddresses
(
endpoint
)
logrus
.
Infof
(
"Tunnel endpoint watch event: %v"
,
addresses
)
...
...
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