provisioning: makes the interval for polling for changes configurable

This commit is contained in:
bergquist
2018-05-31 19:35:46 +02:00
parent c817aecd66
commit 333af6fd9b
7 changed files with 15 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ bulkDashboard() {
requiresJsonnet
COUNTER=0
MAX=4
MAX=400
while [ $COUNTER -lt $MAX ]; do
jsonnet -o "dashboards/bulk-testing/dashboard${COUNTER}.json" -e "local bulkDash = import 'dashboards/bulk-testing/bulkdash.jsonnet'; bulkDash + { uid: 'uid-${COUNTER}', title: 'title-${COUNTER}' }"
let COUNTER=COUNTER+1