forked from hammer-space/csi-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
136 lines (117 loc) · 2.96 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
/*
Copyright 2019 Hammerspace
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 (
"net"
"net/url"
"os"
"os/signal"
"strconv"
"strings"
"syscall"
log "github.com/sirupsen/logrus"
driver "github.com/hammer-space/csi-plugin/pkg/driver"
)
var ()
func init() {
// Setup logging
log.SetFormatter(&log.JSONFormatter{})
log.SetOutput(os.Stdout)
log.SetLevel(log.DebugLevel)
log.SetReportCaller(true)
}
func validateEnvironmentVars() {
endpoint := os.Getenv("CSI_ENDPOINT")
if len(endpoint) == 0 {
log.Error("CSI_ENDPOINT must be defined and must be a path")
os.Exit(1)
}
if strings.Contains(endpoint, ":") {
log.Error("CSI_ENDPOINT must be a unix path")
os.Exit(1)
}
hsEndpoint := os.Getenv("HS_ENDPOINT")
if len(hsEndpoint) == 0 {
log.Error("HS_ENDPOINT must be defined")
os.Exit(1)
}
endpointUrl, err := url.Parse(hsEndpoint)
if err != nil || endpointUrl.Scheme == "" || endpointUrl.Host == "" {
log.Error("HS_ENDPOINT must be a valid URL")
os.Exit(1)
}
username := os.Getenv("HS_USERNAME")
if len(username) == 0 {
log.Error("HS_USERNAME must be defined")
os.Exit(1)
}
password := os.Getenv("HS_PASSWORD")
if len(password) == 0 {
log.Error("HS_PASSWORD must be defined")
os.Exit(1)
}
if os.Getenv("CSI_USE_ANVIL_FOR_DATA") != "" {
_, err = strconv.ParseBool(os.Getenv("CSI_USE_ANVIL_FOR_DATA"))
if err != nil {
log.Error("CSI_USE_ANVIL_FOR_DATA must be a bool")
os.Exit(1)
}
}
if os.Getenv("HS_TLS_VERIFY") != "" {
_, err = strconv.ParseBool(os.Getenv("HS_TLS_VERIFY"))
if err != nil {
log.Error("HS_TLS_VERIFY must be a bool")
os.Exit(1)
}
}
}
func main() {
validateEnvironmentVars()
endpoint := os.Getenv("CSI_ENDPOINT")
d := driver.NewCSIDriver(
os.Getenv("HS_ENDPOINT"),
os.Getenv("HS_USERNAME"),
os.Getenv("HS_PASSWORD"),
os.Getenv("HS_TLS_VERIFY"),
os.Getenv("CSI_USE_ANVIL_FOR_DATA"),
)
// Listen
os.Remove(endpoint)
l, err := net.Listen("unix", endpoint)
if err != nil {
log.Errorf("Error: Unable to listen on %s socket: %v\n",
endpoint,
err)
os.Exit(1)
}
defer os.Remove(endpoint)
// Start server
if err := d.Start(l); err != nil {
log.Errorf("Error: Unable to start CSI server: %v\n",
err)
os.Exit(1)
}
log.Info("hammerspace driver started")
// Wait for signal
sigc := make(chan os.Signal, 1)
sigs := []os.Signal{
syscall.SIGTERM,
syscall.SIGHUP,
syscall.SIGINT,
syscall.SIGQUIT,
}
signal.Notify(sigc, sigs...)
<-sigc
d.Stop()
log.Info("hammerspace driver stopped")
}