-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
script: add sweep script and make task
- Loading branch information
Showing
2 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env bash | ||
# delete db's older than 24 hours in the test org whose name starts with "testacc" | ||
|
||
set -eou pipefail | ||
|
||
ORG="${ORG:-planetscale-terraform-testing}" | ||
|
||
pscale database list --org "$ORG" --format json | | ||
jq -r '.[] | select( | ||
(.name | startswith("testacc")) and | ||
(.created_at | sub("\\.\\d+"; "") | fromdateiso8601 < (now - 86400))).name' | | ||
while read -r dbname; do | ||
pscale database delete "$dbname" --org "$ORG" --force | ||
done |