Skip to content

Instantly share code, notes, and snippets.

@Mishco
Created June 8, 2022 08:59
Show Gist options
  • Select an option

  • Save Mishco/8caabba7d9b9ec2eb07de25aeda34bae to your computer and use it in GitHub Desktop.

Select an option

Save Mishco/8caabba7d9b9ec2eb07de25aeda34bae to your computer and use it in GitHub Desktop.
trigger:
paths:
include:
- '/helm/first-app'
jobs:
- job:
displayName: Install first-app via helm 3
pool:
vmImage: 'ubuntu-latest'
steps:
- task: HelmDeploy@0
displayName: Helm install
inputs:
azureSubscriptionEndpoint: DEV-Azure-Connection
azureResourceGroup: DEV-ResrouceGroup
kubernetesCluster: kubernetes-cluster-on-azure
command: upgrade
chartType: FilePath
chartName: first-app
chartPath: helm/first-app
releaseName: first-app
install: true
waitForExecution: false
arguments: "--namespace first-app"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment