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
- Production-ready
- Best practices
- Multi-platform
- Well-documented
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:
- Kubernetes cluster is accessible and kubectl is configured
- Git repository is available for GitOps source
- ArgoCD or Flux is installed on the cluster (or ready to install)
- Appropriate RBAC permissions for GitOps operator
- Network connectivity between cluster and Git repository
Instructions
- Select GitOps Tool: Determine whether to use ArgoCD or Flux based on requirements
- Define Application Structure: Establish repository layout with environment separation (dev/staging/prod)
- Generate Manifests: Create Application/Kustomization files pointing to Git sources
- Configure Sync Policy: Set automated or manual sync with self-heal and prune options
- Implement RBAC: Define service accounts and role bindings for GitOps operator
- Set Up Monitoring: Configure notifications and health checks for deployments
- 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)