0
0
Fork 0
ingress-proxy/build.sh
2020-05-02 13:57:59 +02:00

11 lines
199 B
Bash
Executable file

#!/bin/sh
build() {
local file="$1-ingress-proxy.yaml"
rm -f $file 2>/dev/null
for f in $(ls config/$1/*.yaml); do
echo "# $f" >> $file
cat $f >> $file
done
}
build nginx
build istio