mirror of https://github.com/k3s-io/k3s
Tunnel agent to all servers
Watch the kubernetes endpoints to create a tunnel to all servers.pull/523/head
parent
cb306b9378
commit
e0212144e8
|
@ -15,7 +15,12 @@ import (
|
|||
"github.com/rancher/k3s/pkg/daemons/config"
|
||||
"github.com/rancher/remotedialer"
|
||||
"github.com/sirupsen/logrus"
|
||||
v1 "k8s.io/api/core/v1"
|
||||
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
||||
"k8s.io/apimachinery/pkg/fields"
|
||||
"k8s.io/client-go/kubernetes"
|
||||
"k8s.io/client-go/tools/clientcmd"
|
||||
"k8s.io/client-go/transport"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -25,6 +30,27 @@ var (
|
|||
}
|
||||
)
|
||||
|
||||
func getAddresses(endpoint *v1.Endpoints) []string {
|
||||
serverAddresses := []string{}
|
||||
if endpoint == nil {
|
||||
return serverAddresses
|
||||
}
|
||||
for _, subset := range endpoint.Subsets {
|
||||
var port string
|
||||
if len(subset.Ports) > 0 {
|
||||
port = fmt.Sprint(subset.Ports[0].Port)
|
||||
}
|
||||
for _, address := range subset.Addresses {
|
||||
serverAddress := address.IP
|
||||
if port != "" {
|
||||
serverAddress += ":" + port
|
||||
}
|
||||
serverAddresses = append(serverAddresses, serverAddress)
|
||||
}
|
||||
}
|
||||
return serverAddresses
|
||||
}
|
||||
|
||||
func Setup(config *config.Node) error {
|
||||
restConfig, err := clientcmd.BuildConfigFromFlags("", config.AgentConfig.KubeConfigNode)
|
||||
if err != nil {
|
||||
|
@ -36,7 +62,78 @@ func Setup(config *config.Node) error {
|
|||
return err
|
||||
}
|
||||
|
||||
wsURL := fmt.Sprintf("wss://%s/v1-k3s/connect", config.ServerAddress)
|
||||
client, err := kubernetes.NewForConfig(restConfig)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
addresses := []string{config.ServerAddress}
|
||||
|
||||
endpoint, _ := client.CoreV1().Endpoints("default").Get("kubernetes", metav1.GetOptions{})
|
||||
if endpoint != nil {
|
||||
addresses = getAddresses(endpoint)
|
||||
}
|
||||
|
||||
disconnect := map[string]context.CancelFunc{}
|
||||
|
||||
wg := &sync.WaitGroup{}
|
||||
for _, address := range addresses {
|
||||
if _, ok := disconnect[address]; !ok {
|
||||
disconnect[address] = connect(wg, address, config, transportConfig)
|
||||
}
|
||||
}
|
||||
wg.Wait()
|
||||
|
||||
go func() {
|
||||
connect:
|
||||
for {
|
||||
watch, err := client.CoreV1().Endpoints("default").Watch(metav1.ListOptions{
|
||||
FieldSelector: fields.Set{"metadata.name": "kubernetes"}.String(),
|
||||
})
|
||||
if err != nil {
|
||||
logrus.Errorf("Unable to watch for endpoints: %v", err)
|
||||
time.Sleep(5 * time.Second)
|
||||
continue connect
|
||||
}
|
||||
watching:
|
||||
for {
|
||||
select {
|
||||
case ev, ok := <-watch.ResultChan():
|
||||
if !ok {
|
||||
logrus.Error("endpoint watch channel closed")
|
||||
continue connect
|
||||
}
|
||||
endpoint, ok := ev.Object.(*v1.Endpoints)
|
||||
if !ok {
|
||||
logrus.Error("could not case event object to endpoint")
|
||||
continue watching
|
||||
}
|
||||
|
||||
validEndpoint := map[string]bool{}
|
||||
var addresses = getAddresses(endpoint)
|
||||
for _, address := range addresses {
|
||||
validEndpoint[address] = true
|
||||
if _, ok := disconnect[address]; !ok {
|
||||
disconnect[address] = connect(wg, address, config, transportConfig)
|
||||
}
|
||||
}
|
||||
|
||||
for address, cancel := range disconnect {
|
||||
if !validEndpoint[address] {
|
||||
cancel()
|
||||
delete(disconnect, address)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func connect(waitGroup *sync.WaitGroup, address string, config *config.Node, transportConfig *transport.Config) context.CancelFunc {
|
||||
wsURL := fmt.Sprintf("wss://%s/v1-k3s/connect", address)
|
||||
headers := map[string][]string{
|
||||
"X-K3s-NodeName": {config.AgentConfig.NodeName},
|
||||
}
|
||||
|
@ -57,23 +154,30 @@ func Setup(config *config.Node) error {
|
|||
}
|
||||
|
||||
once := sync.Once{}
|
||||
wg := sync.WaitGroup{}
|
||||
wg.Add(1)
|
||||
if waitGroup != nil {
|
||||
waitGroup.Add(1)
|
||||
}
|
||||
|
||||
ctx, cancel := context.WithCancel(context.Background())
|
||||
|
||||
go func() {
|
||||
for {
|
||||
logrus.Infof("Connecting to %s", wsURL)
|
||||
remotedialer.ClientConnect(wsURL, http.Header(headers), ws, func(proto, address string) bool {
|
||||
remotedialer.ClientConnect(ctx, wsURL, http.Header(headers), ws, func(proto, address string) bool {
|
||||
host, port, err := net.SplitHostPort(address)
|
||||
return err == nil && proto == "tcp" && ports[port] && host == "127.0.0.1"
|
||||
}, func(_ context.Context) error {
|
||||
once.Do(wg.Done)
|
||||
if waitGroup != nil {
|
||||
once.Do(waitGroup.Done)
|
||||
}
|
||||
return nil
|
||||
})
|
||||
time.Sleep(5 * time.Second)
|
||||
|
||||
if ctx.Err() != nil {
|
||||
logrus.Infof("Stopping tunnel to %s", wsURL)
|
||||
return
|
||||
}
|
||||
}
|
||||
}()
|
||||
|
||||
wg.Wait()
|
||||
return nil
|
||||
return cancel
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue