* 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
185 lines
7.0 KiB
Go
185 lines
7.0 KiB
Go
// Copyright 2016 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 tether
|
||
|
||
import (
|
||
"io"
|
||
"net"
|
||
"os"
|
||
"os/exec"
|
||
"sync"
|
||
|
||
"github.com/vmware/vic/lib/config/executor"
|
||
"github.com/vmware/vic/pkg/dio"
|
||
"github.com/vmware/vic/pkg/ip"
|
||
)
|
||
|
||
type ExecutorConfig struct {
|
||
// allow us to lock the maps when config is being updated
|
||
// subelements tend to have their own locks
|
||
sync.Mutex
|
||
|
||
// The name of the system
|
||
Name string `vic:"0.1" scope:"read-only" key:"common/name"`
|
||
|
||
// ID corresponds to that of the primary session
|
||
ID string `vic:"0.1" scope:"read-only" key:"common/id"`
|
||
|
||
// Debug is a numeric level that controls extent of debugging
|
||
DebugLevel int `vic:"0.1" scope:"read-only" key:"diagnostics/debug"`
|
||
|
||
// Exclusive access to childPidTable
|
||
pidMutex sync.Mutex `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
|
||
// Set of child PIDs created by us.
|
||
pids map[int]*SessionConfig `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
|
||
// Sessions is the set of sessions currently hosted by this executor
|
||
// These are keyed by session ID
|
||
Sessions map[string]*SessionConfig `vic:"0.1" scope:"read-only" key:"sessions"`
|
||
|
||
// Execs is the set of non-persistent sessions hosted by this executor
|
||
Execs map[string]*SessionConfig `vic:"0.1" scope:"read-only,non-persistent" key:"execs"`
|
||
|
||
// Maps the mount name to the detail mount specification
|
||
Mounts map[string]executor.MountSpec `vic:"0.1" scope:"read-only" key:"mounts"`
|
||
|
||
// This describes an executors presence on a network, and contains sufficient
|
||
// information to configure the interface in the guest.
|
||
Networks map[string]*NetworkEndpoint `vic:"0.1" scope:"read-only" key:"networks"`
|
||
|
||
// Key is the host key used during communicate back with the Interaction endpoint if any
|
||
// Used if the in-guest tether is responsible for authenticating the connection
|
||
Key []byte `vic:"0.1" scope:"read-only" key:"key"`
|
||
|
||
// AsymmetricRouting is set to true if the VCH needs to be setup for asymmetric routing
|
||
AsymmetricRouting bool `vic:"0.1" scope:"read-only" key:"asymrouting"`
|
||
|
||
// Hostname and domainname provided by personality
|
||
Hostname string `vic:"0.1" scope:"read-only" key:"hostname"`
|
||
Domainname string `vic:"0.1" scope:"read-only" key:"domainname"`
|
||
}
|
||
|
||
// SessionConfig defines the content of a session - this maps to the root of a process tree
|
||
// inside an executor
|
||
// This is close to but not perfectly aligned with the new docker/docker/daemon/execdriver/driver:CommonProcessConfig
|
||
type SessionConfig struct {
|
||
// Protects the structure
|
||
sync.Mutex `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
|
||
// The primary session may have the same ID as the executor owning it
|
||
executor.Common `vic:"0.1" scope:"read-only" key:"common"`
|
||
executor.Detail `vic:"0.1" scope:"read-write" key:"detail"`
|
||
|
||
// Diagnostics holds basic diagnostics data
|
||
Diagnostics executor.Diagnostics `vic:"0.1" scope:"read-write" key:"diagnostics"`
|
||
|
||
// The primary process for the session
|
||
Cmd exec.Cmd `vic:"0.1" scope:"read-only" key:"cmd" recurse:"depth=2,nofollow"`
|
||
|
||
// The exit status of the process, if any
|
||
ExitStatus int `vic:"0.1" scope:"read-write" key:"status"`
|
||
|
||
Started string `vic:"0.1" scope:"read-write" key:"started"`
|
||
|
||
// Allow attach
|
||
Attach bool `vic:"0.1" scope:"read-only" key:"attach"`
|
||
|
||
OpenStdin bool `vic:"0.1" scope:"read-only" key:"openstdin"`
|
||
|
||
// Delay launching the Cmd until an attach request comes
|
||
RunBlock bool `vic:"0.1" scope:"read-write" key:"runblock"`
|
||
|
||
// Should this config be activated or not
|
||
Active bool `vic:"0.1" scope:"read-only" key:"active"`
|
||
|
||
// Allocate a tty or not
|
||
Tty bool `vic:"0.1" scope:"read-only" key:"tty"`
|
||
|
||
// Restart controls whether a process gets relaunched if it exists
|
||
Restart bool `vic:"0.1" scope:"read-only" key:"restart"`
|
||
|
||
// StopSignal is the signal name or number used to stop a container
|
||
StopSignal string `vic:"0.1" scope:"read-only" key:"stopSignal"`
|
||
|
||
// User and group for setuid programs
|
||
User string `vic:"0.1" scope:"read-only" key:"user"`
|
||
Group string `vic:"0.1" scope:"read-only" key:"group"`
|
||
|
||
// if there's a pty then we need additional management data
|
||
Pty *os.File `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
Outwriter dio.DynamicMultiWriter `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
Errwriter dio.DynamicMultiWriter `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
Reader dio.DynamicMultiReader `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
|
||
StdinPipe io.WriteCloser `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
StdoutPipe io.ReadCloser `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
StderrPipe io.ReadCloser `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
|
||
// Blocks launching the process.
|
||
// The channel contains no value; we’re only interested in its closed property.
|
||
ClearToLaunch chan struct{} `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
|
||
wait *sync.WaitGroup
|
||
|
||
// record the config prefix associated with this session - allows partial encoding
|
||
// without hardcoding the sessions parent in the config.
|
||
// This is basically a workaround for:
|
||
// a. not having integrated Exec sessions in to the Sessions map
|
||
// b. having only an implementation of CalculateKeys that requires a prefix instead
|
||
// of performing a search
|
||
extraconfigKey string
|
||
}
|
||
|
||
type NetworkEndpoint struct {
|
||
// Common.Name - the nic alias requested (only one name and one alias possible in linux)
|
||
// Common.ID - pci slot of the vnic allowing for interface identifcation in-guest
|
||
executor.Common
|
||
|
||
// Whether this endpoint's IP was specified by the client (true if it was)
|
||
Static bool `vic:"0.1" scope:"read-only" key:"static"`
|
||
|
||
// IP address to assign
|
||
IP *net.IPNet `vic:"0.1" scope:"read-only" key:"ip"`
|
||
|
||
// Actual IP address assigned
|
||
Assigned net.IPNet `vic:"0.1" scope:"read-write" key:"assigned"`
|
||
|
||
// The network in which this information should be interpreted. This is embedded directly rather than
|
||
// as a pointer so that we can ensure the data is consistent
|
||
Network executor.ContainerNetwork `vic:"0.1" scope:"read-only" key:"network"`
|
||
|
||
// DHCP runtime info
|
||
DHCP *DHCPInfo `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
|
||
Ports []string `vic:"0.1" scope:"read-only" key:"ports"`
|
||
|
||
// is this endpoint connected to an internal network?
|
||
Internal bool `vic:"0.1" scope:"read-only" key:"internal"`
|
||
|
||
// whether the network config was successfully applied
|
||
configured bool `vic:"0.1" scope:"read-only" recurse:"depth=0"`
|
||
}
|
||
|
||
func (e *NetworkEndpoint) IsDynamic() bool {
|
||
return !e.Static && (e.IP == nil || ip.IsUnspecifiedIP(e.IP.IP))
|
||
}
|
||
|
||
type DHCPInfo struct {
|
||
Assigned net.IPNet
|
||
Nameservers []net.IP
|
||
Gateway net.IPNet
|
||
}
|