Files
virtual-kubelet/vendor/github.com/vmware/vic/lib/migration/migrator.go
Loc Nguyen 513cebe7b7 VMware vSphere Integrated Containers provider (#206)
* 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
2018-06-04 15:41:32 -07:00

117 lines
4.1 KiB
Go

// Copyright 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 migration
import (
"context"
"strconv"
"github.com/vmware/vic/lib/migration/errors"
"github.com/vmware/vic/lib/migration/feature"
"github.com/vmware/vic/lib/migration/manager"
// imported for the side effect
_ "github.com/vmware/vic/lib/migration/plugins"
"github.com/vmware/vic/pkg/vsphere/session"
)
// MigrateApplianceConfigure migrate VCH appliance configuration, including guestinfo, keyvaluestore, or any other configuration related change.
//
// Note: Input map conf is VCH appliance guestinfo map, and returned map is the new guestinfo.
// Returns false without error means no need to migrate, and returned map is the copy of input map
// If there is error returned, returns true and half-migrated value
func MigrateApplianceConfig(ctx context.Context, s *session.Session, conf map[string]string) (map[string]string, bool, error) {
return migrateConfig(ctx, s, conf, manager.ApplianceConfigure, manager.ApplianceVersionKey)
}
// MigrateContainerConfigure migrate container configuration
//
// Note: Migrated data will be returned in map, and input object is not changed.
// Returns false without error means no need to migrate, and returned map is the copy of input map
// If there is error returned, returns true and half-migrated value
func MigrateContainerConfig(conf map[string]string) (map[string]string, bool, error) {
return migrateConfig(nil, nil, conf, manager.ContainerConfigure, manager.ContainerVersionKey)
}
// ContainerDataIsOlder returns true if input container config is older than latest version. If error happens, always returns false
func ContainerDataIsOlder(conf map[string]string) (bool, error) {
return dataIsOlder(conf, manager.ContainerConfigure, manager.ContainerVersionKey)
}
// ApplianceDataIsOlder returns true if input appliance config is older than latest version. If error happens, always returns false
func ApplianceDataIsOlder(conf map[string]string) (bool, error) {
return dataIsOlder(conf, manager.ApplianceConfigure, manager.ApplianceVersionKey)
}
// ContainerDataVersion returns container data version
func ContainerDataVersion(conf map[string]string) (int, error) {
return getCurrentID(conf, manager.ContainerVersionKey)
}
// dataIsOlder returns true if data is older than latest. If error happens, always returns false
func dataIsOlder(data map[string]string, target string, verKey string) (bool, error) {
var currentID int
var err error
if currentID, err = getCurrentID(data, verKey); err != nil {
return false, err
}
latestVer := manager.Migrator.LatestVersion(target)
return latestVer > currentID, nil
}
func migrateConfig(ctx context.Context, s *session.Session, data map[string]string, target string, verKey string) (map[string]string, bool, error) {
dst := make(map[string]string)
for k, v := range data {
dst[k] = v
}
if len(data) == 0 {
return dst, false, nil
}
var currentID int
var err error
if currentID, err = getCurrentID(data, verKey); err != nil {
return dst, false, err
}
latestVer := manager.Migrator.LatestVersion(target)
if latestVer <= currentID {
return dst, false, nil
}
_, err = manager.Migrator.Migrate(ctx, s, target, currentID, dst)
dst[verKey] = strconv.Itoa(feature.MaxPluginVersion - 1)
return dst, true, err
}
func getCurrentID(data map[string]string, verKey string) (int, error) {
var currentID int
var err error
strID := data[verKey]
if strID == "" {
return 0, nil
}
if currentID, err = strconv.Atoi(strID); err != nil {
return 0, &errors.InvalidMigrationVersion{
Version: strID,
Err: err,
}
}
return currentID, nil
}