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 host_path
|
|
|
|
|
|
|
|
import (
|
2015-03-07 21:38:50 +00:00
|
|
|
"fmt"
|
|
|
|
|
2014-11-23 15:47:25 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/types"
|
2015-05-29 20:34:02 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util"
|
2015-05-04 14:43:10 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/util/mount"
|
2015-03-19 05:18:31 +00:00
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/volume"
|
2014-11-23 15:47:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// This is the primary entrypoint for volume plugins.
|
2015-05-29 20:34:02 +00:00
|
|
|
// Tests covering recycling should not use this func but instead
|
|
|
|
// use their own array of plugins w/ a custom recyclerFunc as appropriate
|
2015-03-19 05:18:31 +00:00
|
|
|
func ProbeVolumePlugins() []volume.VolumePlugin {
|
2015-05-29 20:34:02 +00:00
|
|
|
return []volume.VolumePlugin{&hostPathPlugin{nil, newRecycler}}
|
|
|
|
}
|
|
|
|
|
|
|
|
func ProbeRecyclableVolumePlugins(recyclerFunc func(spec *volume.Spec, host volume.VolumeHost) (volume.Recycler, error)) []volume.VolumePlugin {
|
|
|
|
return []volume.VolumePlugin{&hostPathPlugin{nil, recyclerFunc}}
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type hostPathPlugin struct {
|
2015-03-19 05:18:31 +00:00
|
|
|
host volume.VolumeHost
|
2015-05-29 20:34:02 +00:00
|
|
|
// decouple creating recyclers by deferring to a function. Allows for easier testing.
|
|
|
|
newRecyclerFunc func(spec *volume.Spec, host volume.VolumeHost) (volume.Recycler, error)
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
var _ volume.VolumePlugin = &hostPathPlugin{}
|
2015-05-29 20:34:02 +00:00
|
|
|
var _ volume.PersistentVolumePlugin = &hostPathPlugin{}
|
|
|
|
var _ volume.RecyclableVolumePlugin = &hostPathPlugin{}
|
2014-11-23 15:47:25 +00:00
|
|
|
|
|
|
|
const (
|
|
|
|
hostPathPluginName = "kubernetes.io/host-path"
|
|
|
|
)
|
|
|
|
|
2015-03-19 05:18:31 +00:00
|
|
|
func (plugin *hostPathPlugin) Init(host volume.VolumeHost) {
|
2014-11-23 15:47:25 +00:00
|
|
|
plugin.host = host
|
|
|
|
}
|
|
|
|
|
|
|
|
func (plugin *hostPathPlugin) Name() string {
|
|
|
|
return hostPathPluginName
|
|
|
|
}
|
|
|
|
|
2015-04-14 16:29:33 +00:00
|
|
|
func (plugin *hostPathPlugin) CanSupport(spec *volume.Spec) bool {
|
|
|
|
return spec.VolumeSource.HostPath != nil || spec.PersistentVolumeSource.HostPath != nil
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2015-05-18 20:22:30 +00:00
|
|
|
func (plugin *hostPathPlugin) GetAccessModes() []api.PersistentVolumeAccessMode {
|
|
|
|
return []api.PersistentVolumeAccessMode{
|
2015-03-12 19:37:02 +00:00
|
|
|
api.ReadWriteOnce,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-11 00:12:57 +00:00
|
|
|
func (plugin *hostPathPlugin) NewBuilder(spec *volume.Spec, pod *api.Pod, _ volume.VolumeOptions, _ mount.Interface) (volume.Builder, error) {
|
2015-04-14 16:29:33 +00:00
|
|
|
if spec.VolumeSource.HostPath != nil {
|
2015-07-20 09:16:11 +00:00
|
|
|
return &hostPathBuilder{&hostPath{spec.VolumeSource.HostPath.Path}}, nil
|
2015-04-14 16:29:33 +00:00
|
|
|
} else {
|
2015-07-20 09:16:11 +00:00
|
|
|
return &hostPathBuilder{&hostPath{spec.PersistentVolumeSource.HostPath.Path}}, nil
|
2015-04-14 16:29:33 +00:00
|
|
|
}
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2015-05-04 14:43:10 +00:00
|
|
|
func (plugin *hostPathPlugin) NewCleaner(volName string, podUID types.UID, _ mount.Interface) (volume.Cleaner, error) {
|
2015-07-20 09:16:11 +00:00
|
|
|
return &hostPathCleaner{&hostPath{""}}, nil
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2015-05-29 20:34:02 +00:00
|
|
|
func (plugin *hostPathPlugin) NewRecycler(spec *volume.Spec) (volume.Recycler, error) {
|
|
|
|
return plugin.newRecyclerFunc(spec, plugin.host)
|
|
|
|
}
|
|
|
|
|
|
|
|
func newRecycler(spec *volume.Spec, host volume.VolumeHost) (volume.Recycler, error) {
|
|
|
|
if spec.VolumeSource.HostPath != nil {
|
|
|
|
return &hostPathRecycler{spec.Name, spec.VolumeSource.HostPath.Path, host}, nil
|
|
|
|
} else {
|
|
|
|
return &hostPathRecycler{spec.Name, spec.PersistentVolumeSource.HostPath.Path, host}, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-23 15:47:25 +00:00
|
|
|
// HostPath volumes represent a bare host file or directory mount.
|
|
|
|
// The direct at the specified path will be directly exposed to the container.
|
|
|
|
type hostPath struct {
|
|
|
|
path string
|
|
|
|
}
|
|
|
|
|
2015-07-20 09:16:11 +00:00
|
|
|
func (hp *hostPath) GetPath() string {
|
|
|
|
return hp.path
|
|
|
|
}
|
|
|
|
|
|
|
|
type hostPathBuilder struct {
|
|
|
|
*hostPath
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ volume.Builder = &hostPathBuilder{}
|
|
|
|
|
2014-11-23 15:47:25 +00:00
|
|
|
// SetUp does nothing.
|
2015-07-20 09:16:11 +00:00
|
|
|
func (b *hostPathBuilder) SetUp() error {
|
2014-11-23 15:47:25 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-03-07 21:38:50 +00:00
|
|
|
// SetUpAt does not make sense for host paths - probably programmer error.
|
2015-07-20 09:16:11 +00:00
|
|
|
func (b *hostPathBuilder) SetUpAt(dir string) error {
|
2015-03-07 21:38:50 +00:00
|
|
|
return fmt.Errorf("SetUpAt() does not make sense for host paths")
|
|
|
|
}
|
|
|
|
|
2015-07-20 09:16:11 +00:00
|
|
|
type hostPathCleaner struct {
|
|
|
|
*hostPath
|
2014-11-23 15:47:25 +00:00
|
|
|
}
|
|
|
|
|
2015-07-20 09:16:11 +00:00
|
|
|
var _ volume.Cleaner = &hostPathCleaner{}
|
|
|
|
|
2014-11-23 15:47:25 +00:00
|
|
|
// TearDown does nothing.
|
2015-07-20 09:16:11 +00:00
|
|
|
func (c *hostPathCleaner) TearDown() error {
|
2014-11-23 15:47:25 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-03-07 21:38:50 +00:00
|
|
|
|
|
|
|
// TearDownAt does not make sense for host paths - probably programmer error.
|
2015-07-20 09:16:11 +00:00
|
|
|
func (c *hostPathCleaner) TearDownAt(dir string) error {
|
2015-03-07 21:38:50 +00:00
|
|
|
return fmt.Errorf("TearDownAt() does not make sense for host paths")
|
|
|
|
}
|
2015-05-29 20:34:02 +00:00
|
|
|
|
|
|
|
// hostPathRecycler scrubs a hostPath volume by running "rm -rf" on the volume in a pod
|
|
|
|
// This recycler only works on a single host cluster and is for testing purposes only.
|
|
|
|
type hostPathRecycler struct {
|
|
|
|
name string
|
|
|
|
path string
|
|
|
|
host volume.VolumeHost
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *hostPathRecycler) GetPath() string {
|
|
|
|
return r.path
|
|
|
|
}
|
|
|
|
|
|
|
|
// Recycler provides methods to reclaim the volume resource.
|
|
|
|
// A HostPath is recycled by scheduling a pod to run "rm -rf" on the contents of the volume. This is meant for
|
|
|
|
// development and testing in a single node cluster only.
|
|
|
|
// Recycle blocks until the pod has completed or any error occurs.
|
|
|
|
// The scrubber pod's is expected to succeed within 30 seconds when testing localhost.
|
|
|
|
func (r *hostPathRecycler) Recycle() error {
|
2015-06-20 04:34:29 +00:00
|
|
|
timeout := int64(30)
|
2015-05-29 20:34:02 +00:00
|
|
|
pod := &api.Pod{
|
|
|
|
ObjectMeta: api.ObjectMeta{
|
|
|
|
GenerateName: "pv-scrubber-" + util.ShortenString(r.name, 44) + "-",
|
|
|
|
Namespace: api.NamespaceDefault,
|
|
|
|
},
|
|
|
|
Spec: api.PodSpec{
|
|
|
|
ActiveDeadlineSeconds: &timeout,
|
|
|
|
RestartPolicy: api.RestartPolicyNever,
|
|
|
|
Volumes: []api.Volume{
|
|
|
|
{
|
|
|
|
Name: "vol",
|
|
|
|
VolumeSource: api.VolumeSource{
|
|
|
|
HostPath: &api.HostPathVolumeSource{r.path},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
Containers: []api.Container{
|
|
|
|
{
|
|
|
|
Name: "scrubber",
|
2015-06-16 20:15:19 +00:00
|
|
|
Image: "gcr.io/google_containers/busybox",
|
2015-05-29 20:34:02 +00:00
|
|
|
// delete the contents of the volume, but not the directory itself
|
|
|
|
Command: []string{"/bin/sh"},
|
|
|
|
// the scrubber:
|
|
|
|
// 1. validates the /scrub directory exists
|
|
|
|
// 2. creates a text file in the directory to be scrubbed
|
|
|
|
// 3. performs rm -rf on the directory
|
|
|
|
// 4. tests to see if the directory is empty
|
|
|
|
// the pod fails if the error code is returned
|
|
|
|
Args: []string{"-c", "test -e /scrub && echo $(date) > /scrub/trash.txt && rm -rf /scrub/* && test -z \"$(ls -A /scrub)\" || exit 1"},
|
|
|
|
VolumeMounts: []api.VolumeMount{
|
|
|
|
{
|
|
|
|
Name: "vol",
|
|
|
|
MountPath: "/scrub",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
return volume.ScrubPodVolumeAndWatchUntilCompletion(pod, r.host.GetKubeClient())
|
|
|
|
}
|