forked from kubernetes-sigs/alibaba-cloud-csi-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
327 lines (289 loc) · 9.35 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
319
320
321
322
323
324
325
326
327
/*
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"
"io"
"net/http"
"os"
"path"
"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/disk"
"github.com/kubernetes-sigs/alibaba-cloud-csi-driver/pkg/local"
"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/oss"
"github.com/prometheus/common/version"
log "github.com/sirupsen/logrus"
)
func init() {
flag.Set("logtostderr", "true")
}
func setPrometheusVersion() {
version.Version = VERSION
version.Revision = REVISION
version.Branch = BRANCH
version.BuildDate = BUILDTIME
}
const (
// LogfilePrefix prefix of log file
LogfilePrefix = "/var/log/alicloud/"
// 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"
// PluginService represents the csi-plugin type.
PluginService = "plugin"
// ProvisionerService represents the csi-provisioner type.
ProvisionerService = "provisioner"
//PluginServicePort default port is 11260.
PluginServicePort = "11260"
//ProvisionerServicePort default port is 11270.
ProvisionerServicePort = "11270"
// 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"
// 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")
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("SERVICE_TYPE")
if len(serviceType) == 0 || serviceType == "" {
serviceType = PluginService
}
// When serviceType is neither plugin nor provisioner, the program will exits.
if serviceType != PluginService && serviceType != ProvisionerService {
log.Fatalf("Service type is unknown:%s", serviceType)
}
var logAttribute string
switch serviceType {
case ProvisionerService:
logAttribute = strings.Replace(TypePluginSuffix, PluginService, ProvisionerService, -1)
case PluginService:
logAttribute = TypePluginSuffix
default:
}
setLogAttribute(logAttribute)
log.Infof("Multi CSI Driver Name: %s, nodeID: %s, endPoints: %s", *driver, *nodeID, *endpoint)
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 {
log.Fatalf("Csi endpoint:%s", *endpoint)
}
}
if driverName == TypePluginYODA {
driverName = TypePluginLOCAL
}
if err := createPersistentStorage(path.Join(*rootDir, driverName, "controller")); err != nil {
log.Errorf("failed to create persistent storage for controller: %v", err)
os.Exit(1)
}
if err := createPersistentStorage(path.Join(*rootDir, driverName, "node")); err != nil {
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)
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 ExtenderAgent:
go func() {
defer wg.Done()
queryServer := agent.NewAgent()
queryServer.RunAgent()
}()
default:
log.Fatalf("CSI start failed, not support driver: %s", driverName)
}
}
servicePort := os.Getenv("SERVICE_PORT")
if len(servicePort) == 0 || servicePort == "" {
switch serviceType {
case PluginService:
servicePort = PluginServicePort
case ProvisionerService:
servicePort = ProvisionerServicePort
default:
}
}
metricConfig := &globalMetricConfig{
false,
"plugin",
}
enableMetric := os.Getenv("ENABLE_METRIC")
if enableMetric == "true" {
setPrometheusVersion()
metricConfig.enableMetric = true
metricConfig.serviceType = serviceType
}
log.Info("CSI is running status.")
server := &http.Server{Addr: ":" + servicePort}
http.HandleFunc("/healthz", healthHandler)
log.Infof("Metric listening on address: /healthz")
if metricConfig.enableMetric {
metricHandler := metric.NewMetricHandler(metricConfig.serviceType)
http.Handle("/metrics", metricHandler)
log.Infof("Metric listening on address: /metrics")
}
if err := server.ListenAndServe(); err != nil {
log.Fatalf("Service port listen and serve err:%s", err.Error())
}
wg.Wait()
os.Exit(0)
}
func createPersistentStorage(persistentStoragePath string) error {
log.Infof("Create Stroage Path: %s", persistentStoragePath)
return os.MkdirAll(persistentStoragePath, os.FileMode(0755))
}
// rotate log file by 2M bytes
// default print log to stdout and file both.
func setLogAttribute(driver string) {
logType := os.Getenv("LOG_TYPE")
logType = strings.ToLower(logType)
if logType != "stdout" && logType != "host" {
logType = "both"
}
if logType == "stdout" {
return
}
os.MkdirAll(LogfilePrefix, os.FileMode(0755))
logFile := LogfilePrefix + driver + ".log"
f, err := os.OpenFile(logFile, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
if err != nil {
os.Exit(1)
}
// rotate the log file if too large
if fi, err := f.Stat(); err == nil && fi.Size() > 2*MBSIZE {
f.Close()
timeStr := time.Now().Format("-2006-01-02-15:04:05")
timedLogfile := LogfilePrefix + driver + timeStr + ".log"
os.Rename(logFile, timedLogfile)
f, err = os.OpenFile(logFile, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0666)
if err != nil {
os.Exit(1)
}
}
if logType == "both" {
mw := io.MultiWriter(os.Stdout, f)
log.SetOutput(mw)
} else {
log.SetOutput(f)
}
}
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))
}