0
0
Fork 0

initial commit

This commit is contained in:
ston1th 2020-01-20 20:03:26 +01:00
commit 7dd7d19df5
11 changed files with 391 additions and 0 deletions

7
build.sh Executable file
View file

@ -0,0 +1,7 @@
#!/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