Skip to content

Commit a173d34

Browse files
committed
Update external tool versions installed on deploy
1 parent e71fe55 commit a173d34

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Deploy/deploy.ps1

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@ if(Test-Path "$DeployPath\releaseVersion.txt")
1818
### Download External Tools ###
1919
if ([string]::IsNullOrWhiteSpace($ExternalToolDownloadUrl))
2020
{
21-
Write-Warning "No External Tools Downloaded!`nYou Should Download`n* AZ CLI (and install it)`n* Datree`n* Grant`n* Handle`n* KubeCtl"
21+
Write-Warning "No External Tools Downloaded!`nYou Should Download`n* AZ CLI (and install it)`n* Kube-Linter`n* Grant`n* Handle`n* KubeCtl"
2222
}
2323
else
2424
{
2525
$tools = @(
26-
[pscustomobject]@{Tool='Az-Installer';Version='2.48.1';ExeName='azure-cli.msi';RunExe=$true;RunArgs="/quiet /norestart";OctoAgent=$true}
27-
[pscustomobject]@{Tool='Kube-Linter';Version='0.6.4';ExeName='kube-linter.exe';RunExe=$false;RunArgs="";OctoAgent=$true}
26+
[pscustomobject]@{Tool='Az-Installer';Version='2.54.0';ExeName='azure-cli.msi';RunExe=$true;RunArgs="/quiet /norestart";OctoAgent=$true}
27+
[pscustomobject]@{Tool='Kube-Linter';Version='0.6.5';ExeName='kube-linter.exe';RunExe=$false;RunArgs="";OctoAgent=$true}
2828
[pscustomobject]@{Tool='Grant';Version='1.01';ExeName='Grant.exe';RunExe=$false;RunArgs="";OctoAgent=$false}
2929
[pscustomobject]@{Tool='Handle';Version='5.0';ExeName='handle.exe';RunExe=$false;RunArgs="";OctoAgent=$false}
3030
[pscustomobject]@{Tool='Handle';Version='5.0';ExeName='handle64.exe';RunExe=$false;RunArgs="";OctoAgent=$false}
31-
[pscustomobject]@{Tool='KubeCtl';Version='1.23.9';ExeName='kubectl.exe';RunExe=$false;RunArgs="";OctoAgent=$true}
31+
[pscustomobject]@{Tool='KubeCtl';Version='1.24.7';ExeName='kubectl.exe';RunExe=$false;RunArgs="";OctoAgent=$true}
3232
)
3333

3434
$tools | ForEach-Object {

0 commit comments

Comments
 (0)