Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion .github/workflows/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,17 @@ on:
paths:
- 'charts/**'
- '.github/workflows/helm-release.yaml'
pull_request:
branches:
- main
paths:
- 'charts/**'

permissions:
contents: write

jobs:
release:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand All @@ -38,6 +43,27 @@ jobs:
run: |
helm repo index docs/ --url "https://freuds.github.io/custom-charts/"

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: helm-charts
path: docs/
retention-days: 1

publish:
needs: build
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: helm-charts
path: docs/

- name: Commit and push changes
uses: stefanzweifel/git-auto-commit-action@v6
with:
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ Ce dépôt contient des charts Helm personnalisés, packagés et publiés automa

- `charts/` : Contient les charts Helm
- `cronjob/` : Chart Helm pour déployer des CronJobs Kubernetes
- `gatus/` : Chart Helm pour déployer [Gatus](https://github.com/TwiN/gatus) webservice
- `grafana-dashboards/` : Chart Helm pour déployer des dashboards Grafana en tant que ConfigMaps
- `ihm/` : Chart Helm pour des webservices génériques
- `openvpn-exporter/` : Chart Helm pour exporter les métriques OpenVPN à Prometheus
- `proxy/` : Chart Helm pour déployer un Ingress multi-ProxyPass
- `ct.yaml` : Configuration Chart Testing (lint, validation)
- `lintconf.yaml` : Règles de lint YAML
Expand Down
2 changes: 1 addition & 1 deletion charts/grafana-dashboards/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: A Helm chart for deploying Grafana Dashboars as configMap in Kubern
name: grafana-dashboards
icon: https://freuds.github.io/custom-charts/imgs/grafana-dashboards.png
type: application
version: 1.1.4
version: 1.1.5
home: https://freuds.github.io/custom-charts
sources:
- https://freuds.github.io/custom-charts
Expand Down
Loading