-
Notifications
You must be signed in to change notification settings - Fork 259
Expand file tree
/
Copy pathcluster.go
More file actions
62 lines (54 loc) · 2.53 KB
/
cluster.go
File metadata and controls
62 lines (54 loc) · 2.53 KB
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
/*
* Tencent is pleased to support the open source community by making Blueking Container Service available.
* Copyright (C) 2019 THL A29 Limited, a Tencent company. All rights reserved.
* Licensed under the MIT License (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
* http://opensource.org/licenses/MIT
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
* either express or implied. See the License for the specific language governing permissions and
* limitations under the License.
*/
// Package bcs xxx
package bcs
import (
"fmt"
"strings"
"time"
"github.com/Tencent/bk-bcs/bcs-common/common/RegisterDiscover"
"github.com/Tencent/bk-bcs/bcs-common/common/types"
bcsoptions "github.com/Tencent/bk-bcs/bcs-services/bcs-k8s-watch/app/options"
)
// GetStorageService returns storage InnerService object for discovery.
// in container deployment mode, get storage endpoints from configuration directly
func GetStorageService(zkHosts string, bcsTLSConfig bcsoptions.TLS, customIPStr string, isExternal bool, token string) (*InnerService,
*RegisterDiscover.RegDiscover, error) {
customEndpoints := strings.Split(customIPStr, ",")
storageService := NewInnerService(types.BCS_MODULE_STORAGE, nil, customEndpoints, isExternal)
storageService.update(customEndpoints, bcsTLSConfig, token)
return storageService, nil, nil
}
// GetNetService returns netservice InnerService object for discovery.
func GetNetService(zkHosts string, bcsTLSConfig bcsoptions.TLS, customIPStr string, isExternal bool) (*InnerService,
*RegisterDiscover.RegDiscover, error) {
discovery := RegisterDiscover.NewRegDiscoverEx(zkHosts, 5*time.Second)
if err := discovery.Start(); err != nil {
return nil, nil, fmt.Errorf("get netservice from ZK failed, %+v", err)
}
// e.g.
// zk: 127.0.0.11
// zknode: bcs/services/endpoints/netservice
path := fmt.Sprintf("%s/%s", types.BCS_SERV_BASEPATH, types.BCS_MODULE_NETSERVICE)
eventChan, err := discovery.DiscoverService(path)
if err != nil {
_ = discovery.Stop()
return nil, nil, fmt.Errorf("discover netservice failed, %+v", err)
}
var customEndpoints []string
if len(customIPStr) != 0 {
customEndpoints = strings.Split(customIPStr, ",")
}
netService := NewInnerService(types.BCS_MODULE_NETSERVICE, eventChan, customEndpoints, isExternal)
go netService.Watch(bcsTLSConfig, "") // nolint
return netService, discovery, nil
}