https://github.com/swissgrc/docker-azure-pipelines-helm
🐳 Docker image for running Helm commands in an Azure Pipelines container job
https://github.com/swissgrc/docker-azure-pipelines-helm
azure-devops azure-pipelines docker hacktoberfest helm kubectl kubernetes
Last synced: 2 months ago
JSON representation
🐳 Docker image for running Helm commands in an Azure Pipelines container job
- Host: GitHub
- URL: https://github.com/swissgrc/docker-azure-pipelines-helm
- Owner: swissgrc
- License: mit
- Created: 2021-02-08T16:34:51.000Z (about 4 years ago)
- Default Branch: develop
- Last Pushed: 2025-03-04T16:01:55.000Z (2 months ago)
- Last Synced: 2025-03-04T17:20:11.923Z (2 months ago)
- Topics: azure-devops, azure-pipelines, docker, hacktoberfest, helm, kubectl, kubernetes
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/swissgrc/azure-pipelines-helm
- Size: 227 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# Docker image for running Helm commands in Azure Pipelines container jobs
[](https://github.com/swissgrc/docker-azure-pipelines-helm/blob/main/LICENSE) [](https://github.com/swissgrc/docker-azure-pipelines-terraform/actions/workflows/publish.yml) [](https://sonarcloud.io/summary/new_code?id=swissgrc_docker-azure-pipelines-helm) [](https://hub.docker.com/r/swissgrc/azure-pipelines-helm) [](https://hub.docker.com/r/swissgrc/azure-pipelines-helm)
Docker image to run Helm and kubectl commands in [Azure Pipelines container jobs].
## Usage
This container can be used to run Helm and kubectl commands in [Azure Pipelines container jobs].
### Azure Pipelines Container Job
To use the image in an Azure Pipelines Container Job add the following task use it with the `container` property.
The following example shows the container used for a deployment step
```yaml
- stage: deploy
jobs:
- deployment: DeployWeb
container: swissgrc/azure-pipelines-helm:latest
environment: 'smarthotel-dev'
strategy:
runOnce:
deploy:
steps:
- task: HelmDeploy@0
displayName: Helm upgrade
inputs:
azureSubscriptionEndpoint: $(azureSubscriptionEndpoint)
azureResourceGroup: $(azureResourceGroup)
kubernetesCluster: $(kubernetesCluster)
command: upgrade
chartType: filepath
chartPath: $(Build.ArtifactStagingDirectory)/sampleapp-v0.2.0.tgz
releaseName: azuredevopsdemo
install: true
waitForExecution: false
```## Included Software
- [swissgrc/azure-pipelines-azurecli:net9](https://github.com/swissgrc/docker-azure-pipelines-azurecli-net9) as base image
- Helm
- Kubectl## Tags
| Tag | Description | Size |
|----------|-------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------|
| latest | Latest stable release (from `main` branch) |  |
| unstable | Latest unstable release (from `develop` branch) |  |
| x.y.z | Image for a specific version of Helm | |[Azure Pipelines container jobs]: https://docs.microsoft.com/en-us/azure/devops/pipelines/process/container-phases