You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.7 KiB
Go
56 lines
1.7 KiB
Go
/*
|
|
Copyright 2023.
|
|
|
|
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"
|
|
"os"
|
|
|
|
"git.ruekov.eu/ruakij/webdav-csi-driver/pkg/webdav"
|
|
"k8s.io/klog/v2"
|
|
)
|
|
|
|
var (
|
|
endpoint = flag.String("endpoint", "unix://tmp/csi.sock", "CSI endpoint")
|
|
nodeID = flag.String("nodeid", "", "node id")
|
|
mountPermissions = flag.Uint64("mount-permissions", 0, "mounted folder permissions")
|
|
driverName = flag.String("drivername", "", "name of the driver")
|
|
workingMountDir = flag.String("working-mount-dir", "/tmp/csi-storage", "working directory for provisioner to mount davfs shares temporarily")
|
|
defaultOnDeletePolicy = flag.String("default-ondelete-policy", "", "default policy for deleting subdirectory when deleting a volume")
|
|
)
|
|
|
|
func main() {
|
|
klog.InitFlags(nil)
|
|
_ = flag.Set("logtostderr", "true")
|
|
flag.Parse()
|
|
if *nodeID == "" {
|
|
klog.Warning("nodeid is empty")
|
|
}
|
|
|
|
driverOptions := webdav.DriverOpt{
|
|
Name: *driverName,
|
|
NodeID: *nodeID,
|
|
Endpoint: *endpoint,
|
|
MountPermissions: *mountPermissions,
|
|
WorkingMountDir: *workingMountDir,
|
|
DefaultOnDeletePolicy: *defaultOnDeletePolicy,
|
|
}
|
|
d := webdav.NewDriver(&driverOptions)
|
|
d.Run()
|
|
os.Exit(0)
|
|
}
|