-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add node disruptions support in prow
- Loading branch information
1 parent
e222f78
commit df2e387
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
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,39 @@ | ||
#!/bin/bash | ||
|
||
set -ex | ||
|
||
ls | ||
|
||
# Source env.sh to read all the vars | ||
source env.sh | ||
source common_run.sh | ||
checks | ||
|
||
export KUBECONFIG=$KRKN_KUBE_CONFIG | ||
|
||
# Cluster details | ||
echo "Printing cluster details" | ||
oc version | ||
cat $KRKN_KUBE_CONFIG | ||
oc config view | ||
echo "Printing node info" | ||
for node in $(oc get nodes | awk 'NR!=1{print $1}'); do oc get node/$node -o yaml; done | ||
|
||
# Move kraken from root dir to tmp to avoid permissions issues in prow until fixed in base image | ||
cp -r /root/kraken /tmp/kraken | ||
krkn_loc=/tmp/kraken | ||
|
||
# Substitute config with environment vars defined | ||
if [[ "$CLOUD_TYPE" == "vmware" || "$CLOUD_TYPE" == "ibmcloud" ]]; then | ||
envsubst < $krkn_loc/scenarios/plugin_node_scenario.yaml.template > $krkn_loc/scenarios/node_scenario.yaml | ||
export SCENARIO_TYPE="plugin_scenarios" | ||
export ACTION=${ACTION:="$CLOUD_TYPE-node-reboot"} | ||
else | ||
envsubst < $krkn_loc/scenarios/node_scenario.yaml.template > $krkn_loc/scenarios/node_scenario.yaml | ||
fi | ||
envsubst < config.yaml.template > node_scenario_config.yaml | ||
|
||
# Run Kraken | ||
cat $krkn_loc/scenarios/node_scenario.yaml | ||
cat node_scenario_config.yaml | ||
python3.9 $krkn_loc/run_kraken.py --config=node_scenario_config.yaml |