forked from kubernetes-sigs/alibaba-cloud-csi-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
318 lines (282 loc) · 9.6 KB
/
main.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
/*
Copyright 2019 The Kubernetes Authors.
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
http://www.apache.org/licenses/LICENSE-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 OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"flag"
"fmt"
"net/http"
_ "net/http/pprof"
"os"
"path"
"strconv"
"strings"
"sync"
"time"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/agent"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/cpfs"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/dbfs"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/disk"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/ens"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/local"
csilog "github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/log"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/lvm"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/mem"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/metric"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/nas"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/om"
_ "github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/options"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/oss"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/utils"
"github.com/prometheus/common/version"
)
func init() {
flag.Set("logtostderr", "true")
}
func setPrometheusVersion() {
version.Version = VERSION
version.Revision = REVISION
version.Branch = BRANCH
version.BuildDate = BUILDTIME
}
const (
// MBSIZE MB size
MBSIZE = 1024 * 1024
// TypePluginSuffix is the suffix of all storage plugins.
TypePluginSuffix = "plugin.csi.alibabacloud.com"
// TypePluginVar is the yaml variable that needs to be replaced.
TypePluginVar = "driverplugin.csi.alibabacloud.com-replace"
// PluginServicePort default port is 11260.
PluginServicePort = "11260"
// ProvisionerServicePort default port is 11270.
ProvisionerServicePort = "11270"
// TypePluginDBFS local type plugin
TypePluginDBFS = "dbfsplugin.csi.alibabacloud.com"
// TypePluginDISK DISK type plugin
TypePluginDISK = "diskplugin.csi.alibabacloud.com"
// TypePluginNAS NAS type plugin
TypePluginNAS = "nasplugin.csi.alibabacloud.com"
// TypePluginOSS OSS type plugin
TypePluginOSS = "ossplugin.csi.alibabacloud.com"
// TypePluginCPFS CPFS type plugin
TypePluginCPFS = "cpfsplugin.csi.alibabacloud.com"
// TypePluginLVM LVM type plugin
TypePluginLVM = "lvmplugin.csi.alibabacloud.com"
// TypePluginMEM memory type plugin
TypePluginMEM = "memplugin.csi.alibabacloud.com"
// TypePluginLOCAL local type plugin
TypePluginLOCAL = "localplugin.csi.alibabacloud.com"
// TypePluginYODA local type plugin
TypePluginYODA = "yodaplugin.csi.alibabacloud.com"
// TypePluginENS ENS type plugins
TypePluginENS = "ensplugin.csi.alibabacloud.com"
// ExtenderAgent agent component
ExtenderAgent = "agent"
)
// BRANCH is CSI Driver Branch
var BRANCH = ""
// VERSION is CSI Driver Version
var VERSION = ""
// COMMITID is CSI Driver CommitID
var COMMITID = ""
// BUILDTIME is CSI Driver Buildtime
var BUILDTIME = ""
// REVISION is CSI Driver Revision
var REVISION = ""
var (
endpoint = flag.String("endpoint", "unix://tmp/csi.sock", "CSI endpoint")
nodeID = flag.String("nodeid", "", "node id")
runAsController = flag.Bool("run-as-controller", false, "Only run as controller service")
driver = flag.String("driver", TypePluginDISK, "CSI Driver")
// Deprecated: rootDir is instead by KUBELET_ROOT_DIR env.
rootDir = flag.String("rootdir", "/var/lib/kubelet/csi-plugins", "Kubernetes root directory")
)
type globalMetricConfig struct {
enableMetric bool
serviceType string
}
// Nas CSI Plugin
func main() {
flag.Parse()
serviceType := os.Getenv(utils.ServiceType)
if len(serviceType) == 0 || serviceType == "" {
serviceType = utils.PluginService
}
var logAttribute string
if serviceType == utils.ProvisionerService {
logAttribute = strings.Replace(TypePluginSuffix, utils.PluginService, utils.ProvisionerService, -1)
} else {
logAttribute = TypePluginSuffix
}
csilog.NewLogger(logAttribute)
// When serviceType is neither plugin nor provisioner, the program will exits.
if serviceType != utils.PluginService && serviceType != utils.ProvisionerService {
csilog.Log.Fatalf("Service type is unknown:%s", serviceType)
}
// enable pprof analyse
pprofPort := os.Getenv("PPROF_PORT")
if pprofPort != "" {
if _, err := strconv.Atoi(pprofPort); err == nil {
csilog.Log.Infof("enable pprof & start port at %v", pprofPort)
go func() {
err := http.ListenAndServe(fmt.Sprintf("0.0.0.0:%v", pprofPort), nil)
csilog.Log.Errorf("start server err: %v", err)
}()
}
}
// setLogAttribute(logAttribute)
// log.AddHook(rotateHook(logAttribute))
csilog.Log.Infof("Multi CSI Driver Name: %s, nodeID: %s, endPoints: %s", *driver, *nodeID, *endpoint)
csilog.Log.Infof("CSI Driver Branch: %s, Version: %s, Build time: %s\n", BRANCH, VERSION, BUILDTIME)
multiDriverNames := *driver
endPointName := *endpoint
driverNames := strings.Split(multiDriverNames, ",")
var wg sync.WaitGroup
// Storage devops
go om.StorageOM()
for _, driverName := range driverNames {
wg.Add(1)
if !strings.Contains(driverName, TypePluginSuffix) && driverName != ExtenderAgent {
driverName = joinCsiPluginSuffix(driverName)
if strings.Contains(*endpoint, TypePluginVar) {
endPointName = replaceCsiEndpoint(driverName, *endpoint)
} else {
csilog.Log.Fatalf("Csi endpoint:%s", *endpoint)
}
}
if driverName == TypePluginYODA {
driverName = TypePluginLOCAL
}
if err := createPersistentStorage(path.Join(utils.KubeletRootDir, "/csi-plugins", driverName, "controller")); err != nil {
csilog.Log.Errorf("failed to create persistent storage for controller: %v", err)
os.Exit(1)
}
if err := createPersistentStorage(path.Join(utils.KubeletRootDir, "/csi-plugins", driverName, "node")); err != nil {
csilog.Log.Errorf("failed to create persistent storage for node: %v", err)
os.Exit(1)
}
switch driverName {
case TypePluginNAS:
go func(endPoint string) {
defer wg.Done()
driver := nas.NewDriver(*nodeID, endPoint, serviceType)
driver.Run()
}(endPointName)
case TypePluginOSS:
go func(endPoint string) {
defer wg.Done()
driver := oss.NewDriver(*nodeID, endPoint)
driver.Run()
}(endPointName)
case TypePluginDISK:
go func(endPoint string) {
defer wg.Done()
driver := disk.NewDriver(*nodeID, endPoint, *runAsController)
driver.Run()
}(endPointName)
case TypePluginLVM:
go func(endPoint string) {
defer wg.Done()
driver := lvm.NewDriver(*nodeID, endPoint)
driver.Run()
}(endPointName)
case TypePluginCPFS:
go func(endPoint string) {
defer wg.Done()
driver := cpfs.NewDriver(*nodeID, endPoint)
driver.Run()
}(endPointName)
case TypePluginMEM:
go func(endPoint string) {
defer wg.Done()
driver := mem.NewDriver(*nodeID, endPoint)
driver.Run()
}(endPointName)
case TypePluginLOCAL:
go func(endPoint string) {
defer wg.Done()
driver := local.NewDriver(*nodeID, endPoint)
driver.Run()
}(endPointName)
case TypePluginDBFS:
go func(endPoint string) {
defer wg.Done()
driver := dbfs.NewDriver(*nodeID, endPoint)
driver.Run()
}(endPointName)
case TypePluginENS:
go func(endpoint string) {
defer wg.Done()
driver := ens.NewDriver(*nodeID, endpoint)
driver.Run()
}(endPointName)
case ExtenderAgent:
go func() {
defer wg.Done()
queryServer := agent.NewAgent()
queryServer.RunAgent()
}()
default:
csilog.Log.Fatalf("CSI start failed, not support driver: %s", driverName)
}
}
servicePort := os.Getenv("SERVICE_PORT")
if len(servicePort) == 0 || servicePort == "" {
switch serviceType {
case utils.PluginService:
servicePort = PluginServicePort
case utils.ProvisionerService:
servicePort = ProvisionerServicePort
default:
}
}
metricConfig := &globalMetricConfig{
true,
"plugin",
}
enableMetric := os.Getenv("ENABLE_METRIC")
setPrometheusVersion()
if enableMetric == "false" {
metricConfig.enableMetric = false
}
metricConfig.serviceType = serviceType
csilog.Log.Info("CSI is running status.")
server := &http.Server{Addr: ":" + servicePort}
http.HandleFunc("/healthz", healthHandler)
csilog.Log.Infof("Metric listening on address: /healthz")
if metricConfig.enableMetric {
metricHandler := metric.NewMetricHandler(metricConfig.serviceType)
http.Handle("/metrics", metricHandler)
csilog.Log.Infof("Metric listening on address: /metrics")
}
if err := server.ListenAndServe(); err != nil {
csilog.Log.Fatalf("Service port listen and serve err:%s", err.Error())
}
wg.Wait()
os.Exit(0)
}
func createPersistentStorage(persistentStoragePath string) error {
csilog.Log.Infof("Create Stroage Path: %s", persistentStoragePath)
return os.MkdirAll(persistentStoragePath, os.FileMode(0755))
}
func joinCsiPluginSuffix(storageType string) string {
return storageType + TypePluginSuffix
}
func replaceCsiEndpoint(pluginType string, endPointName string) string {
return strings.Replace(endPointName, TypePluginVar, pluginType, -1)
}
func healthHandler(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
time := time.Now()
message := "Liveness probe is OK, time:" + time.String()
w.Write([]byte(message))
}