0

I have to use our self-hosted agent in our Azure pipeline because keyvault firewall in on. and i also have to use the windows one because the pipeline tries to query sql database. but it doesn't support kubectl command. is there any way i can install kubectl on our self-hosted windows agent? enter image description here

P.T
  • 47
  • 1
  • 6

1 Answers1

0

Please check if you set the checkLatestHelmVersion to false.

- task: HelmInstaller@0
   displayName: 'Install Helm 2.16.1'
   inputs:
     helmVersion: 2.16.1
     checkLatestHelmVersion: false
     installKubectl: true
Ging Yuan-MSFT
  • 689
  • 2
  • 6