2019-03-20 19:14:20 +00:00
|
|
|
/*
|
|
|
|
Copyright 2019 The Ceph-CSI 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"
|
2019-11-06 04:52:07 +00:00
|
|
|
"fmt"
|
2019-03-20 19:14:20 +00:00
|
|
|
"os"
|
2019-07-04 09:49:57 +00:00
|
|
|
"path/filepath"
|
2019-11-06 04:52:07 +00:00
|
|
|
"runtime"
|
2019-06-20 19:30:40 +00:00
|
|
|
"time"
|
2019-03-20 19:14:20 +00:00
|
|
|
|
|
|
|
"github.com/ceph/ceph-csi/pkg/cephfs"
|
2019-06-20 19:30:40 +00:00
|
|
|
"github.com/ceph/ceph-csi/pkg/liveness"
|
2019-03-20 19:14:20 +00:00
|
|
|
"github.com/ceph/ceph-csi/pkg/rbd"
|
|
|
|
"github.com/ceph/ceph-csi/pkg/util"
|
|
|
|
"k8s.io/klog"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2019-06-20 19:30:40 +00:00
|
|
|
rbdType = "rbd"
|
|
|
|
cephfsType = "cephfs"
|
|
|
|
livenessType = "liveness"
|
2019-03-20 19:14:20 +00:00
|
|
|
|
2019-06-20 19:30:40 +00:00
|
|
|
rbdDefaultName = "rbd.csi.ceph.com"
|
|
|
|
cephfsDefaultName = "cephfs.csi.ceph.com"
|
|
|
|
livenessDefaultName = "liveness.csi.ceph.com"
|
2019-03-20 19:14:20 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2019-08-14 05:57:45 +00:00
|
|
|
conf util.Config
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2019-03-20 19:14:20 +00:00
|
|
|
// common flags
|
2019-08-14 05:57:45 +00:00
|
|
|
flag.StringVar(&conf.Vtype, "type", "", "driver type [rbd|cephfs|liveness]")
|
|
|
|
flag.StringVar(&conf.Endpoint, "endpoint", "unix://tmp/csi.sock", "CSI endpoint")
|
|
|
|
flag.StringVar(&conf.DriverName, "drivername", "", "name of the driver")
|
|
|
|
flag.StringVar(&conf.NodeID, "nodeid", "", "node id")
|
|
|
|
flag.StringVar(&conf.InstanceID, "instanceid", "", "Unique ID distinguishing this instance of Ceph CSI among other"+
|
2019-05-28 19:03:18 +00:00
|
|
|
" instances, when sharing Ceph clusters across CSI instances for provisioning")
|
2019-08-14 05:57:45 +00:00
|
|
|
flag.StringVar(&conf.MetadataStorage, "metadatastorage", "", "metadata persistence method [node|k8s_configmap]")
|
|
|
|
flag.StringVar(&conf.PluginPath, "pluginpath", "/var/lib/kubelet/plugins/", "the location of cephcsi plugin")
|
|
|
|
flag.IntVar(&conf.PidLimit, "pidlimit", 0, "the PID limit to configure through cgroups")
|
2019-08-14 06:42:17 +00:00
|
|
|
flag.BoolVar(&conf.IsControllerServer, "controllerserver", false, "start cephcsi controller server")
|
|
|
|
flag.BoolVar(&conf.IsNodeServer, "nodeserver", false, "start cephcsi node server")
|
2019-03-20 19:14:20 +00:00
|
|
|
|
|
|
|
// cephfs related flags
|
2020-02-10 08:51:05 +00:00
|
|
|
// marking this as deprecated, remove it in next major release
|
2019-08-14 05:57:45 +00:00
|
|
|
flag.StringVar(&conf.MountCacheDir, "mountcachedir", "", "mount info cache save dir")
|
2019-10-10 10:15:44 +00:00
|
|
|
flag.BoolVar(&conf.ForceKernelCephFS, "forcecephkernelclient", false, "enable Ceph Kernel clients on kernel < 4.17 which support quotas")
|
2019-06-20 19:30:40 +00:00
|
|
|
|
2019-08-21 09:28:02 +00:00
|
|
|
// liveness/grpc metrics related flags
|
|
|
|
flag.IntVar(&conf.MetricsPort, "metricsport", 8080, "TCP port for liveness/grpc metrics requests")
|
|
|
|
flag.StringVar(&conf.MetricsPath, "metricspath", "/metrics", "path of prometheus endpoint where metrics will be available")
|
2019-08-14 05:57:45 +00:00
|
|
|
flag.DurationVar(&conf.PollTime, "polltime", time.Second*60, "time interval in seconds between each poll")
|
|
|
|
flag.DurationVar(&conf.PoolTimeout, "timeout", time.Second*3, "probe timeout in seconds")
|
2019-08-21 09:28:02 +00:00
|
|
|
|
|
|
|
flag.BoolVar(&conf.EnableGRPCMetrics, "enablegrpcmetrics", false, "enable grpc metrics")
|
|
|
|
flag.StringVar(&conf.HistogramOption, "histogramoption", "0.5,2,6",
|
|
|
|
"Histogram option for grpc metrics, should be comma separated value, ex:= 0.5,2,6 where start=0.5 factor=2, count=6")
|
|
|
|
|
2019-11-06 04:52:07 +00:00
|
|
|
flag.BoolVar(&conf.Version, "version", false, "Print cephcsi version information")
|
|
|
|
|
2019-03-20 19:14:20 +00:00
|
|
|
klog.InitFlags(nil)
|
|
|
|
if err := flag.Set("logtostderr", "true"); err != nil {
|
|
|
|
klog.Exitf("failed to set logtostderr flag: %v", err)
|
|
|
|
}
|
|
|
|
flag.Parse()
|
|
|
|
}
|
|
|
|
|
|
|
|
func getDriverName() string {
|
|
|
|
// was explicitly passed a driver name
|
2019-08-14 05:57:45 +00:00
|
|
|
if conf.DriverName != "" {
|
|
|
|
return conf.DriverName
|
2019-03-20 19:14:20 +00:00
|
|
|
}
|
|
|
|
// select driver name based on volume type
|
2019-08-14 05:57:45 +00:00
|
|
|
switch conf.Vtype {
|
2019-03-20 19:14:20 +00:00
|
|
|
case rbdType:
|
|
|
|
return rbdDefaultName
|
|
|
|
case cephfsType:
|
|
|
|
return cephfsDefaultName
|
2019-06-20 19:30:40 +00:00
|
|
|
case livenessType:
|
|
|
|
return livenessDefaultName
|
2019-03-20 19:14:20 +00:00
|
|
|
default:
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2019-11-06 04:52:07 +00:00
|
|
|
if conf.Version {
|
|
|
|
fmt.Println("Cephcsi Version:", util.DriverVersion)
|
|
|
|
fmt.Println("Git Commit:", util.GitCommit)
|
|
|
|
fmt.Println("Go Version:", runtime.Version())
|
|
|
|
fmt.Println("Compiler:", runtime.Compiler)
|
|
|
|
fmt.Printf("Platform: %s/%s\n", runtime.GOOS, runtime.GOARCH)
|
|
|
|
os.Exit(0)
|
|
|
|
}
|
|
|
|
|
2020-03-23 02:15:35 +00:00
|
|
|
klog.V(1).Infof("Driver version: %s and Git version: %s", util.DriverVersion, util.GitCommit)
|
2019-05-28 19:03:18 +00:00
|
|
|
var cp util.CachePersister
|
|
|
|
|
2019-08-14 05:57:45 +00:00
|
|
|
if conf.Vtype == "" {
|
2019-03-20 19:14:20 +00:00
|
|
|
klog.Fatalln("driver type not specified")
|
|
|
|
}
|
|
|
|
|
|
|
|
dname := getDriverName()
|
|
|
|
err := util.ValidateDriverName(dname)
|
|
|
|
if err != nil {
|
|
|
|
klog.Fatalln(err) // calls exit
|
|
|
|
}
|
2019-08-14 05:57:45 +00:00
|
|
|
csipluginPath := filepath.Join(conf.PluginPath, dname)
|
|
|
|
if conf.MetadataStorage != "" {
|
2019-07-04 09:49:57 +00:00
|
|
|
cp, err = util.CreatePersistanceStorage(
|
2019-08-14 05:57:45 +00:00
|
|
|
csipluginPath, conf.MetadataStorage, conf.PluginPath)
|
2019-07-04 09:49:57 +00:00
|
|
|
if err != nil {
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-26 12:36:43 +00:00
|
|
|
// the driver may need a higher PID limit for handling all concurrent requests
|
2019-08-14 05:57:45 +00:00
|
|
|
if conf.PidLimit != 0 {
|
2019-08-21 09:28:02 +00:00
|
|
|
currentLimit, pidErr := util.GetPIDLimit()
|
|
|
|
if pidErr != nil {
|
|
|
|
klog.Errorf("Failed to get the PID limit, can not reconfigure: %v", pidErr)
|
2019-07-26 12:36:43 +00:00
|
|
|
} else {
|
2020-03-23 02:15:35 +00:00
|
|
|
klog.V(1).Infof("Initial PID limit is set to %d", currentLimit)
|
2019-08-14 05:57:45 +00:00
|
|
|
err = util.SetPIDLimit(conf.PidLimit)
|
2019-07-26 12:36:43 +00:00
|
|
|
if err != nil {
|
2019-08-14 05:57:45 +00:00
|
|
|
klog.Errorf("Failed to set new PID limit to %d: %v", conf.PidLimit, err)
|
2019-07-26 12:36:43 +00:00
|
|
|
} else {
|
|
|
|
s := ""
|
2019-08-14 05:57:45 +00:00
|
|
|
if conf.PidLimit == -1 {
|
2019-07-26 12:36:43 +00:00
|
|
|
s = " (max)"
|
|
|
|
}
|
2020-03-23 02:15:35 +00:00
|
|
|
klog.V(1).Infof("Reconfigured PID limit to %d%s", conf.PidLimit, s)
|
2019-07-26 12:36:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-21 09:28:02 +00:00
|
|
|
if conf.EnableGRPCMetrics || conf.Vtype == livenessType {
|
|
|
|
// validate metrics endpoint
|
|
|
|
conf.MetricsIP = os.Getenv("POD_IP")
|
|
|
|
|
|
|
|
if conf.MetricsIP == "" {
|
|
|
|
klog.Warning("missing POD_IP env var defaulting to 0.0.0.0")
|
|
|
|
conf.MetricsIP = "0.0.0.0"
|
|
|
|
}
|
|
|
|
err = util.ValidateURL(&conf)
|
|
|
|
if err != nil {
|
|
|
|
klog.Fatalln(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-23 02:15:35 +00:00
|
|
|
klog.V(1).Infof("Starting driver type: %v with name: %v", conf.Vtype, dname)
|
2019-08-14 05:57:45 +00:00
|
|
|
switch conf.Vtype {
|
2019-03-20 19:14:20 +00:00
|
|
|
case rbdType:
|
|
|
|
driver := rbd.NewDriver()
|
2019-08-14 05:57:45 +00:00
|
|
|
driver.Run(&conf, cp)
|
2019-03-20 19:14:20 +00:00
|
|
|
|
|
|
|
case cephfsType:
|
2020-02-10 08:51:05 +00:00
|
|
|
if conf.MountCacheDir != "" {
|
|
|
|
klog.Warning("mountcachedir option is deprecated")
|
|
|
|
}
|
2019-03-20 19:14:20 +00:00
|
|
|
driver := cephfs.NewDriver()
|
2019-08-14 05:57:45 +00:00
|
|
|
driver.Run(&conf, cp)
|
2019-03-20 19:14:20 +00:00
|
|
|
|
2019-06-20 19:30:40 +00:00
|
|
|
case livenessType:
|
2019-08-14 05:57:45 +00:00
|
|
|
liveness.Run(&conf)
|
2019-06-20 19:30:40 +00:00
|
|
|
|
2019-03-20 19:14:20 +00:00
|
|
|
default:
|
2019-08-14 05:57:45 +00:00
|
|
|
klog.Fatalln("invalid volume type", conf.Vtype) // calls exit
|
2019-03-20 19:14:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
os.Exit(0)
|
|
|
|
}
|