/* Copyright 2016 The Kubernetes Authors All rights reserved. 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 storage import ( "context" "fmt" "os" "path" "github.com/pkg/errors" core "k8s.io/api/core/v1" meta "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/types" "k8s.io/apimachinery/pkg/util/uuid" "k8s.io/client-go/kubernetes" "k8s.io/client-go/rest" "k8s.io/klog/v2" "sigs.k8s.io/sig-storage-lib-external-provisioner/v6/controller" ) const provisionerName = "k8s.io/minikube-hostpath" type hostPathProvisioner struct { // The directory to create PV-backing directories in pvDir string // Identity of this hostPathProvisioner, generated. Used to identify "this" // provisioner's PVs. identity types.UID } // NewHostPathProvisioner creates a new Provisioner using host paths func NewHostPathProvisioner(pvDir string) controller.Provisioner { return &hostPathProvisioner{ pvDir: pvDir, identity: uuid.NewUUID(), } } var _ controller.Provisioner = &hostPathProvisioner{} // Provision creates a storage asset and returns a PV object representing it. func (p *hostPathProvisioner) Provision(ctx context.Context, options controller.ProvisionOptions) (*core.PersistentVolume, controller.ProvisioningState, error) { path := path.Join(p.pvDir, options.PVC.Namespace, options.PVC.Name) klog.Infof("Provisioning volume %v to %s", options, path) if err := os.MkdirAll(path, 0777); err != nil { return nil, controller.ProvisioningFinished, err } // Explicitly chmod created dir, so we know mode is set to 0777 regardless of umask if err := os.Chmod(path, 0777); err != nil { return nil, controller.ProvisioningFinished, err } pv := &core.PersistentVolume{ ObjectMeta: meta.ObjectMeta{ Name: options.PVName, Annotations: map[string]string{ "hostPathProvisionerIdentity": string(p.identity), }, }, Spec: core.PersistentVolumeSpec{ PersistentVolumeReclaimPolicy: *options.StorageClass.ReclaimPolicy, AccessModes: options.PVC.Spec.AccessModes, Capacity: core.ResourceList{ core.ResourceStorage: options.PVC.Spec.Resources.Requests[core.ResourceStorage], }, PersistentVolumeSource: core.PersistentVolumeSource{ HostPath: &core.HostPathVolumeSource{ Path: path, }, }, }, } return pv, controller.ProvisioningFinished, nil } // Delete removes the storage asset that was created by Provision represented // by the given PV. func (p *hostPathProvisioner) Delete(ctx context.Context, volume *core.PersistentVolume) error { klog.Infof("Deleting volume %v", volume) ann, ok := volume.Annotations["hostPathProvisionerIdentity"] if !ok { return errors.New("identity annotation not found on PV") } if ann != string(p.identity) { return &controller.IgnoredError{Reason: "identity annotation on PV does not match ours"} } if err := os.RemoveAll(volume.Spec.PersistentVolumeSource.HostPath.Path); err != nil { return errors.Wrap(err, "removing hostpath PV") } return nil } // StartStorageProvisioner will start storage provisioner server func StartStorageProvisioner(pvDir string) error { klog.Infof("Initializing the minikube storage provisioner...") config, err := rest.InClusterConfig() if err != nil { return err } clientset, err := kubernetes.NewForConfig(config) if err != nil { klog.Fatalf("Failed to create client: %v", err) } // The controller needs to know what the server version is because out-of-tree // provisioners aren't officially supported until 1.5 serverVersion, err := clientset.Discovery().ServerVersion() if err != nil { return fmt.Errorf("error getting server version: %v", err) } // Create the provisioner: it implements the Provisioner interface expected by // the controller hostPathProvisioner := NewHostPathProvisioner(pvDir) // Start the provision controller which will dynamically provision hostPath // PVs pc := controller.NewProvisionController(clientset, provisionerName, hostPathProvisioner, serverVersion.GitVersion) klog.Info("Storage provisioner initialized, now starting service!") pc.Run(context.Background()) return nil }