Skip to content

Commit

Permalink
Fix default parameter set for stress cluster provision script
Browse files Browse the repository at this point in the history
  • Loading branch information
benbp committed Jun 23, 2022
1 parent fc4bb32 commit 1b8ec23
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tools/stress-cluster/cluster/provision.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[CmdletBinding(SupportsShouldProcess = $true)]
[CmdletBinding(DefaultParameterSetName = 'Default', SupportsShouldProcess = $true)]
param (
[string]$Environment = 'dev',
[string]$Namespace = 'stress-infra',
Expand Down Expand Up @@ -27,7 +27,6 @@ $WhatIfPreference = $false
Install-ModuleIfNotInstalled "powershell-yaml" "0.4.1" | Import-Module
$WhatIfPreference = $LastWhatIfPreference


$STATIC_TEST_DOTENV_NAME="public"
$VALUES_FILE = "$PSScriptRoot/kubernetes/stress-test-addons/values.yaml"
$STRESS_CLUSTER_RESOURCE_GROUP = ""
Expand Down

0 comments on commit 1b8ec23

Please sign in to comment.