added istio ingress proxy
This commit is contained in:
parent
7dd7d19df5
commit
0659c44499
18 changed files with 415 additions and 51 deletions
16
build.sh
16
build.sh
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue