blob: 8a55cc7b7503a175b8d64694bd31cfe1e92e331f [file] [log] [blame]
// sets up a kubernetes cluster (using kind)
def call(Map config) {
// note that I can't define this outside the function as there's no global scope in Groovy
def defaultConfig = [
branch: "master",
nodes: 1,
name: "kind-ci"
]
if (!config) {
config = [:]
}
def cfg = defaultConfig + config
println "Deploying Kind cluster with the following parameters: ${cfg}."
// TODO support different configs
def data = """
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: worker
- role: worker
- role: control-plane
kubeadmConfigPatches:
- |
kind: InitConfiguration
nodeRegistration:
kubeletExtraArgs:
node-labels: "ingress-ready=true"
extraPortMappings:
- containerPort: 80
hostPort: 80
protocol: TCP
- containerPort: 443
hostPort: 443
protocol: TCP
- containerPort: 30115
hostPort: 30115
- containerPort: 30120
hostPort: 30120
"""
writeFile(file: 'kind.cfg', text: data)
// TODO skip cluster creation if cluster is already there
sh """
mkdir -p $WORKSPACE/bin
# download kind (should we add it to the base image?)
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.9.0/kind-linux-amd64
chmod +x ./kind
mv ./kind $WORKSPACE/bin/kind
# install voltctl
HOSTOS="\$(uname -s | tr "[:upper:]" "[:lower:"])"
HOSTARCH="\$(uname -m | tr "[:upper:]" "[:lower:"])"
if [ "\$HOSTARCH" == "x86_64" ]; then
HOSTARCH="amd64"
fi
if [ "${cfg.branch}" == "voltha-2.8" ]; then
VC_VERSION="1.6.11"
else
VC_VERSION="\$(curl --fail -sSL https://api.github.com/repos/opencord/voltctl/releases/latest | jq -r .tag_name | sed -e 's/^v//g')"
fi
curl -Lo $WORKSPACE/bin/voltctl https://github.com/opencord/voltctl/releases/download/v\$VC_VERSION/voltctl-\$VC_VERSION-\$HOSTOS-\$HOSTARCH
chmod +x $WORKSPACE/bin/voltctl
# start the kind cluster
kind create cluster --name ${cfg.name} --config kind.cfg
# remove NoSchedule taint from nodes
for MNODE in \$(kubectl get node --selector='node-role.kubernetes.io/master' -o json | jq -r '.items[].metadata.name'); do
kubectl taint node "\$MNODE" node-role.kubernetes.io/master:NoSchedule-
done
mkdir -p $HOME/.volt
voltctl -s localhost:55555 config > $HOME/.volt/config
mkdir -p $HOME/.kube
kind get kubeconfig --name ${cfg.name} > $HOME/.kube/config
# download kail
bash <( curl -sfL https://raw.githubusercontent.com/boz/kail/master/godownloader.sh) -b "$WORKSPACE/bin"
"""
}