-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
132100: drtprod: put roachtest binary and operation script in workload-scale r=sambhav-jain-16 a=vidit-bhat This PR ensures that we put pre-built `roachprod`, `roachtest` binaries and operation runner script on `workload-scale` cluster upon creation Epic: none Release note Co-authored-by: Vidit Bhat <[email protected]>
- Loading branch information
Showing
2 changed files
with
25 additions
and
4 deletions.
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
# Yaml for creating and configuring the drt-scale cluster. This also configures the datadog. | ||
# Build the roachprod and roachtest binaries (using --cross) before running this script and delete any certs folder | ||
environment: | ||
ROACHPROD_GCE_DEFAULT_SERVICE_ACCOUNT: [email protected] | ||
ROACHPROD_DNS: drt.crdb.io | ||
|
@@ -105,4 +106,19 @@ targets: | |
- -- | ||
- chmod | ||
- 600 | ||
- ./certs/* | ||
- certs/* | ||
- command: put | ||
args: | ||
- $WORKLOAD_CLUSTER | ||
- bin/roachprod | ||
- roachprod | ||
- command: put | ||
args: | ||
- $WORKLOAD_CLUSTER | ||
- bin/roachtest | ||
- roachtest-operations | ||
- command: put | ||
args: | ||
- $WORKLOAD_CLUSTER | ||
- pkg/cmd/drt/scripts/roachtest_operations_run.sh | ||
- roachtest_operations_run.sh |