pod configs are not going to live in directories 67/35067/1
authoragardner <agardner@linuxfoundation.org>
Fri, 19 May 2017 18:29:22 +0000 (14:29 -0400)
committeragardner <agardner@linuxfoundation.org>
Fri, 19 May 2017 18:30:15 +0000 (14:30 -0400)
They will be called pod[#].yaml
so we look for that instead

Change-Id: If36d347cf7bef3108a2d50d74a84de1a07b5bdd2
Signed-off-by: agardner <agardner@linuxfoundation.org>
jjb/securedlab/check-jinja2.sh

index 57650ec..4c1927d 100755 (executable)
@@ -1,7 +1,7 @@
 #!/bin/bash
 set +x
 set -o errexit
-for lab_configs in $(find labs/ -name 'pod.yaml'); do
+for lab_configs in $(find labs/ -name 'pod*.yaml'); do
         while IFS= read -r jinja_templates; do
           echo "./utils/generate_config.py -y $lab_configs -j $jinja_templates"
           ./utils/generate_config.py -y $lab_configs -j $jinja_templates