-
Notifications
You must be signed in to change notification settings - Fork 27
/
main.go
103 lines (88 loc) · 3.77 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
//Copyright © 2019-2022 Dell Inc. or its subsidiaries. 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
// 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.
//
//go:generate go generate ./core
package main
import (
"context"
"flag"
"fmt"
"os"
"strings"
"github.com/dell/csi-vxflexos/v2/k8sutils"
"github.com/dell/csi-vxflexos/v2/provider"
"github.com/dell/csi-vxflexos/v2/service"
"github.com/dell/gocsi"
"github.com/sirupsen/logrus"
)
// main is ignored when this package is built as a go plug-in
func main() {
logger := logrus.New()
service.Log = logger
// Always set X_CSI_DEBUG to false irrespective of what user has specified
_ = os.Setenv(gocsi.EnvVarDebug, "false")
// We always want to enable Request and Response logging(no reason for users to control this)
_ = os.Setenv(gocsi.EnvVarReqLogging, "true")
_ = os.Setenv(gocsi.EnvVarRepLogging, "true")
arrayConfigfile := flag.String("array-config", "", "yaml file with array(s) configuration")
driverConfigParamsfile := flag.String("driver-config-params", "", "yaml file with driver config params")
enableLeaderElection := flag.Bool("leader-election", false, "boolean to enable leader election")
leaderElectionNamespace := flag.String("leader-election-namespace", "", "namespace where leader election lease will be created")
kubeconfig := flag.String("kubeconfig", "", "absolute path to the kubeconfig file")
flag.Parse()
if *arrayConfigfile == "" {
fmt.Fprintf(os.Stderr, "array-config argument is mandatory")
os.Exit(1)
}
if *driverConfigParamsfile == "" {
fmt.Fprintf(os.Stderr, "driver-config-params argument is mandatory")
os.Exit(1)
}
service.ArrayConfigFile = *arrayConfigfile
service.DriverConfigParamsFile = *driverConfigParamsfile
service.KubeConfig = *kubeconfig
run := func(ctx context.Context) {
gocsi.Run(ctx, service.Name, "A PowerFlex Container Storage Interface (CSI) Plugin",
usage, provider.New())
}
if !*enableLeaderElection {
run(context.Background())
} else {
driverName := strings.Replace(service.Name, ".", "-", -1)
lockName := fmt.Sprintf("driver-%s", driverName)
err := k8sutils.CreateKubeClientSet()
if err != nil {
_, _ = fmt.Fprintf(os.Stderr, "failed to create clientset for leader election: %v", err)
os.Exit(1)
}
service.K8sClientset = k8sutils.Clientset
// Attempt to become leader and start the driver
k8sutils.LeaderElection(&k8sutils.Clientset, lockName, *leaderElectionNamespace, run)
}
}
const usage = ` X_CSI_VXFLEXOS_SDCGUID
Specifies the GUID of the SDC. This is only used by the Node Service,
and removes a need for calling an external binary to retrieve the GUID.
If not set, the external binary will be invoked.
The default value is empty.
X_CSI_VXFLEXOS_THICKPROVISIONING
Specifies whether thick provisiong should be used when creating volumes.
The default value is false.
X_CSI_VXFLEXOS_ENABLESNAPSHOTCGDELETE
When a snapshot is deleted, if it is a member of a Consistency Group, enable automatic deletion
of all snapshots in the consistency group.
The default value is false.
X_CSI_VXFLEXOS_ENABLELISTVOLUMESNAPSHOTS
When listing volumes, if this option is is enabled, then volumes and snapshots will be returned.
Otherwise only volumes are returned.
The default value is false.
`