Created
June 8, 2022 08:59
-
-
Save Mishco/8caabba7d9b9ec2eb07de25aeda34bae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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