* 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
144 lines
3.4 KiB
Go
144 lines
3.4 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 trace
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"os"
|
|
"runtime"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/Sirupsen/logrus"
|
|
|
|
"github.com/vmware/govmomi/vim25/types"
|
|
"github.com/vmware/vic/pkg/log"
|
|
)
|
|
|
|
var tracingEnabled = true
|
|
|
|
// Enable global tracing.
|
|
func EnableTracing() {
|
|
tracingEnabled = true
|
|
}
|
|
|
|
// Disable global tracing.
|
|
func DisableTracing() {
|
|
tracingEnabled = false
|
|
}
|
|
|
|
var Logger = &logrus.Logger{
|
|
Out: os.Stderr,
|
|
// We're using our own text formatter to skip the \n and \t escaping logrus
|
|
// was doing on non TTY Out (we redirect to a file) descriptors.
|
|
Formatter: log.NewTextFormatter(),
|
|
Hooks: make(logrus.LevelHooks),
|
|
Level: logrus.InfoLevel,
|
|
}
|
|
|
|
// trace object used to grab run-time state
|
|
type Message struct {
|
|
msg string
|
|
funcName string
|
|
lineNo int
|
|
operationID string
|
|
|
|
startTime time.Time
|
|
}
|
|
|
|
func (t *Message) delta() time.Duration {
|
|
if t == nil {
|
|
return 0
|
|
}
|
|
return time.Now().Sub(t.startTime)
|
|
}
|
|
|
|
// Add Syslog hook
|
|
// This method is not thread safe, this is currently
|
|
// not a problem because it is only called once from main
|
|
func InitLogger(cfg *log.LoggingConfig) error {
|
|
hook, err := log.CreateSyslogHook(cfg)
|
|
if err == nil && hook != nil {
|
|
Logger.Hooks.Add(hook)
|
|
}
|
|
return err
|
|
}
|
|
|
|
// begin a trace from this stack frame less the skip.
|
|
func newTrace(msg string, skip int, opID string) *Message {
|
|
pc, _, line, ok := runtime.Caller(skip)
|
|
if !ok {
|
|
return nil
|
|
}
|
|
|
|
// lets only return the func name from the repo (vic)
|
|
// down - i.e. vic/lib/etc vs. github.com/vmware/vic/lib/etc
|
|
// if github.com/vmware doesn't match then the original is returned
|
|
name := strings.TrimPrefix(runtime.FuncForPC(pc).Name(), "github.com/vmware/")
|
|
|
|
message := Message{
|
|
msg: msg,
|
|
funcName: name,
|
|
lineNo: line,
|
|
|
|
startTime: time.Now(),
|
|
}
|
|
|
|
// if we have an operationID then format the output
|
|
if opID != "" {
|
|
message.operationID = fmt.Sprintf("op=%s", opID)
|
|
}
|
|
|
|
return &message
|
|
}
|
|
|
|
// Begin starts the trace. Msg is the msg to log.
|
|
// context provided to allow tracing of operationID
|
|
// context added as optional to avoid breaking current usage
|
|
func Begin(msg string, ctx ...context.Context) *Message {
|
|
if tracingEnabled && Logger.Level >= logrus.DebugLevel {
|
|
var opID string
|
|
// populate operationID if provided
|
|
if len(ctx) == 1 {
|
|
if id, ok := ctx[0].Value(types.ID{}).(string); ok {
|
|
opID = id
|
|
}
|
|
}
|
|
if t := newTrace(msg, 2, opID); t != nil {
|
|
if msg == "" {
|
|
Logger.Debugf("[BEGIN] %s [%s:%d]", t.operationID, t.funcName, t.lineNo)
|
|
} else {
|
|
Logger.Debugf("[BEGIN] %s [%s:%d] %s", t.operationID, t.funcName, t.lineNo, t.msg)
|
|
}
|
|
return t
|
|
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// End ends the trace.
|
|
func End(t *Message) {
|
|
if t == nil {
|
|
return
|
|
}
|
|
Logger.Debugf("[ END ] %s [%s:%d] [%s] %s", t.operationID, t.funcName, t.lineNo, t.delta(), t.msg)
|
|
}
|
|
|
|
func SetLogLevel(level uint8) {
|
|
Logger.Level = logrus.Level(level)
|
|
}
|