mirror of
https://github.com/kubernetes-sigs/node-feature-discovery.git
synced 2024-12-14 11:57:51 +00:00
02d68ba491
Fix workload template specs: - update node affinity in "demo-pod-with-discovery.cloverleaf" - fix broken "demo-pod-without-discovery" Fix runner scripts to be runnable from anywhere gqYour current working dir shouldn't matter. Also make the scripts exit on any error. Also remove trailing whitespace. Minor fixes in README.
66 lines
1.5 KiB
Bash
Executable file
66 lines
1.5 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -eo pipefail
|
|
|
|
this=`basename $0`
|
|
this_dir=`dirname $0`
|
|
|
|
show_help() {
|
|
cat << EOF
|
|
Usage: $this [-a APPLICATION_NAME]
|
|
Runs pods ten times with discovery enabled.
|
|
|
|
-a APPLICATION_NAME run the pods with APPLICATION_NAME application.
|
|
APPLICATION_NAME can be one of parsec or cloverleaf.
|
|
EOF
|
|
}
|
|
|
|
if [ $# -eq 0 ]
|
|
then
|
|
show_help
|
|
exit 1
|
|
fi
|
|
|
|
app="parsec"
|
|
|
|
OPTIND=1
|
|
options="ha:"
|
|
while getopts $options option
|
|
do
|
|
case $option in
|
|
a)
|
|
if [ "$OPTARG" == "parsec" ] || [ "$OPTARG" == "cloverleaf" ]
|
|
then
|
|
app=$OPTARG
|
|
else
|
|
echo "Invalid application name."
|
|
show_help
|
|
exit 0
|
|
fi
|
|
;;
|
|
h)
|
|
show_help
|
|
exit 0
|
|
;;
|
|
'?')
|
|
show_help
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
echo "Using application name = $app."
|
|
echo "Creating pods with node feature discovery enabled."
|
|
for i in {1..10}
|
|
do
|
|
if [ "$app" == "parsec" ]
|
|
then
|
|
sed -e "s/NUM/$i-with-discovery/" -e "s/APP/demo-1/" \
|
|
"$this_dir/demo-pod-with-discovery.yaml.parsec.template" | kubectl create -f -
|
|
else
|
|
sed -e "s/NUM/$i-with-discovery/" -e "s/APP/demo-2/" \
|
|
"$this_dir/demo-pod-with-discovery.yaml.cloverleaf.template" | kubectl create -f -
|
|
fi
|
|
echo "WithDiscovery" >> labels-with-discovery-$app.log
|
|
done
|
|
echo "Ten pods with node feature discovery enabled started."
|