mirror of
https://github.com/lucky-sideburn/kubeinvaders.git
synced 2026-08-21 04:26:24 +00:00
9 lines
284 B
Bash
9 lines
284 B
Bash
#!/bin/bash
|
|
|
|
echo "Starting chaos-exec general purpose image for KubeInvaders"
|
|
echo $2 | sed 's/code=//g' | base64 -d > /tmp/run.chaos
|
|
echo "Executing chaos script"
|
|
cat /tmp/run.chaos
|
|
($1 /tmp/run.chaos) || echo "Chaos job completed with error. Please check code of this experiment"
|
|
|