* Add Virtual Kubelet provider for VIC Initial virtual kubelet provider for VMware VIC. This provider currently handles creating and starting of a pod VM via the VIC portlayer and persona server. Image store handling via the VIC persona server. This provider currently requires the feature/wolfpack branch of VIC. * Added pod stop and delete. Also added node capacity. Added the ability to stop and delete pod VMs via VIC. Also retrieve node capacity information from the VCH. * Cleanup and readme file Some file clean up and added a Readme.md markdown file for the VIC provider. * Cleaned up errors, added function comments, moved operation code 1. Cleaned up error handling. Set standard for creating errors. 2. Added method prototype comments for all interface functions. 3. Moved PodCreator, PodStarter, PodStopper, and PodDeleter to a new folder. * Add mocking code and unit tests for podcache, podcreator, and podstarter Used the unit test framework used in VIC to handle assertions in the provider's unit test. Mocking code generated using OSS project mockery, which is compatible with the testify assertion framework. * Vendored packages for the VIC provider Requires feature/wolfpack branch of VIC and a few specific commit sha of projects used within VIC. * Implementation of POD Stopper and Deleter unit tests (#4) * Updated files for initial PR
93 lines
2.9 KiB
Go
93 lines
2.9 KiB
Go
// Copyright 2016-2017 VMware, Inc. 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 fs
|
|
|
|
import (
|
|
"os/exec"
|
|
"strings"
|
|
|
|
"github.com/docker/docker/pkg/mount"
|
|
|
|
"github.com/vmware/vic/pkg/trace"
|
|
)
|
|
|
|
// MaxLabelLength is the maximum allowed length of a label for this filesystem
|
|
const MaxLabelLength = 15
|
|
|
|
// Ext4 satisfies the Filesystem interface
|
|
type Ext4 struct{}
|
|
|
|
func NewExt4() *Ext4 {
|
|
return &Ext4{}
|
|
}
|
|
|
|
// Mkfs creates an ext4 fs on the given device and applices the given label
|
|
func (e *Ext4) Mkfs(op trace.Operation, devPath, label string) error {
|
|
defer trace.End(trace.Begin(devPath))
|
|
|
|
op.Infof("Creating ext4 filesystem on device %s", devPath)
|
|
|
|
// -v is verbose - this is only useful when things go wrong,
|
|
// -F is needed to use the entire disk without prompting
|
|
// we can't use -V as well for fs specific stuff as that prevents it actually being done.
|
|
// #nosec: Subprocess launching with variable
|
|
cmd := exec.Command("/sbin/mkfs.ext4", "-L", label, "-vF", devPath)
|
|
|
|
if output, err := cmd.CombinedOutput(); err != nil {
|
|
op.Errorf("vmdk storage driver failed to format disk %s: %s", devPath, err)
|
|
op.Errorf("mkfs output: %s", string(output))
|
|
return err
|
|
}
|
|
op.Debugf("Filesystem created on device %s", devPath)
|
|
|
|
return nil
|
|
}
|
|
|
|
// Mount mounts an ext4 formatted device at the given path. From the Docker
|
|
// mount pkg, args must in the form arg=val.
|
|
func (e *Ext4) Mount(op trace.Operation, devPath, targetPath string, options []string) error {
|
|
defer trace.End(trace.Begin(devPath))
|
|
op.Infof("Mounting %s to %s", devPath, targetPath)
|
|
return mount.Mount(devPath, targetPath, "ext4", strings.Join(options, ","))
|
|
}
|
|
|
|
// Unmount unmounts the disk.
|
|
// path can be a device path or a mount point
|
|
func (e *Ext4) Unmount(op trace.Operation, path string) error {
|
|
defer trace.End(trace.Begin(path))
|
|
op.Infof("Unmounting %s", path)
|
|
return mount.Unmount(path)
|
|
}
|
|
|
|
// SetLabel sets the label of an ext4 formated device
|
|
func (e *Ext4) SetLabel(op trace.Operation, devPath, labelName string) error {
|
|
defer trace.End(trace.Begin(devPath))
|
|
|
|
// Warn if truncating label
|
|
if len(labelName) > MaxLabelLength {
|
|
op.Debugf("Label truncated to %s", labelName[:MaxLabelLength])
|
|
}
|
|
|
|
// #nosec: Subprocess launching with variable
|
|
cmd := exec.Command("/sbin/e2label", devPath, labelName[:MaxLabelLength])
|
|
if output, err := cmd.CombinedOutput(); err != nil {
|
|
op.Errorf("failed to set label %s: %s", devPath, err)
|
|
op.Errorf(string(output))
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|