question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Adding repos with Helm Deploy task

See original GitHub issue

I would like to install Open Service Broker for Azure on my AKS cluster. I need to do stuff like this:

helm repo add svc-cat https://svc-catalog-charts.storage.googleapis.com
helm install svc-cat/catalog --name catalog --namespace catalog \
   --set apiserver.storage.etcd.persistence.enabled=true

However there is no repo option for the Helm task. How would I go about doing the above with VSTS tasks?

EDIT: I’m using Azure DevOps

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:10 (3 by maintainers)

github_iconTop GitHub Comments

4reactions
vithaticommented, Jul 17, 2019

I have this same issue, but there is no repo command available for this task so I can’t figure out how to follow #8374 (comment)

‘Command’ input in task is editable. You can type ‘repo’ in ‘Command’ input as shown in screenshot image

4reactions
timwebster9commented, Jul 16, 2019

@michaelmcneil-corgi

if you’re using YAML, this is what we’re doing:

steps:
- task: HelmDeploy@0
  displayName: 'Add Service Catalog Helm Repo'
  enabled: true
  inputs:
    connectionType: 'Azure Resource Manager'
    azureSubscription: ${{ parameters.serviceConnection }}
    azureResourceGroup: ${{ parameters.aksResourceGroup }}
    kubernetesCluster: ${{ parameters.aksClusterName }}
    command: 'repo'
    arguments: 'add svc-cat https://svc-catalog-charts.storage.googleapis.com'
Read more comments on GitHub >

github_iconTop Results From Across the Web

HelmDeploy@0 - Package and deploy Helm charts v0 task
Use this task to deploy, configure, or update a Kubernetes cluster in Azure Container Service by running helm commands.
Read more >
Deploying Helm Charts with Azure DevOps pipelines
Install helm with the HelmInstaller task; Download the pipeline artifact. After the download of the pipeline artifact, there is one final bash ...
Read more >
Helm 3 - CI/CD with Azure DevOps using Azure Container ...
In this post we will see how we can publish a sample Helm chart to ACR and also deploy the application to Azure...
Read more >
Deploying Helm Charts with Azure DevOps - YouTube
In this video, we will take a look at the basics of Helm charts and look at a pipeline that builds and pushes...
Read more >
Use a Helm Repository with Kubernetes - Harness.io Docs
Before You Begin · Migrating from a Harness Helm Deployment Type? · Step 1: Helm Repository Artifact Server · Step 2: Link the...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found