* Helm template for deploy script * Update eng/common/scripts/stress-testing/stress-test-deployment-lib.ps1 Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com> * fixing helm upgrade command Co-authored-by: Albert Cheng <albertcheng@microsoft.com> Co-authored-by: Albert Cheng <38804567+ckairen@users.noreply.github.com> Co-authored-by: Ben Broderick Phillips <bebroder@microsoft.com>
45 lines
1.6 KiB
PowerShell
45 lines
1.6 KiB
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,
|
|
|
|
# Override remote stress-test-addons with local on-disk addons for development
|
|
[System.IO.FileInfo]$LocalAddonsPath,
|
|
|
|
# Renders chart templates locally without deployment
|
|
[Parameter(Mandatory=$False)][switch]$Template,
|
|
|
|
# Matrix generation parameters
|
|
[Parameter(Mandatory=$False)][string]$MatrixFileName,
|
|
[Parameter(Mandatory=$False)][string]$MatrixSelection,
|
|
[Parameter(Mandatory=$False)][string]$MatrixDisplayNameFilter,
|
|
[Parameter(Mandatory=$False)][array]$MatrixFilters,
|
|
[Parameter(Mandatory=$False)][array]$MatrixReplace,
|
|
[Parameter(Mandatory=$False)][array]$MatrixNonSparseParameters
|
|
)
|
|
|
|
. $PSScriptRoot/stress-test-deployment-lib.ps1
|
|
|
|
CheckDependencies
|
|
DeployStressTests @PSBoundParameters
|