2020-11-03 12:51:57 +00:00
|
|
|
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
ACTION=$1
|
|
|
|
ARTIFACTS=("$2")
|
|
|
|
LOCATION=${3:-""}
|
|
|
|
|
|
|
|
DEPLOY_DIR=$( dirname $( realpath $0 ))
|
|
|
|
which yq || { echo "yq not found!"; exit 1; }
|
|
|
|
|
|
|
|
TMPDIR=$(mktemp -d kubezero.XXX)
|
|
|
|
|
|
|
|
# First lets generate kubezero.yaml
|
|
|
|
# This will be stored as secret during the initial kubezero chart install
|
|
|
|
helm template $DEPLOY_DIR -f values.yaml -f cloudbender.yaml > $TMPDIR/kubezero.yaml
|
|
|
|
|
|
|
|
if [ ${ARTIFACTS[0]} == "all" ]; then
|
|
|
|
ARTIFACTS=($(yq r -p p $TMPDIR/kubezero.yaml "kubezero.*.enabled" | awk -F "." '{print $2}'))
|
|
|
|
fi
|
2020-11-03 12:51:57 +00:00
|
|
|
|
|
|
|
# Update only if we use upstream
|
|
|
|
if [ -z "$LOCATION" ]; then
|
|
|
|
helm repo add kubezero https://zero-down-time.github.io/kubezero
|
|
|
|
helm repo update
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Waits for max 300s and retries
|
|
|
|
function wait_for() {
|
|
|
|
local TRIES=0
|
|
|
|
while true; do
|
2020-11-21 12:24:57 +00:00
|
|
|
eval " $@" && break
|
|
|
|
[ $TRIES -eq 100 ] && return 1
|
2020-11-03 12:51:57 +00:00
|
|
|
let TRIES=$TRIES+1
|
|
|
|
sleep 3
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
|
|
|
|
function chart_location() {
|
|
|
|
if [ -z "$LOCATION" ]; then
|
|
|
|
echo "$1 --repo https://zero-down-time.github.io/kubezero"
|
|
|
|
else
|
|
|
|
echo "$LOCATION/$1"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-03 12:51:57 +00:00
|
|
|
function _helm() {
|
|
|
|
local action=$1
|
|
|
|
local chart=$2
|
|
|
|
local release=$3
|
|
|
|
local namespace=$4
|
|
|
|
shift 4
|
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
helm template $(chart_location $chart) --namespace $namespace --name-template $release --skip-crds $@ > $TMPDIR/helm.yaml
|
2020-11-03 12:51:57 +00:00
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
if [ $action == "apply" ]; then
|
|
|
|
# make sure namespace exists prior to calling helm as the create-namespace options doesn't work
|
|
|
|
kubectl get ns $namespace || kubectl create ns $namespace
|
|
|
|
fi
|
|
|
|
|
|
|
|
# If resources are out of the single $namespace, apply without restrictions
|
|
|
|
nr_ns=$(grep -e '^ namespace:' $TMPDIR/helm.yaml | sed "s/\"//g" | sort | uniq | wc -l)
|
|
|
|
if [ $nr_ns -gt 1 ]; then
|
|
|
|
kubectl $action -f $TMPDIR/helm.yaml
|
2020-11-03 12:51:57 +00:00
|
|
|
else
|
2020-11-21 12:24:57 +00:00
|
|
|
kubectl $action --namespace $namespace -f $TMPDIR/helm.yaml
|
2020-11-03 12:51:57 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
|
2020-11-03 12:51:57 +00:00
|
|
|
function deploy() {
|
|
|
|
_helm apply $@
|
|
|
|
}
|
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
|
2020-11-03 12:51:57 +00:00
|
|
|
function delete() {
|
|
|
|
_helm delete $@
|
|
|
|
}
|
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
|
|
|
|
function is_enabled() {
|
|
|
|
local chart=$1
|
|
|
|
|
|
|
|
enabled=$(yq r $TMPDIR/kubezero.yaml kubezero.${chart}.enabled)
|
|
|
|
if [ "$enabled" == "true" ]; then
|
|
|
|
yq r $TMPDIR/kubezero.yaml kubezero.${chart}.values > $TMPDIR/values.yaml
|
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
##########
|
|
|
|
# Calico #
|
|
|
|
##########
|
|
|
|
function calico() {
|
|
|
|
local chart="kubezero-calico"
|
|
|
|
local release="calico"
|
|
|
|
local namespace="kube-system"
|
|
|
|
|
|
|
|
local task=$1
|
|
|
|
|
|
|
|
if [ $task == "deploy" ]; then
|
|
|
|
deploy $chart $release $namespace -f $TMPDIR/values.yaml && rc=$? || rc=$?
|
|
|
|
kubectl apply -f $TMPDIR/helm.yaml
|
|
|
|
# Don't delete the only CNI
|
|
|
|
#elif [ $task == "delete" ]; then
|
|
|
|
# delete $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
elif [ $task == "crds" ]; then
|
|
|
|
helm template $(chart_location $chart) --namespace $namespace --name-template $release --skip-crds > $TMPDIR/helm-no-crds.yaml
|
|
|
|
helm template $(chart_location $chart) --namespace $namespace --name-template $release --include-crds > $TMPDIR/helm-crds.yaml
|
|
|
|
diff -e $TMPDIR/helm-no-crds.yaml $TMPDIR/helm-crds.yaml | head -n-1 | tail -n+2 > $TMPDIR/crds.yaml
|
|
|
|
kubectl apply -f $TMPDIR/crds.yaml
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-03 12:51:57 +00:00
|
|
|
################
|
|
|
|
# cert-manager #
|
|
|
|
################
|
2020-11-21 12:24:57 +00:00
|
|
|
function cert-manager() {
|
|
|
|
local chart="kubezero-cert-manager"
|
|
|
|
local release="cert-manager"
|
|
|
|
local namespace="cert-manager"
|
2020-11-03 12:51:57 +00:00
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
local task=$1
|
2020-11-03 12:51:57 +00:00
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
if [ $task == "deploy" ]; then
|
|
|
|
deploy $chart $release $namespace -f $TMPDIR/values.yaml && rc=$? || rc=$?
|
2020-11-03 12:51:57 +00:00
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
# If any error occurs, wait for initial webhook deployment and try again
|
|
|
|
# see: https://cert-manager.io/docs/concepts/webhook/#webhook-connection-problems-shortly-after-cert-manager-installation
|
|
|
|
if [ $rc -ne 0 ]; then
|
|
|
|
wait_for "kubectl get deployment -n $namespace cert-manager-webhook"
|
|
|
|
kubectl rollout status deployment -n $namespace cert-manager-webhook
|
|
|
|
wait_for 'kubectl get validatingwebhookconfigurations -o yaml | grep "caBundle: LS0"'
|
|
|
|
deploy $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
fi
|
2020-11-03 12:51:57 +00:00
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
wait_for "kubectl get ClusterIssuer -n $namespace kubezero-local-ca-issuer"
|
|
|
|
kubectl wait --timeout=180s --for=condition=Ready -n $namespace ClusterIssuer/kubezero-local-ca-issuer
|
2020-11-03 12:51:57 +00:00
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
elif [ $task == "delete" ]; then
|
|
|
|
delete $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
kubectl delete ns $namespace
|
|
|
|
|
|
|
|
elif [ $task == "crds" ]; then
|
|
|
|
helm template $(chart_location $chart) --namespace $namespace --name-template $release --skip-crds --set cert-manager.installCRDs=false > $TMPDIR/helm-no-crds.yaml
|
|
|
|
helm template $(chart_location $chart) --namespace $namespace --name-template $release --include-crds --set cert-manager.installCRDs=true > $TMPDIR/helm-crds.yaml
|
|
|
|
diff -e $TMPDIR/helm-no-crds.yaml $TMPDIR/helm-crds.yaml | head -n-1 | tail -n+2 > $TMPDIR/crds.yaml
|
|
|
|
kubectl apply -f $TMPDIR/crds.yaml
|
|
|
|
fi
|
|
|
|
}
|
2020-11-03 12:51:57 +00:00
|
|
|
|
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
########
|
|
|
|
# Kiam #
|
|
|
|
########
|
|
|
|
function kiam() {
|
|
|
|
local chart="kubezero-kiam"
|
|
|
|
local release="kiam"
|
|
|
|
local namespace="kube-system"
|
2020-11-03 12:51:57 +00:00
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
local task=$1
|
2020-11-03 12:51:57 +00:00
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
if [ $task == "deploy" ]; then
|
|
|
|
# Certs only first
|
|
|
|
deploy $chart $release $namespace --set kiam.enabled=false
|
|
|
|
kubectl wait --timeout=120s --for=condition=Ready -n kube-system Certificate/kiam-server
|
2020-11-03 12:51:57 +00:00
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
# Make sure kube-system and cert-manager are allowed to kiam
|
|
|
|
kubectl annotate --overwrite namespace kube-system 'iam.amazonaws.com/permitted=.*'
|
|
|
|
kubectl annotate --overwrite namespace cert-manager 'iam.amazonaws.com/permitted=.*CertManagerRole.*'
|
2020-11-03 12:51:57 +00:00
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
# Get kiam rolled out and make sure it is working
|
|
|
|
deploy $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
wait_for 'kubectl get daemonset -n kube-system kiam-agent'
|
|
|
|
kubectl rollout status daemonset -n kube-system kiam-agent
|
2020-11-03 12:51:57 +00:00
|
|
|
|
2020-11-21 12:24:57 +00:00
|
|
|
elif [ $task == "delete" ]; then
|
|
|
|
delete $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#######
|
|
|
|
# EBS #
|
|
|
|
#######
|
|
|
|
function aws-ebs-csi-driver() {
|
|
|
|
local chart="kubezero-aws-ebs-csi-driver"
|
|
|
|
local release="aws-ebs-csi-driver"
|
|
|
|
local namespace="kube-system"
|
|
|
|
|
|
|
|
local task=$1
|
|
|
|
|
|
|
|
if [ $task == "deploy" ]; then
|
|
|
|
deploy $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
elif [ $task == "delete" ]; then
|
|
|
|
delete $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#########
|
|
|
|
# Istio #
|
|
|
|
#########
|
|
|
|
function istio() {
|
|
|
|
local chart="kubezero-istio"
|
|
|
|
local release="istio"
|
|
|
|
local namespace="istio-system"
|
|
|
|
|
|
|
|
local task=$1
|
|
|
|
|
|
|
|
if [ $task == "deploy" ]; then
|
|
|
|
deploy $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
|
|
|
|
elif [ $task == "delete" ]; then
|
|
|
|
for i in $(kubectl get istiooperators -A -o name); do
|
|
|
|
kubectl delete $i -n istio-system
|
|
|
|
done
|
|
|
|
delete $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
kubectl delete ns istio-system
|
|
|
|
|
|
|
|
elif [ $task == "crds" ]; then
|
|
|
|
helm template $(chart_location $chart) --namespace $namespace --name-template $release --skip-crds > $TMPDIR/helm-no-crds.yaml
|
|
|
|
helm template $(chart_location $chart) --namespace $namespace --name-template $release --include-crds > $TMPDIR/helm-crds.yaml
|
|
|
|
diff -e $TMPDIR/helm-no-crds.yaml $TMPDIR/helm-crds.yaml | head -n-1 | tail -n+2 > $TMPDIR/crds.yaml
|
|
|
|
kubectl apply -f $TMPDIR/crds.yaml
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
###########
|
|
|
|
# Metrics #
|
|
|
|
###########
|
|
|
|
function metrics() {
|
|
|
|
local chart="kubezero-metrics"
|
|
|
|
local release="metrics"
|
|
|
|
local namespace="monitoring"
|
|
|
|
|
|
|
|
local task=$1
|
|
|
|
|
|
|
|
if [ $task == "deploy" ]; then
|
|
|
|
deploy $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
|
|
|
|
elif [ $task == "delete" ]; then
|
|
|
|
delete $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
kubectl delete ns monitoring
|
|
|
|
|
|
|
|
elif [ $task == "crds" ]; then
|
|
|
|
helm template $(chart_location $chart) --namespace $namespace --name-template $release --skip-crds > $TMPDIR/helm-no-crds.yaml
|
|
|
|
helm template $(chart_location $chart) --namespace $namespace --name-template $release --include-crds > $TMPDIR/helm-crds.yaml
|
|
|
|
diff -e $TMPDIR/helm-no-crds.yaml $TMPDIR/helm-crds.yaml | head -n-1 | tail -n+2 > $TMPDIR/crds.yaml
|
|
|
|
kubectl apply -f $TMPDIR/crds.yaml
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
###########
|
|
|
|
# Logging #
|
|
|
|
###########
|
|
|
|
function logging() {
|
|
|
|
local chart="kubezero-logging"
|
|
|
|
local release="logging"
|
|
|
|
local namespace="logging"
|
|
|
|
|
|
|
|
local task=$1
|
|
|
|
|
|
|
|
if [ $task == "deploy" ]; then
|
|
|
|
deploy $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
|
|
|
|
kubectl annotate --overwrite namespace logging 'iam.amazonaws.com/permitted=.*ElasticSearchSnapshots.*'
|
|
|
|
|
|
|
|
elif [ $task == "delete" ]; then
|
|
|
|
delete $chart $release $namespace -f $TMPDIR/values.yaml
|
|
|
|
kubectl delete ns logging
|
|
|
|
|
|
|
|
# Doesnt work right now due to V2 Helm implementation of the eck-operator-crd chart
|
|
|
|
#elif [ $task == "crds" ]; then
|
|
|
|
# helm template $(chart_location $chart) --namespace $namespace --name-template $release --skip-crds > $TMPDIR/helm-no-crds.yaml
|
|
|
|
# helm template $(chart_location $chart) --namespace $namespace --name-template $release --include-crds > $TMPDIR/helm-crds.yaml
|
|
|
|
# diff -e $TMPDIR/helm-no-crds.yaml $TMPDIR/helm-crds.yaml | head -n-1 | tail -n+2 > $TMPDIR/crds.yaml
|
|
|
|
# kubectl apply -f $TMPDIR/crds.yaml
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
## MAIN ##
|
|
|
|
if [ $1 == "deploy" ]; then
|
|
|
|
for t in ${ARTIFACTS[@]}; do
|
|
|
|
is_enabled $t && $t deploy
|
|
|
|
done
|
|
|
|
|
|
|
|
elif [ $1 == "crds" ]; then
|
|
|
|
for t in ${ARTIFACTS[@]}; do
|
|
|
|
is_enabled $t && $t crds
|
|
|
|
done
|
|
|
|
|
|
|
|
# Delete in reverse order, continue even if errors
|
|
|
|
elif [ $1 == "delete" ]; then
|
|
|
|
set +e
|
|
|
|
for (( idx=${#ARTIFACTS[@]}-1 ; idx>=0 ; idx-- )) ; do
|
|
|
|
is_enabled ${ARTIFACTS[idx]} && ${ARTIFACTS[idx]} delete
|
|
|
|
done
|
2020-11-03 12:51:57 +00:00
|
|
|
fi
|
2020-11-21 12:24:57 +00:00
|
|
|
|
|
|
|
[ "$DEBUG" == "" ] && rm -rf $TMPDIR
|