2016-09-27 13:19:45 +00:00
|
|
|
/*
|
|
|
|
Copyright 2015 The Kubernetes 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 flocker
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2017-06-22 18:24:23 +00:00
|
|
|
"k8s.io/api/core/v1"
|
2017-01-25 13:13:07 +00:00
|
|
|
"k8s.io/apimachinery/pkg/api/resource"
|
2017-01-17 03:38:19 +00:00
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2016-09-27 13:19:45 +00:00
|
|
|
"k8s.io/kubernetes/pkg/volume"
|
2018-02-06 08:38:41 +00:00
|
|
|
"k8s.io/kubernetes/pkg/volume/util"
|
2016-09-27 13:19:45 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type volumeManager interface {
|
|
|
|
// Creates a volume
|
|
|
|
CreateVolume(provisioner *flockerVolumeProvisioner) (datasetUUID string, volumeSizeGB int, labels map[string]string, err error)
|
|
|
|
// Deletes a volume
|
|
|
|
DeleteVolume(deleter *flockerVolumeDeleter) error
|
|
|
|
}
|
|
|
|
|
|
|
|
type flockerVolumeDeleter struct {
|
|
|
|
*flockerVolume
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.Deleter = &flockerVolumeDeleter{}
|
|
|
|
|
|
|
|
func (b *flockerVolumeDeleter) GetPath() string {
|
|
|
|
return getPath(b.podUID, b.volName, b.plugin.host)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *flockerVolumeDeleter) Delete() error {
|
|
|
|
return d.manager.DeleteVolume(d)
|
|
|
|
}
|
|
|
|
|
|
|
|
type flockerVolumeProvisioner struct {
|
|
|
|
*flockerVolume
|
|
|
|
options volume.VolumeOptions
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.Provisioner = &flockerVolumeProvisioner{}
|
|
|
|
|
2018-05-23 08:12:20 +00:00
|
|
|
func (c *flockerVolumeProvisioner) Provision(selectedNode *v1.Node, allowedTopologies []v1.TopologySelectorTerm) (*v1.PersistentVolume, error) {
|
2018-02-06 08:38:41 +00:00
|
|
|
if !util.AccessModesContainedInAll(c.plugin.GetAccessModes(), c.options.PVC.Spec.AccessModes) {
|
2017-06-09 21:59:08 +00:00
|
|
|
return nil, fmt.Errorf("invalid AccessModes %v: only AccessModes %v are supported", c.options.PVC.Spec.AccessModes, c.plugin.GetAccessModes())
|
|
|
|
}
|
2016-09-27 13:19:45 +00:00
|
|
|
|
|
|
|
if len(c.options.Parameters) > 0 {
|
|
|
|
return nil, fmt.Errorf("Provisioning failed: Specified at least one unsupported parameter")
|
|
|
|
}
|
|
|
|
|
2016-10-12 10:22:01 +00:00
|
|
|
if c.options.PVC.Spec.Selector != nil {
|
2016-09-27 13:19:45 +00:00
|
|
|
return nil, fmt.Errorf("Provisioning failed: Specified unsupported selector")
|
|
|
|
}
|
|
|
|
|
2018-05-29 10:02:40 +00:00
|
|
|
if util.CheckPersistentVolumeClaimModeBlock(c.options.PVC) {
|
|
|
|
return nil, fmt.Errorf("%s does not support block volume provisioning", c.plugin.GetPluginName())
|
|
|
|
}
|
|
|
|
|
2016-09-27 13:19:45 +00:00
|
|
|
datasetUUID, sizeGB, labels, err := c.manager.CreateVolume(c)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2016-11-18 20:58:56 +00:00
|
|
|
pv := &v1.PersistentVolume{
|
2017-01-17 03:38:19 +00:00
|
|
|
ObjectMeta: metav1.ObjectMeta{
|
2016-09-27 13:19:45 +00:00
|
|
|
Name: c.options.PVName,
|
|
|
|
Labels: map[string]string{},
|
|
|
|
Annotations: map[string]string{
|
2018-02-06 08:38:41 +00:00
|
|
|
util.VolumeDynamicallyCreatedByKey: "flocker-dynamic-provisioner",
|
2016-09-27 13:19:45 +00:00
|
|
|
},
|
|
|
|
},
|
2016-11-18 20:58:56 +00:00
|
|
|
Spec: v1.PersistentVolumeSpec{
|
2016-09-27 13:19:45 +00:00
|
|
|
PersistentVolumeReclaimPolicy: c.options.PersistentVolumeReclaimPolicy,
|
2016-10-12 10:22:01 +00:00
|
|
|
AccessModes: c.options.PVC.Spec.AccessModes,
|
2016-11-18 20:58:56 +00:00
|
|
|
Capacity: v1.ResourceList{
|
|
|
|
v1.ResourceName(v1.ResourceStorage): resource.MustParse(fmt.Sprintf("%dGi", sizeGB)),
|
2016-09-27 13:19:45 +00:00
|
|
|
},
|
2016-11-18 20:58:56 +00:00
|
|
|
PersistentVolumeSource: v1.PersistentVolumeSource{
|
|
|
|
Flocker: &v1.FlockerVolumeSource{
|
2016-09-27 13:19:45 +00:00
|
|
|
DatasetUUID: datasetUUID,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
2016-10-12 10:22:01 +00:00
|
|
|
if len(c.options.PVC.Spec.AccessModes) == 0 {
|
|
|
|
pv.Spec.AccessModes = c.plugin.GetAccessModes()
|
|
|
|
}
|
2016-09-27 13:19:45 +00:00
|
|
|
|
|
|
|
if len(labels) != 0 {
|
|
|
|
if pv.Labels == nil {
|
|
|
|
pv.Labels = make(map[string]string)
|
|
|
|
}
|
|
|
|
for k, v := range labels {
|
|
|
|
pv.Labels[k] = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return pv, nil
|
|
|
|
}
|