Categorygithub.com/jonstacks/helm-deploy
repositorypackage
0.0.0-20241209165823-a84521afae48
Repository: https://github.com/jonstacks/helm-deploy.git
Documentation: pkg.go.dev

# README

Helm Deploy Action

CI

Rather than relying on the helm CLI, you can use the helm-deploy action to deploy a chart.

Usage


steps:
- uses: actions/checkout@v4
- uses: azure/setup-kubectl@4
- uses: azure/setup-helm@v4
  with:
    version: v3.8.2
- uses: jonstacks/helm-deploy@v0
  with:
    # Required
    release-name: my-release
    chart: my-chart
    # Optional
    atomic: false
    cleaup-on-fail: false
    create-namespace: false
    debug: false
    dry-run: false
    kube-context: my-context
    namespace: my-namespace
    timeout: 10m
    wait: true
    sets: >
      some.set="hello"
      another.set="world"