Skip to content

Commit

Permalink
Require minimum stress addons version of 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benbp authored and azure-sdk committed Sep 12, 2024
1 parent 48ef2f7 commit 2c5a8cb
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,10 @@ function VerifyAddonsVersion([hashtable]$chart, [string]$chartFile) {
foreach ($dependency in $chart.dependencies) {
if ($dependency.name -eq "stress-test-addons" -and
$dependency.version -like '0.1.*' -or
$dependency.version -like '^0.1.*') {
throw "The stress-test-addons version in use for '$chartFile' is $($dependency.version), please use versions >= 0.2.0"
$dependency.version -like '^0.1.*' -or
$dependency.version -like '0.2.*' -or
$dependency.version -like '^0.2.*') {
throw "The stress-test-addons version in use for '$chartFile' is $($dependency.version), use the version ~0.3.0 to avoid breaking changes"
}
}
}
Expand Down

0 comments on commit 2c5a8cb

Please sign in to comment.