File contents
name: gitops-patterns
description: GitOps patterns with ArgoCD and Flux
GitOps Patterns
Git as the source of truth for infrastructure.
GitOps Flow
Code Change → PR → Merge → CI Build → Image Push → Git Sync → Deploy
Step
Tool
CI Build
Azure DevOps
Image Push
Azure Container Registry
Git Sync
ArgoCD / Flux
Deploy
AKS
Repository Structure
gitops-repo/
├── base/ # Base manifests
│ ├── deployment.yaml
│ ├── service.yaml
│ └── kustomization.yaml
├── overlays/
│ ├── dev/
│ │ └── kustomization.yaml
│ ├── staging/
│ │ └── kustomization.yaml
│ └── prod/
│ └── kustomization.yaml
ArgoCD Application
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: myapp
namespace: argocd
spec:
project: default
source:
repoURL: https://github.com/org/gitops-repo
targetRevision: HEAD
path: overlays/prod
destination:
server: https://kubernetes.default.svc
namespace: production
syncPolicy:
automated:
prune: true
selfHeal: true
Flux Configuration
apiVersion: source.toolkit.fluxcd.io/v1
kind: GitRepository
metadata:
name: myapp
spec:
interval: 1m
url: https://github.com/org/gitops-repo
ref:
branch: main
---
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: myapp
spec:
interval: 10m
path: ./overlays/prod
sourceRef:
kind: GitRepository
name: myapp
DO / DON'T
✅ Do
❌ Don't
Git for all changes
kubectl apply manually
Automated sync
Manual deployments
Environment overlays
Duplicate manifests
PR reviews
Direct pushes
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1 --- 2 name: tridentsof-antigravity-dev-kit-gitops-patterns 3 description: --- 4 --- 5 --- 6 name: gitops-patterns 7 description: GitOps patterns with ArgoCD and Flux 8 --- 9 10 # GitOps Patterns 11 12 > Git as the source of truth for infrastructure. 13 14 --- 15 16 ## GitOps Flow 17 18 ``` 19 Code Change → PR → Merge → CI Build → Image Push → Git Sync → Deploy 20 ``` 21 22 | Step | Tool | 23 |------|------| 24 | CI Build | Azure DevOps | 25 | Image Push | Azure Container Registry | 26 | Git Sync | ArgoCD / Flux | 27 | Deploy | AKS | 28 29 --- 30 31 ## Repository Structure 32 33 ``` 34 gitops-repo/ 35 ├── base/ # Base manifests 36 │ ├── deployment.yaml 37 │ ├── service.yaml 38 │ └── kustomization.yaml 39 ├── overlays/ 40 │ ├── dev/ 41 │ │ └── kustomization.yaml 42 │ ├── staging/ 43 │ │ └── kustomization.yaml 44 │ └── prod/ 45 │ └── kustomization.yaml 46 ``` 47 48 --- 49 50 ## ArgoCD Application 51 52 ```yaml 53 apiVersion: argoproj.io/v1alpha1 54 kind: Application 55 metadata: 56 name: myapp 57 namespace: argocd 58 spec: 59 project: default 60 source: 61 repoURL: https://github.com/org/gitops-repo 62 targetRevision: HEAD 63 path: overlays/prod 64 destination: 65 server: https://kubernetes.default.svc 66 namespace: production 67 syncPolicy: 68 automated: 69 prune: true 70 selfHeal: true 71 ``` 72 73 --- 74 75 ## Flux Configuration 76 77 ```yaml 78 apiVersion: source.toolkit.fluxcd.io/v1 79 kind: GitRepository 80 metadata: 81 name: myapp 82 spec: 83 interval: 1m 84 url: https://github.com/org/gitops-repo 85 ref: 86 branch: main 87 --- 88 apiVersion: kustomize.toolkit.fluxcd.io/v1 89 kind: Kustomization 90 metadata: 91 name: myapp 92 spec: 93 interval: 10m 94 path: ./overlays/prod 95 sourceRef: 96 kind: GitRepository 97 name: myapp 98 ``` 99 100 --- 101 102 ## DO / DON'T 103 104 | ✅ Do | ❌ Don't | 105 |-------|---------| 106 | Git for all changes | kubectl apply manually | 107 | Automated sync | Manual deployments | 108 | Environment overlays | Duplicate manifests | 109 | PR reviews | Direct pushes | 110 111 --- 112 > Converted and distributed by [TomeVault](https://tomevault.io/claim/tridentsof) — claim your Tome and manage your conversions. 113 <!-- tomevault:4.0:skill_md:2026-04-15 -->
tomevault-io/skills-registry/tree/main/tridentsof--antigravity-dev-kit--gitops-patterns commit ed026880a0
Frequently asked questions How do I install the Tridentsof Antigravity Dev Kit Gitops Patterns skill? Run npx skillmds@latest add tomevault-io/tridentsof-antigravity-dev-kit-gitops-patterns in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Tridentsof Antigravity Dev Kit Gitops Patterns skill do? --- It is listed under Coding & Dev Tools on SkillMD.
Is Tridentsof Antigravity Dev Kit Gitops Patterns safe to use? This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Tridentsof Antigravity Dev Kit Gitops Patterns? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Tridentsof Antigravity Dev Kit Gitops Patterns free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Tridentsof Antigravity Dev Kit Gitops Patterns? tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.