👷(helm) add CI for publishing Helm charts
We need to publish a Helm chart to facilitate separating the code from the deployment configuration.
This commit is contained in:
22
.github/workflows/helmfile-linter.yml
vendored
22
.github/workflows/helmfile-linter.yml
vendored
@@ -1,22 +0,0 @@
|
|||||||
name: Helmfile lint
|
|
||||||
run-name: Helmfile lint
|
|
||||||
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
branches:
|
|
||||||
- 'main'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
helmfile-lint:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
container:
|
|
||||||
image: ghcr.io/helmfile/helmfile:latest
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
uses: numerique-gouv/action-helmfile-lint@main
|
|
||||||
with:
|
|
||||||
app-id: ${{ secrets.APP_ID }}
|
|
||||||
age-key: ${{ secrets.SOPS_PRIVATE }}
|
|
||||||
private-key: ${{ secrets.PRIVATE_KEY }}
|
|
||||||
helmfile-src: "src/helm"
|
|
||||||
repositories: "people,secrets"
|
|
||||||
35
.github/workflows/release-helmchart.yml
vendored
Normal file
35
.github/workflows/release-helmchart.yml
vendored
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
name: Release Chart
|
||||||
|
run-name: Release Chart
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'main'
|
||||||
|
paths:
|
||||||
|
- ./src/helm/desk/**
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
release:
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
|
- name: Cleanup
|
||||||
|
run: rm -rf ./src/helm/extra
|
||||||
|
|
||||||
|
- name: Install Helm
|
||||||
|
uses: azure/setup-helm@v4
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
|
||||||
|
- name: Publish Helm charts
|
||||||
|
uses: numerique-gouv/helm-gh-pages@add-overwrite-option
|
||||||
|
with:
|
||||||
|
charts_dir: ./src/helm
|
||||||
|
linting: on
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
Reference in New Issue
Block a user