Back to Skills

building-gitops-workflows

jeremylongshore
Updated Today
23 views
712
74
712
View on GitHub
Metaautomationdesign

About

This skill helps developers create production-ready GitOps workflows using ArgoCD or Flux. It generates secure configurations, implements best practices, and automates Kubernetes deployments. Use it when you need to set up, configure, or automate continuous deployment pipelines.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/jeremylongshore/claude-code-plugins-plus
Git CloneAlternative
git clone https://github.com/jeremylongshore/claude-code-plugins-plus.git ~/.claude/skills/building-gitops-workflows

Copy and paste this command in Claude Code to install this skill

Documentation

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

  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: production
  syncPolicy:
    automated:
      prune: true
      selfHeal: true

Flux Kustomization:

apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
  name: app-name
  namespace: flux-system
spec:
  interval: 5m
  path: ./manifests/prod
  prune: true
  sourceRef:
    kind: GitRepository
    name: app-repo

Error Handling

Common issues and solutions:

Sync Failures

  • Error: "ComparisonError: Failed to load target state"
  • Solution: Verify Git repository URL, credentials, and target path exist

RBAC Permissions

  • Error: "User cannot create resource in API group"
  • Solution: Grant GitOps service account appropriate cluster roles

Out of Sync State

  • Warning: "Application is OutOfSync"
  • Solution: Enable automated sync or manually sync via UI/CLI

Git Authentication

  • Error: "Authentication failed for repository"
  • Solution: Configure SSH keys or access tokens in {baseDir}/.git/config

Resource Conflicts

  • Error: "Resource already exists and is not managed by GitOps"
  • Solution: Import existing resources or remove conflicting manual deployments

Resources

GitHub Repository

jeremylongshore/claude-code-plugins-plus
Path: plugins/devops/gitops-workflow-builder/skills/gitops-workflow-builder
aiautomationclaude-codedevopsmarketplacemcp

Related Skills

sglang

Meta

SGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.

View skill

langchain

Meta

LangChain is a framework for building LLM applications using agents, chains, and RAG pipelines. It supports multiple LLM providers, offers 500+ integrations, and includes features like tool calling and memory management. Use it for rapid prototyping and deploying production systems like chatbots, autonomous agents, and question-answering services.

View skill

Algorithmic Art Generation

Meta

This skill helps developers create algorithmic art using p5.js, focusing on generative art, computational aesthetics, and interactive visualizations. It automatically activates for topics like "generative art" or "p5.js visualization" and guides you through creating unique algorithms with features like seeded randomness, flow fields, and particle systems. Use it when you need to build reproducible, code-driven artistic patterns.

View skill

webapp-testing

Testing

This Claude Skill provides a Playwright-based toolkit for testing local web applications through Python scripts. It enables frontend verification, UI debugging, screenshot capture, and log viewing while managing server lifecycles. Use it for browser automation tasks but run scripts directly rather than reading their source code to avoid context pollution.

View skill