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