File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed
Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -47,7 +47,6 @@ export OPS_MANAGER_NAMESPACE="operator-testing-50-current"
4747export LOCAL_RUN=true
4848
4949if [[ " ${OVERRIDE_VERSION_ID:- } " != " " ]]; then
50- echo " Overriding operator related versions with ${OVERRIDE_VERSION_ID} "
5150 OPERATOR_VERSION=" ${OVERRIDE_VERSION_ID} "
5251 READINESS_PROBE_VERSION=" ${OVERRIDE_VERSION_ID} "
5352 VERSION_UPGRADE_HOOK_VERSION=" ${OVERRIDE_VERSION_ID} "
Original file line number Diff line number Diff line change 3838kubeconfig_path=" ${HOME} /.operator-dev/evg-host.kubeconfig"
3939
4040configure () {
41- shift 1
41+ shift || true
4242 auto_recreate=" false"
4343
4444 # Parse arguments
@@ -64,7 +64,7 @@ configure() {
6464 jq ' . | with_entries(select(.key == "auths"))' " ${HOME} /.docker/config.json" | ssh -T -q " ${host_url} " ' cat > /home/ubuntu/.docker/config.json'
6565 fi
6666
67- sync
67+ sync | prepend " sync "
6868
6969 ssh -T -q " ${host_url} " " cd ~/mongodb-kubernetes; scripts/dev/switch_context.sh root-context; scripts/dev/setup_evg_host.sh ${auto_recreate} "
7070}
Original file line number Diff line number Diff line change 55set -Eeou pipefail
66
77source scripts/funcs/install
8+ source scripts/funcs/printing
89
910set_limits () {
1011 echo " Increasing fs.inotify.max_user_instances"
@@ -61,14 +62,14 @@ download_helm() {
6162 rm -rf linux-" ${ARCH} /"
6263}
6364
64- set_limits
65- download_kind &
66- download_kubectl &
67- download_helm &
65+ set_limits | prepend " set_limits "
66+ download_kind | prepend " download_kind " &
67+ download_kubectl | prepend " download_kubectl " &
68+ download_helm | prepend " download_helm " &
6869
6970AUTO_RECREATE=${1:- false}
7071if [[ " ${AUTO_RECREATE} " == " true" ]]; then
71- set_auto_recreate &
72+ set_auto_recreate | prepend " set_auto_recreate " &
7273fi
7374
7475wait
You can’t perform that action at this time.
0 commit comments