Add openfaas-operator to the ARMHF build script

Signed-off-by: Radoslav Dimitrov <rdimitrow@gmail.com>
This commit is contained in:
Radoslav Dimitrov 2018-10-25 13:59:49 +03:00 committed by Alex Ellis
parent 63e948fce1
commit 05c7b3f9ee

View File

@ -1,7 +1,6 @@
#!/bin/bash #!/bin/bash
declare -a repos=("openfaas-incubator/faas-idler" "openfaas/faas" "openfaas/faas-swarm" "openfaas/nats-queue-worker" "openfaas/faas-netes" "openfaas/faas-cli") declare -a repos=("openfaas-incubator/openfaas-operator" "openfaas-incubator/faas-idler" "openfaas/faas" "openfaas/faas-swarm" "openfaas/nats-queue-worker" "openfaas/faas-netes" "openfaas/faas-cli")
HERE=`pwd` HERE=`pwd`
#if [ ! -z "$CACHED" ]; then #if [ ! -z "$CACHED" ]; then
@ -18,6 +17,8 @@ get_repo_name() {
echo "openfaas/gateway" echo "openfaas/gateway"
elif [ "openfaas/nats-queue-worker" = $1 ]; then elif [ "openfaas/nats-queue-worker" = $1 ]; then
echo "openfaas/queue-worker" echo "openfaas/queue-worker"
elif [ "openfaas-incubator/openfaas-operator" = $1 ]; then
echo "openfaas/openfaas-operator"
else else
echo $1 echo $1
fi fi