gitops-workflow-builder

Build GitOps workflows with ArgoCD and Flux

View on GitHub
Author Jeremy Longshore
Namespace @jeremylongshore/claude-code-plugins-plus
Category devops
Version 1.0.0
Stars 1,193
Downloads 2
self.md verified
Table of content

Build GitOps workflows with ArgoCD and Flux

Installation

npx claude-plugins install @jeremylongshore/claude-code-plugins-plus/gitops-workflow-builder

Contents

Folders: commands, skills

Files: LICENSE, README.md

Documentation

Build GitOps workflows with ArgoCD and Flux

Installation

/plugin install gitops-workflow-builder@claude-code-plugins-plus

Usage

/gitops-workflow

Features

License

MIT

Included Skills

This plugin includes 1 skill definition:

building-gitops-workflows

|

View skill definition

Gitops Workflow Builder

This skill provides automated assistance for gitops workflow builder tasks.

Prerequisites

Before using this skill, ensure:

Instructions

  1. Select GitOps Tool: Determine whether to use ArgoCD or Flux based on requirements
  2. Define Application Structure: Establish repository layout with environment separation (dev/staging/prod)
  3. Generate Manifests: Create Application/Kustomization files pointing to Git sources
  4. Configure Sync Policy: Set automated or manual sync with self-heal and prune options
  5. Implement RBAC: Define service accounts and role bindings for GitOps operator
  6. Set Up Monitoring: Configure notifications and health checks for deployments
  7. Validate Configuration: Test sync behavior and verify reconciliation loops

Output

Generates GitOps workflow configurations including:

ArgoCD Application Manifest:

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: app-name
  namespace: argocd
spec:
  project: default
  source:
    repoURL: https://github.com/org/repo
    path: manifests/prod
    targetRevision: main
  destination:
    server: https://kubernetes.default.svc
    namespace: produ

...(truncated)

</details>

## Source

[View on GitHub](https://github.com/jeremylongshore/claude-code-plugins-plus-skills)