← スキル一覧に戻る

gitops
by proompteng
Experimentation Lab
⭐ 5🍴 0📅 2026年1月24日
SKILL.md
name: gitops description: "GitOps workflows for this repo: edit Argo CD/Kubernetes/infra manifests in version control, validate changes, and rely on Argo CD to sync. Use when tasks touch argocd/, kubernetes/, tofu/, ansible/, or deployment/runbook changes, or when asked to roll out services via GitOps."
GitOps
Overview
Use GitOps-first changes for infra and deployment workflows, then validate locally and let Argo CD reconcile. Only apply directly to the cluster when explicitly instructed or in an emergency.
Workflow
-
Locate the source of truth
- Argo CD apps and overlays:
argocd/ - Kubernetes manifests:
kubernetes/ - IaC:
tofu/,ansible/ - Service-specific instructions: nearest
README.md
- Argo CD apps and overlays:
-
Edit manifests in Git
- Prefer updating Argo CD apps/overlays instead of raw kubectl applies.
- Keep environment-specific changes in overlays.
-
Validate locally
- Argo lint:
scripts/argo-lint.sh - Kubeconform:
scripts/kubeconform.sh argocd - Terraform/tofu:
bun run tf:plan(apply only when asked) - Ansible:
bun run ansible
- Argo lint:
-
Rollout discipline
- Note rollout/impact for changes in
argocd/,kubernetes/,tofu/,ansible/. - For Helm charts with kustomize, use:
mise exec helm@3 -- kustomize build --enable-helm <path>.
- Cluster access (exception-only)
- Use direct
kubectl applyonly when explicitly asked or in emergencies. - Always set namespace:
kubectl ... -n <ns>.
- Deploy completion guardrail
- Only call a deploy "completed" after the Argo CD application is synced and healthy.
Pointers
- Use
references/gitops-checklist.mdfor quick commands and repo-specific notes.
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です