From bcb9802024f03ee5fa9918587a36c179688bc0b4 Mon Sep 17 00:00:00 2001 From: Felipe Augusto <14238257+felipementel@users.noreply.github.com> Date: Fri, 18 Mar 2022 20:27:03 -0300 Subject: [PATCH] Update install.ps1 add kubernetes-helm package --- install.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.ps1 b/install.ps1 index f7dc4f5..fc10f70 100644 --- a/install.ps1 +++ b/install.ps1 @@ -42,7 +42,8 @@ choco feature enable -n=allowGlobalConfirmation; ,"vim" ,"microsoft-teams" ,"terraform" -,"kubernetes-cli") + ($pins = @("vscode")) | % { choco install $_ }; +,"kubernetes-cli" +,"kubernetes-helm") + ($pins = @("vscode")) | % { choco install $_ }; <# avoiding future upgrades of these following programs. #> $pins | % { choco pin add -n="$_" };