0
0
Fork 0
ingress-proxy/build.sh
2020-01-20 20:03:26 +01:00

7 lines
143 B
Bash
Executable file

#!/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