mirror of
https://github.com/rssnyder/action-kube-diagrams
synced 2026-06-30 13:50:26 -05:00
No description
| .github/workflows | ||
| .prettierrc | ||
| action.yaml | ||
| LICENSE | ||
| README.md | ||
GitHub Action for Kube Diagrams ⎈
This is a GitHub action for https://github.com/philippemerle/KubeDiagrams. It can be used in your GitHub Actions workflow to generate diagrams from Kubernetes manifests.
Example Usage
name: "Your GitHub Action Name"
on:
workflow_dispatch: # add your specific triggers (https://docs.github.com/en/actions/writing-workflows/choosing-when-your-workflow-runs/events-that-trigger-workflows)
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: actions/checkout@v4
- name: "Generate diagram from Helm chart"
uses: mahyarmirrashed/action-kube-diagrams@main
with:
type: "helm"
args: 'https://charts.jetstack.io/cert-manager'