* 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
81 lines
2.2 KiB
Go
81 lines
2.2 KiB
Go
// Package netns allows ultra-simple network namespace handling. NsHandles
|
|
// can be retrieved and set. Note that the current namespace is thread
|
|
// local so actions that set and reset namespaces should use LockOSThread
|
|
// to make sure the namespace doesn't change due to a goroutine switch.
|
|
// It is best to close NsHandles when you are done with them. This can be
|
|
// accomplished via a `defer ns.Close()` on the handle. Changing namespaces
|
|
// requires elevated privileges, so in most cases this code needs to be run
|
|
// as root.
|
|
package netns
|
|
|
|
import (
|
|
"fmt"
|
|
"syscall"
|
|
)
|
|
|
|
// NsHandle is a handle to a network namespace. It can be cast directly
|
|
// to an int and used as a file descriptor.
|
|
type NsHandle int
|
|
|
|
// Equal determines if two network handles refer to the same network
|
|
// namespace. This is done by comparing the device and inode that the
|
|
// file descriptors point to.
|
|
func (ns NsHandle) Equal(other NsHandle) bool {
|
|
if ns == other {
|
|
return true
|
|
}
|
|
var s1, s2 syscall.Stat_t
|
|
if err := syscall.Fstat(int(ns), &s1); err != nil {
|
|
return false
|
|
}
|
|
if err := syscall.Fstat(int(other), &s2); err != nil {
|
|
return false
|
|
}
|
|
return (s1.Dev == s2.Dev) && (s1.Ino == s2.Ino)
|
|
}
|
|
|
|
// String shows the file descriptor number and its dev and inode.
|
|
func (ns NsHandle) String() string {
|
|
var s syscall.Stat_t
|
|
if ns == -1 {
|
|
return "NS(None)"
|
|
}
|
|
if err := syscall.Fstat(int(ns), &s); err != nil {
|
|
return fmt.Sprintf("NS(%d: unknown)", ns)
|
|
}
|
|
return fmt.Sprintf("NS(%d: %d, %d)", ns, s.Dev, s.Ino)
|
|
}
|
|
|
|
// UniqueId returns a string which uniquely identifies the namespace
|
|
// associated with the network handle.
|
|
func (ns NsHandle) UniqueId() string {
|
|
var s syscall.Stat_t
|
|
if ns == -1 {
|
|
return "NS(none)"
|
|
}
|
|
if err := syscall.Fstat(int(ns), &s); err != nil {
|
|
return "NS(unknown)"
|
|
}
|
|
return fmt.Sprintf("NS(%d:%d)", s.Dev, s.Ino)
|
|
}
|
|
|
|
// IsOpen returns true if Close() has not been called.
|
|
func (ns NsHandle) IsOpen() bool {
|
|
return ns != -1
|
|
}
|
|
|
|
// Close closes the NsHandle and resets its file descriptor to -1.
|
|
// It is not safe to use an NsHandle after Close() is called.
|
|
func (ns *NsHandle) Close() error {
|
|
if err := syscall.Close(int(*ns)); err != nil {
|
|
return err
|
|
}
|
|
(*ns) = -1
|
|
return nil
|
|
}
|
|
|
|
// None gets an empty (closed) NsHandle.
|
|
func None() NsHandle {
|
|
return NsHandle(-1)
|
|
}
|