mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 00:10:20 +00:00
b9cd0e18ad
This is a part of the stateless set of commits for CephCSI. This commit removes the dependency on config maps to store cephFS provisioned volumes, and instead relies on RADOS based objects and keys, and required CSI VolumeID encoding to detect the provisioned volumes. Changes: - Provide backward compatibility to provisioned volumes by older plugin versions (1.0.0 or older) - Remove Create/Delete support for statically provisioned volumes (fixes #382) - Added namespace support to RADOS OMaps and used the same to store RADOS CSI objects and keys in the CephFS metadata pool - Added support to mention fsname for CephFS provisioning (fixes #359) - Changed field name in CSI Identifier to 'location', to denote a pool or fscid - Updated mounter cache to use new scheme - Required Helm manifests are updated - Required documentation and other manifests are updated - Made driver option 'metadatastorage' as optional, as fresh installs do not need to specify the same Testing done: - Create/Mount/Delete PVC - Create/Delete 5 PVCs - Mount version 1.0.0 PVC - Delete version 1.0.0 PV - Mount Statically defined PV/PVC/Pod - Mount Statically defined version 1.0.0 PV/PVC/Pod - Delete Statically defined version 1.0.0 PV/PVC/Pod - Node restart when mounted to test mountcache - Use InstanceID other than 'default' - RBD basic round of tests, as namespace is added to OMaps - csitest against ceph-fs plugin - NOTE: CephFS plugin still does not detect and address already created volumes but of a different size - Test not providing any value to the metadata storage parameter Signed-off-by: ShyamsundarR <srangana@redhat.com>
171 lines
5.0 KiB
Go
171 lines
5.0 KiB
Go
/*
|
|
Copyright 2018 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 cephfs
|
|
|
|
import (
|
|
"k8s.io/klog"
|
|
|
|
csicommon "github.com/ceph/ceph-csi/pkg/csi-common"
|
|
"github.com/ceph/ceph-csi/pkg/util"
|
|
|
|
"github.com/container-storage-interface/spec/lib/go/csi"
|
|
)
|
|
|
|
const (
|
|
// version of ceph driver
|
|
version = "1.0.0"
|
|
|
|
// volIDVersion is the version number of volume ID encoding scheme
|
|
volIDVersion uint16 = 1
|
|
|
|
// csiConfigFile is the location of the CSI config file
|
|
csiConfigFile = "/etc/ceph-csi-config/config.json"
|
|
|
|
// RADOS namespace to store CSI specific objects and keys
|
|
radosNamespace = "csi"
|
|
)
|
|
|
|
// PluginFolder defines the location of ceph plugin
|
|
var PluginFolder = "/var/lib/kubelet/plugins/"
|
|
|
|
// Driver contains the default identity,node and controller struct
|
|
type Driver struct {
|
|
cd *csicommon.CSIDriver
|
|
|
|
is *IdentityServer
|
|
ns *NodeServer
|
|
cs *ControllerServer
|
|
}
|
|
|
|
var (
|
|
// DefaultVolumeMounter for mounting volumes
|
|
DefaultVolumeMounter string
|
|
|
|
// CSIInstanceID is the instance ID that is unique to an instance of CSI, used when sharing
|
|
// ceph clusters across CSI instances, to differentiate omap names per CSI instance
|
|
CSIInstanceID = "default"
|
|
|
|
// volJournal is used to maintain RADOS based journals for CO generated
|
|
// VolumeName to backing CephFS subvolumes
|
|
volJournal *util.CSIJournal
|
|
)
|
|
|
|
// NewDriver returns new ceph driver
|
|
func NewDriver() *Driver {
|
|
return &Driver{}
|
|
}
|
|
|
|
// NewIdentityServer initialize a identity server for ceph CSI driver
|
|
func NewIdentityServer(d *csicommon.CSIDriver) *IdentityServer {
|
|
return &IdentityServer{
|
|
DefaultIdentityServer: csicommon.NewDefaultIdentityServer(d),
|
|
}
|
|
}
|
|
|
|
// NewControllerServer initialize a controller server for ceph CSI driver
|
|
func NewControllerServer(d *csicommon.CSIDriver, cachePersister util.CachePersister) *ControllerServer {
|
|
return &ControllerServer{
|
|
DefaultControllerServer: csicommon.NewDefaultControllerServer(d),
|
|
MetadataStore: cachePersister,
|
|
}
|
|
}
|
|
|
|
// NewNodeServer initialize a node server for ceph CSI driver.
|
|
func NewNodeServer(d *csicommon.CSIDriver) *NodeServer {
|
|
return &NodeServer{
|
|
DefaultNodeServer: csicommon.NewDefaultNodeServer(d),
|
|
}
|
|
}
|
|
|
|
// Run start a non-blocking grpc controller,node and identityserver for
|
|
// ceph CSI driver which can serve multiple parallel requests
|
|
func (fs *Driver) Run(driverName, nodeID, endpoint, volumeMounter, mountCacheDir, instanceID string, cachePersister util.CachePersister) {
|
|
klog.Infof("Driver: %v version: %v", driverName, version)
|
|
|
|
// Configuration
|
|
|
|
if err := loadAvailableMounters(); err != nil {
|
|
klog.Fatalf("cephfs: failed to load ceph mounters: %v", err)
|
|
}
|
|
|
|
if volumeMounter != "" {
|
|
if err := validateMounter(volumeMounter); err != nil {
|
|
klog.Fatalln(err)
|
|
} else {
|
|
DefaultVolumeMounter = volumeMounter
|
|
}
|
|
} else {
|
|
// Pick the first available mounter as the default one.
|
|
// The choice is biased towards "fuse" in case both
|
|
// ceph fuse and kernel mounters are available.
|
|
DefaultVolumeMounter = availableMounters[0]
|
|
}
|
|
|
|
klog.Infof("cephfs: setting default volume mounter to %s", DefaultVolumeMounter)
|
|
|
|
if err := util.WriteCephConfig(); err != nil {
|
|
klog.Fatalf("failed to write ceph configuration file: %v", err)
|
|
}
|
|
|
|
// Use passed in instance ID, if provided for omap suffix naming
|
|
if instanceID != "" {
|
|
CSIInstanceID = instanceID
|
|
}
|
|
// Get an instance of the volume journal
|
|
volJournal = util.NewCSIVolumeJournal()
|
|
|
|
// Update keys with CSI instance suffix
|
|
volJournal.SetCSIDirectorySuffix(CSIInstanceID)
|
|
|
|
// Update namespace for storing keys into a specific namespace on RADOS, in the CephFS
|
|
// metadata pool
|
|
volJournal.SetNamespace(radosNamespace)
|
|
|
|
initVolumeMountCache(driverName, mountCacheDir)
|
|
if mountCacheDir != "" {
|
|
if err := remountCachedVolumes(); err != nil {
|
|
klog.Warningf("failed to remount cached volumes: %v", err)
|
|
//ignore remount fail
|
|
}
|
|
}
|
|
// Initialize default library driver
|
|
|
|
fs.cd = csicommon.NewCSIDriver(driverName, version, nodeID)
|
|
if fs.cd == nil {
|
|
klog.Fatalln("failed to initialize CSI driver")
|
|
}
|
|
|
|
fs.cd.AddControllerServiceCapabilities([]csi.ControllerServiceCapability_RPC_Type{
|
|
csi.ControllerServiceCapability_RPC_CREATE_DELETE_VOLUME,
|
|
})
|
|
|
|
fs.cd.AddVolumeCapabilityAccessModes([]csi.VolumeCapability_AccessMode_Mode{
|
|
csi.VolumeCapability_AccessMode_MULTI_NODE_MULTI_WRITER,
|
|
})
|
|
|
|
// Create gRPC servers
|
|
|
|
fs.is = NewIdentityServer(fs.cd)
|
|
fs.ns = NewNodeServer(fs.cd)
|
|
|
|
fs.cs = NewControllerServer(fs.cd, cachePersister)
|
|
|
|
server := csicommon.NewNonBlockingGRPCServer()
|
|
server.Start(endpoint, fs.is, fs.cs, fs.ns)
|
|
server.Wait()
|
|
}
|