Difference between revisions of "GitHub Actions helm deployments"
Jump to navigation
Jump to search
Line 17: | Line 17: | ||
namespace: 'default' | namespace: 'default' | ||
chart: 'app' | chart: 'app' | ||
− | token: '${{ github.token }}' | + | token:<nowiki> '${{ github.token }}'</nowiki> |
values: | | values: | | ||
name: foobar | name: foobar |
Revision as of 10:34, 16 February 2024
https://github.com/marketplace/actions/helm-deploy
# .github/workflows/deploy.yml name: Deploy on: ['deployment'] jobs: deployment: runs-on: 'ubuntu-latest' steps: - uses: actions/checkout@v1 - name: 'Deploy' uses: 'deliverybot/helm@v1' with: release: 'nginx' namespace: 'default' chart: 'app' token: '${{ github.token }}' values: | name: foobar value-files: >- [ "values.yaml", "values.production.yaml" ] env: KUBECONFIG_FILE: '$Template:Secrets.KUBECONFIG'
Advertising: