-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add storage cluster to stress environments. Update federated auth doc…
…umentation. (#8588) * Document federated identity credential auth in stress clusters * Add custom storage cluster to stress infra configs. Update AKS base version * Update tools/stress-cluster/chaos/README.md Co-authored-by: Richard Park <[email protected]> * Update tools/stress-cluster/chaos/README.md Co-authored-by: Richard Park <[email protected]> * Update tools/stress-cluster/chaos/README.md Co-authored-by: Richard Park <[email protected]> * Update tools/stress-cluster/chaos/README.md Co-authored-by: Richard Park <[email protected]> * Support regex/negative regex filters for stress test discovery. Add storage env defaults * Add storage environment pipeline and deploy conditionals for stress * Update addons changelog * Doc feedback --------- Co-authored-by: Richard Park <[email protected]>
- Loading branch information
1 parent
ac07661
commit 602310a
Showing
13 changed files
with
147 additions
and
58 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
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,28 @@ | ||
pr: none | ||
|
||
trigger: none | ||
|
||
parameters: | ||
- name: Environment | ||
type: string | ||
default: storage | ||
values: | ||
- storage | ||
- pg | ||
- prod | ||
- name: TestRepository | ||
displayName: Stress Test Repository | ||
type: string | ||
default: java-storage | ||
values: | ||
- java-storage | ||
- name: DeployFromBranchOrCommit | ||
type: string | ||
default: main | ||
|
||
extends: | ||
template: /eng/pipelines/templates/jobs/stress-test-release.yml | ||
parameters: | ||
Environment: ${{ parameters.Environment }} | ||
TestRepository: ${{ parameters.TestRepository }} | ||
DeployFromBranchOrCommit: ${{ parameters.DeployFromBranchOrCommit }} |
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 |
---|---|---|
|
@@ -16,8 +16,8 @@ parameters: | |
values: | ||
- all | ||
- examples | ||
- javascript | ||
- java | ||
- javascript | ||
- net | ||
- python | ||
- go | ||
|
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
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
32 changes: 32 additions & 0 deletions
32
tools/stress-cluster/cluster/azure/parameters/storage.json
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,32 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#", | ||
"contentVersion": "1.0.0.0", | ||
"parameters": { | ||
"subscriptionId": { | ||
"value": "ba45b233-e2ef-4169-8808-49eb0d8eba0d" | ||
}, | ||
"groupSuffix": { | ||
"value": "storage" | ||
}, | ||
"clusterName": { | ||
"value": "stress-storage" | ||
}, | ||
"clusterLocation": { | ||
"value": "southcentralus" | ||
}, | ||
"defaultAgentPoolMinNodes": { | ||
"value": 5 | ||
}, | ||
"defaultAgentPoolMaxNodes": { | ||
"value": 200 | ||
}, | ||
"tags": { | ||
"value": { | ||
"environment": "storage", | ||
"owners": "bebroder", | ||
"purpose": "stress and load testing for storage SDKs - maintained by Azure SDK (devdiv)", | ||
"DoNotDelete": "" | ||
} | ||
} | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
tools/stress-cluster/cluster/kubernetes/stress-test-addons/CHANGELOG.md
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
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
Oops, something went wrong.