11 lines
199 B
Bash
Executable file
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
|