Created
January 26, 2021 20:23
-
-
Save sijie/ef64cae364f894274d26464fc7d06f41 to your computer and use it in GitHub Desktop.
decommision
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
#!/usr/bin/env bash | |
# | |
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information | |
# regarding copyright ownership. The ASF licenses this file | |
# to you 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. | |
# | |
set -e | |
CHART_HOME=$(unset CDPATH && cd $(dirname "${BASH_SOURCE[0]}")/../.. && pwd) | |
cd ${CHART_HOME} | |
usage() { | |
cat <<EOF | |
This script is used to decommission a bookkeeper cluster. | |
Options: | |
-h,--help prints the usage message | |
-n,--namespace the k8s namespace to run the bookkeeper cluster | |
-r,--replicas the number of bookies of the bookkeeper cluster | |
-s,--statefulset the name of the bookkeeper statefulset | |
-nn,--new-bookie-namespace the k8s namespace to run the bookkeeper autorecovery | |
-ns,--new-bookie-statefulset the pod name of the bookkeeper autorecovery pod | |
Usage: | |
$0 -n old -r 3 -s old-cluster -nn new -ns new-bookie-cluster | |
EOF | |
} | |
while [[ $# -gt 0 ]] | |
do | |
key="$1" | |
case $key in | |
-n|--namespace) | |
namespace="$2" | |
shift | |
shift | |
;; | |
-r|--replicas) | |
replicas="$2" | |
shift | |
shift | |
;; | |
-s|--statefulset) | |
statefulset="$2" | |
shift | |
shift | |
;; | |
-nn|--new-bookie-namespace) | |
new_namespace="$2" | |
shift | |
shift | |
;; | |
-ns|--new-bookie-statefulset) | |
new_statefulset="$2" | |
shift | |
shift | |
;; | |
-h|--help) | |
usage | |
exit 0 | |
;; | |
*) | |
echo "unknown option: $key" | |
usage | |
exit 1 | |
;; | |
esac | |
done | |
namespace=${namespace:-pulsar} | |
replicas=${replicas:-3} | |
statefulset=${statefulset:-dev} | |
new_namespace=${new_namespace:-pulsar} | |
new_statefulset=${new_statefulset:-dev} | |
recover_bookie() { | |
local bookie=$1 | |
echo "replicating old bookie ${statefulset}-${bookie}.${statefulset}.${namespace}.svc.cluster.local:3181" | |
echo kubectl -n ${new_namespace} exec -it ${new_statefulset}-${bookie} -- bin/bookkeeper shell recover -f ${statefulset}-${bookie}.${statefulset}.${namespace}.svc.cluster.local:3181 | |
kubectl -n ${new_namespace} exec -it ${new_statefulset}-${bookie} -- bin/bookkeeper shell recover -f ${statefulset}-${bookie}.${statefulset}.${namespace}.svc.cluster.local:3181 | |
} | |
for ((i=replicas; i>=1; i--)) | |
do | |
j=$((i-1)) | |
recover_bookie $j & | |
done | |
wait | |
echo "All done" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment