2014-11-23 15:47:25 +00:00
|
|
|
/*
|
2015-05-01 16:19:44 +00:00
|
|
|
Copyright 2014 The Kubernetes Authors All rights reserved.
|
2014-11-23 15:47:25 +00:00
|
|
|
|
|
|
|
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 volume
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
2015-09-07 19:55:28 +00:00
|
|
|
"k8s.io/kubernetes/pkg/api"
|
2014-11-23 15:47:25 +00:00
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
)
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
// Volume represents a directory used by pods or hosts on a node.
|
2014-11-23 15:47:25 +00:00
|
|
|
// All method implementations of methods in the volume interface must be idempotent.
|
2015-03-19 05:18:31 +00:00
|
|
|
type Volume interface {
|
2014-11-23 15:47:25 +00:00
|
|
|
// GetPath returns the directory path the volume is mounted to.
|
|
|
|
GetPath() string
|
|
|
|
}
|
|
|
|
|
2015-05-29 20:32:44 +00:00
|
|
|
// Builder interface provides methods to set up/mount the volume.
|
2014-11-23 15:47:25 +00:00
|
|
|
type Builder interface {
|
|
|
|
// Uses Interface to provide the path for Docker binds.
|
2015-03-19 05:18:31 +00:00
|
|
|
Volume
|
2015-03-07 21:38:50 +00:00
|
|
|
// SetUp prepares and mounts/unpacks the volume to a self-determined
|
|
|
|
// directory path. This may be called more than once, so
|
|
|
|
// implementations must be idempotent.
|
2014-11-23 15:47:25 +00:00
|
|
|
SetUp() error
|
2015-03-07 21:38:50 +00:00
|
|
|
// SetUpAt prepares and mounts/unpacks the volume to the specified
|
|
|
|
// directory path, which may or may not exist yet. This may be called
|
|
|
|
// more than once, so implementations must be idempotent.
|
|
|
|
SetUpAt(dir string) error
|
2015-06-29 16:54:43 +00:00
|
|
|
// IsReadOnly is a flag that gives the builder's ReadOnly attribute.
|
|
|
|
// All persistent volumes have a private readOnly flag in their builders.
|
|
|
|
IsReadOnly() bool
|
2015-10-20 18:49:39 +00:00
|
|
|
// SupportsOwnershipManagement returns whether this builder wants
|
|
|
|
// ownership management for the volume. If this method returns true,
|
|
|
|
// the Kubelet will:
|
|
|
|
//
|
|
|
|
// 1. Make the volume owned by group FSGroup
|
|
|
|
// 2. Set the setgid bit is set (new files created in the volume will be owned by FSGroup)
|
|
|
|
// 3. Logical OR the permission bits with rw-rw----
|
|
|
|
SupportsOwnershipManagement() bool
|
2015-10-07 19:19:06 +00:00
|
|
|
// SupportsSELinux reports whether the given builder supports
|
|
|
|
// SELinux and would like the kubelet to relabel the volume to
|
|
|
|
// match the pod to which it will be attached.
|
|
|
|
SupportsSELinux() bool
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2015-05-29 20:32:44 +00:00
|
|
|
// Cleaner interface provides methods to cleanup/unmount the volumes.
|
2014-11-23 15:47:25 +00:00
|
|
|
type Cleaner interface {
|
2015-03-19 05:18:31 +00:00
|
|
|
Volume
|
2015-03-07 21:38:50 +00:00
|
|
|
// TearDown unmounts the volume from a self-determined directory and
|
|
|
|
// removes traces of the SetUp procedure.
|
2014-11-23 15:47:25 +00:00
|
|
|
TearDown() error
|
2015-03-07 21:38:50 +00:00
|
|
|
// TearDown unmounts the volume from the specified directory and
|
|
|
|
// removes traces of the SetUp procedure.
|
|
|
|
TearDownAt(dir string) error
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2015-05-29 20:32:44 +00:00
|
|
|
// Recycler provides methods to reclaim the volume resource.
|
|
|
|
type Recycler interface {
|
|
|
|
Volume
|
|
|
|
// Recycle reclaims the resource. Calls to this method should block until the recycling task is complete.
|
|
|
|
// Any error returned indicates the volume has failed to be reclaimed. A nil return indicates success.
|
|
|
|
Recycle() error
|
|
|
|
}
|
|
|
|
|
2015-09-07 19:55:28 +00:00
|
|
|
// Create adds a new resource in the storage provider and creates a PersistentVolume for the new resource.
|
|
|
|
// Calls to Create should block until complete.
|
|
|
|
type Creater interface {
|
|
|
|
Create() (*api.PersistentVolume, error)
|
|
|
|
}
|
|
|
|
|
2015-09-07 16:11:37 +00:00
|
|
|
// Delete removes the resource from the underlying storage provider. Calls to this method should block until
|
|
|
|
// the deletion is complete. Any error returned indicates the volume has failed to be reclaimed.
|
|
|
|
// A nil return indicates success.
|
|
|
|
type Deleter interface {
|
|
|
|
Volume
|
|
|
|
Delete() error
|
|
|
|
}
|
|
|
|
|
2014-11-23 15:47:25 +00:00
|
|
|
func RenameDirectory(oldPath, newName string) (string, error) {
|
|
|
|
newPath, err := ioutil.TempDir(path.Dir(oldPath), newName)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
err = os.Rename(oldPath, newPath)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return newPath, nil
|
|
|
|
}
|