diff options
author | agardner <agardner@linuxfoundation.org> | 2017-05-19 14:29:22 -0400 |
---|---|---|
committer | agardner <agardner@linuxfoundation.org> | 2017-05-19 14:30:15 -0400 |
commit | 4eb3f92c41b9d586ea388ff49197c3b536fb9465 (patch) | |
tree | 75d28d7091963d0f507529aea7a5c5ed5a5ea3c6 /jjb/securedlab/check-jinja2.sh | |
parent | 60291ea30d941559e3d380d435a495502b3c80b9 (diff) |
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 <agardner@linuxfoundation.org>
Diffstat (limited to 'jjb/securedlab/check-jinja2.sh')
-rwxr-xr-x | jjb/securedlab/check-jinja2.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |