-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add main function, and use utils.sh
- Loading branch information
Showing
2 changed files
with
89 additions
and
85 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
#!/bin/bash | ||
|
||
set -o errexit \ | ||
-o nounset | ||
|
||
HIVE_OPERATOR_NS="hive" | ||
KUBECTL=$( which kubectl 2> /dev/null || which oc 2> /dev/null) | ||
|
||
main() { | ||
log "enter hive installation" | ||
local skip_deployments=${1:-"none"} | ||
trap cleanup EXIT | ||
|
||
if [ ! -f "./hack/hive/hive-config/hive-deployment.yaml" ] || [ ! -d "./hack/hive/hive-config/crds" ] ; then | ||
log "hive config is missing, generating config, please rerun this script afterwards" | ||
./hack/hive/hive-generate-config.sh | ||
if [ $? -ne 0 ]; then | ||
abort "error generating the hive configs" | ||
fi | ||
fi | ||
|
||
if [ -z "$PULL_SECRET" ]; then | ||
log "global pull secret variable required, please source ./env" | ||
exit | ||
fi | ||
verify_tools | ||
|
||
if [ $( $KUBECTL get namespace $HIVE_OPERATOR_NS -o yaml 2>/dev/null | wc -l ) -ne 0 ]; then | ||
log "hive is already installed in namespace $HIVE_OPERATOR_NS" | ||
log -n "would you like to reapply the configs? (y/N): " | ||
read answer | ||
if [[ "$answer" != "y" ]]; then | ||
exit | ||
fi | ||
else | ||
$KUBECTL create namespace $HIVE_OPERATOR_NS | ||
fi | ||
|
||
log "Hive is ready to be installed" | ||
$KUBECTL apply -f ./hack/hive/hive-config/crds | ||
echo "$PULL_SECRET" > /tmp/.tmp-secret | ||
# Using dry-run allows updates to work seamlessly | ||
$KUBECTL create secret generic hive-global-pull-secret --from-file=.dockerconfigjson=/tmp/.tmp-secret --type=kubernetes.io/dockerconfigjson --namespace $HIVE_OPERATOR_NS -o yaml --dry-run=client | $KUBECTL apply -f - 2>/dev/null | ||
rm -f /tmp/.tmp-secret | ||
|
||
sed "s/HIVE_OPERATOR_NS/$HIVE_OPERATOR_NS/g" hack/hive/hive-config/hive-config.yaml | $KUBECTL apply -f - | ||
$KUBECTL apply -f ./hack/hive/hive-config/hive-additional-install-log-regexes.yaml | ||
$KUBECTL apply -f ./hack/hive/hive-config/hive-deployment.yaml | ||
$KUBECTL wait --timeout=5m --for=condition=Available --namespace $HIVE_OPERATOR_NS deployment/hive-operator | ||
log "\nHive is installed." | ||
} | ||
|
||
function download_tmp_kubectl { | ||
curl -sLO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" | ||
if [ $? -ne 0 ]; then | ||
abort ": error downloading kubectl" | ||
fi | ||
chmod 755 kubectl | ||
KUBECTL="$(pwd)/kubectl" | ||
} | ||
|
||
function verify_tools { | ||
if [ ! -z "$KUBECTL" ]; then | ||
return | ||
fi | ||
log "kubectl or oc not detected, downloading" | ||
download_tmp_kubectl | ||
log "done: downloading kubectl/oc was completed" | ||
|
||
if [ $( $KUBECTL get nodes 2>/dev/null | wc -l ) -eq 0 ]; then | ||
abort "unable to connect to the cluster" | ||
fi | ||
} | ||
|
||
if [ ! -f go.mod ] || [ ! -d ".git" ]; then | ||
echo "this script must by run from the repo's root directory" | ||
exit 1 | ||
fi | ||
|
||
declare -r utils=hack/util.sh | ||
if [ -f "$utils" ]; then | ||
source "$utils" | ||
fi | ||
|
||
function cleanup { | ||
[ -f "$(pwd)/kubectl" ] && rm -f "$(pwd)/kubectl" | ||
} | ||
|
||
main "$@" |