forked from tkestack/tke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcluster.go
135 lines (119 loc) · 4.32 KB
/
cluster.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
* Tencent is pleased to support the open source community by making TKEStack
* available.
*
* Copyright (C) 2012-2019 Tencent. 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
*
* https://opensource.org/licenses/Apache-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 OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package util
import (
"context"
"fmt"
"net/http"
"net/url"
"sync"
"k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apiserver/pkg/endpoints/request"
"k8s.io/client-go/kubernetes"
restclient "k8s.io/client-go/rest"
platformversionedclient "tkestack.io/tke/api/client/clientset/versioned/typed/platform/v1"
platformv1 "tkestack.io/tke/api/platform/v1"
v1platform "tkestack.io/tke/api/platform/v1"
"tkestack.io/tke/pkg/platform/util"
"tkestack.io/tke/pkg/platform/util/addon"
"tkestack.io/tke/pkg/util/log"
)
// ClusterNameToClient mapping cluster to kubernetes client
// clusterName => kubernetes.Interface
var ClusterNameToClient sync.Map
// GetClusterClient get kubernetes client via cluster name
func GetClusterClient(ctx context.Context, clusterName string, platformClient platformversionedclient.PlatformV1Interface) (kubernetes.Interface, error) {
// First check from cache
if item, ok := ClusterNameToClient.Load(clusterName); ok {
// Check if is available
kubeClient := item.(kubernetes.Interface)
_, err := kubeClient.CoreV1().Services(metav1.NamespaceSystem).List(ctx, metav1.ListOptions{})
if err == nil {
return kubeClient, nil
}
ClusterNameToClient.Delete(clusterName)
}
kubeClient, err := addon.BuildExternalClientSetWithName(ctx, platformClient, clusterName)
if err != nil {
return nil, err
}
ClusterNameToClient.Store(clusterName, kubeClient)
return kubeClient, nil
}
//TODO: use api && controller instead of proxy
func APIServerLocationByCluster(ctx context.Context, clusterName string, platformClient platformversionedclient.PlatformV1Interface) (*url.URL, http.RoundTripper, string, error) {
requestInfo, ok := request.RequestInfoFrom(ctx)
if !ok {
return nil, nil, "", errors.NewBadRequest("unable to get request info from context")
}
cluster, err := platformClient.Clusters().Get(ctx, clusterName, metav1.GetOptions{})
if err != nil {
log.Errorf("unable to get cluster %v", err)
return nil, nil, "", err
}
if cluster.Status.Phase != v1platform.ClusterRunning {
return nil, nil, "", errors.NewServiceUnavailable(fmt.Sprintf("cluster %s status is abnormal", cluster.ObjectMeta.Name))
}
credential, err := addon.GetClusterCredentialV1(ctx, platformClient, cluster)
if err != nil {
log.Errorf("unable to get credential %v", err)
return nil, nil, "", err
}
transport, err := BuildTransportV1(credential)
if err != nil {
return nil, nil, "", errors.NewInternalError(err)
}
host, err := util.ClusterV1Host(cluster)
if err != nil {
return nil, nil, "", errors.NewInternalError(err)
}
token := ""
if credential.Token != nil {
token = *credential.Token
}
return &url.URL{
Scheme: "https",
Host: host,
Path: requestInfo.Path,
}, transport, token, nil
}
//use cache to optimize this function
func GetClusterPodIP(ctx context.Context, clusterName, namespace, podName string, platformClient platformversionedclient.PlatformV1Interface) (string, error) {
client, err := GetClusterClient(ctx, clusterName, platformClient)
if err != nil {
log.Errorf("unable to get cluster client %v", err)
return "", err
}
pod, err := client.CoreV1().Pods(namespace).Get(ctx, podName, metav1.GetOptions{})
if err != nil {
log.Errorf("unable to get pod in cluster %v err=%v", clusterName, err)
return "", err
}
return pod.Status.HostIP, nil
}
// BuildTransport create the http transport for communicate to backend
// kubernetes api server.
func BuildTransportV1(credential *platformv1.ClusterCredential) (http.RoundTripper, error) {
config := credential.RESTConfig()
transport, err := restclient.TransportFor(config)
if err != nil {
return nil, err
}
return transport, nil
}