No description
Find a file
2025-04-20 10:47:55 -07:00
.github/workflows refactor: update output name to same as file name 2025-04-19 15:41:30 -07:00
.prettierrc chore: add prettier configuration 2025-04-19 14:21:06 -05:00
action.yaml fix: use proper tag 2025-04-20 10:47:55 -07:00
LICENSE chore: add agpl license 2025-04-19 14:21:06 -05:00
README.md docs: update project readme with an example workflow 2025-04-19 15:51:35 -07:00

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'