From: agardner Date: Fri, 19 May 2017 18:29:22 +0000 (-0400) Subject: pod configs are not going to live in directories X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=4eb3f92c41b9d586ea388ff49197c3b536fb9465;p=releng.git pod configs are not going to live in directories They will be called pod[#].yaml so we look for that instead Change-Id: If36d347cf7bef3108a2d50d74a84de1a07b5bdd2 Signed-off-by: agardner --- diff --git a/jjb/securedlab/check-jinja2.sh b/jjb/securedlab/check-jinja2.sh index 57650ec28..4c1927d77 100755 --- a/jjb/securedlab/check-jinja2.sh +++ b/jjb/securedlab/check-jinja2.sh @@ -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