* 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
103 lines
3.1 KiB
Bash
Executable File
103 lines
3.1 KiB
Bash
Executable File
#!/bin/bash
|
|
# 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.
|
|
|
|
# Build the bootstrap filesystem ontop of the base
|
|
|
|
# exit on failure
|
|
set -e
|
|
|
|
if [ -n "$DEBUG" ]; then
|
|
set -x
|
|
fi
|
|
|
|
DIR=$(dirname $(readlink -f "$0"))
|
|
. $DIR/base/utils.sh
|
|
|
|
function usage() {
|
|
echo "Usage: $0 -p staged-package(tgz) -b binary-dir -d <activates debug when set>" 1>&2
|
|
exit 1
|
|
}
|
|
|
|
while getopts "p:b:d:" flag
|
|
do
|
|
case $flag in
|
|
|
|
p)
|
|
# Required. Package name
|
|
package="$OPTARG"
|
|
;;
|
|
|
|
b)
|
|
# Required. Target for iso and source for components
|
|
BIN="$OPTARG"
|
|
;;
|
|
d)
|
|
# Optional. directs script to make a debug iso instead of a production iso.
|
|
debug="$OPTARG"
|
|
;;
|
|
*)
|
|
|
|
usage
|
|
;;
|
|
esac
|
|
done
|
|
|
|
shift $((OPTIND-1))
|
|
|
|
# check there were no extra args and the required ones are set
|
|
if [ ! -z "$*" -o -z "$package" -o -z "${BIN}" ]; then
|
|
usage
|
|
fi
|
|
|
|
#################################################################
|
|
# Above: arg parsing and setup
|
|
# Below: the image authoring
|
|
#################################################################
|
|
|
|
PKGDIR=$(mktemp -d)
|
|
|
|
unpack $package $PKGDIR
|
|
|
|
#selecting the init script as our entry point.
|
|
if [ -v debug ]; then
|
|
export ISONAME="bootstrap-debug.iso"
|
|
cp ${DIR}/bootstrap/bootstrap.debug $(rootfs_dir $PKGDIR)/bin/bootstrap
|
|
cp ${BIN}/rpctool $(rootfs_dir $PKGDIR)/sbin/
|
|
else
|
|
export ISONAME="bootstrap.iso"
|
|
cp ${DIR}/bootstrap/bootstrap $(rootfs_dir $PKGDIR)/bin/bootstrap
|
|
fi
|
|
|
|
# copy in our components
|
|
cp ${BIN}/tether-linux $(rootfs_dir $PKGDIR)/bin/tether
|
|
|
|
# kick off our components at boot time
|
|
mkdir -p $(rootfs_dir $PKGDIR)/etc/systemd/system/vic.target.wants
|
|
cp ${DIR}/bootstrap/tether.service $(rootfs_dir $PKGDIR)/etc/systemd/system/
|
|
cp ${DIR}/appliance/vic.target $(rootfs_dir $PKGDIR)/etc/systemd/system/
|
|
ln -s /etc/systemd/system/tether.service $(rootfs_dir $PKGDIR)/etc/systemd/system/vic.target.wants/
|
|
ln -sf /etc/systemd/system/vic.target $(rootfs_dir $PKGDIR)/etc/systemd/system/default.target
|
|
|
|
# disable networkd given we manage the link state directly
|
|
rm -f $(rootfs_dir $PKGDIR)/etc/systemd/system/multi-user.target.wants/systemd-networkd.service
|
|
rm -f $(rootfs_dir $PKGDIR)/etc/systemd/system/multi-user.target.wants/systemd-resolved.service
|
|
rm -f $(rootfs_dir $PKGDIR)/etc/systemd/system/sockets.target.wants/systemd-networkd.socket
|
|
|
|
# do not use the systemd dhcp client
|
|
rm -f $(rootfs_dir $PKGDIR)/etc/systemd/network/*
|
|
cp ${DIR}/base/no-dhcp.network $(rootfs_dir $PKGDIR)/etc/systemd/network/
|
|
|
|
generate_iso $PKGDIR $BIN/$ISONAME /lib/systemd/systemd
|