0
0
Fork 0

added istio ingress proxy

This commit is contained in:
ston1th 2020-05-02 13:57:59 +02:00
commit 0659c44499
18 changed files with 415 additions and 51 deletions

View file

@ -1,7 +1,11 @@
#!/bin/sh
file=nginx-ingress-proxy.yaml
rm -f $file 2>/dev/null
for f in $(ls config/*.yaml); do
echo "# $f" >> $file
cat $f >> $file
done
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