azure-sdk-for-cpp/eng/common/scripts/stress-testing/deploy-stress-tests.ps1
Azure SDK Bot 3fc8cc0530
Support namespace override for local stress test deployments (#3416)
Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com>
2022-03-09 14:09:00 -08:00

31 lines
1016 B
PowerShell

# Set a default parameter set here so we can call this script without requiring -Login and -Subscription,
# but if it IS called with either of those, then both parameters need to be required. Not defining a
# default parameter set makes Login/Subscription required all the time.
[CmdletBinding(DefaultParameterSetName = 'Default')]
param(
[string]$SearchDirectory,
[hashtable]$Filters,
[string]$Environment,
[string]$Repository,
[switch]$PushImages,
[string]$ClusterGroup,
[string]$DeployId,
[Parameter(ParameterSetName = 'DoLogin', Mandatory = $true)]
[switch]$Login,
[Parameter(ParameterSetName = 'DoLogin')]
[string]$Subscription,
# Default to true in Azure Pipelines environments
[switch] $CI = ($null -ne $env:SYSTEM_TEAMPROJECTID),
# Optional namespace override, otherwise the shell user or chart annotation will be used
[string]$Namespace
)
. $PSScriptRoot/stress-test-deployment-lib.ps1
CheckDependencies
DeployStressTests @PSBoundParameters