GitOps 工作流
使用 ArgoCD 和 Flux 实现自动化 Kubernetes 部署的 GitOps 工作流完整指南。
目的
遵循 OpenGitOps 原则,使用 ArgoCD 或 Flux CD 为 Kubernetes 实现声明式、基于 Git 的持续交付。
使用场景
- 为 Kubernetes 集群设置 GitOps
- 从 Git 自动化应用部署
- 实现渐进式交付策略
- 管理多集群部署
- 配置自动化同步策略
- 在 GitOps 中设置密钥管理
不适用场景
- 需要一次性手动部署
- 无法管理集群访问或仓库权限
- 不部署到 Kubernetes
操作步骤
- 定义仓库布局和期望状态约定。
- 安装 ArgoCD 或 Flux 并连接集群。
- 配置同步策略、环境和晋升流程。
- 验证回滚和密钥处理。
安全须知
- 避免未经审批自动同步到生产环境。
- 不要将密钥存入 Git,使用 sealed 或外部密钥管理器。
OpenGitOps 原则
- 声明式 - 整个系统以声明式描述
- 版本化与不可变 - 期望状态存储在 Git 中
- 自动拉取 - 软件代理自动拉取期望状态
- 持续协调 - 代理持续协调实际状态与期望状态
ArgoCD 设置
1. 安装
# 创建命名空间
kubectl create namespace argocd
# 安装 ArgoCD
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
# 获取管理员密码
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d
参考: 详细设置请参阅 references/argocd-setup.md
2. 仓库结构
gitops-repo/
├── apps/
│ ├── production/
│ │ ├── app1/
│ │ │ ├── kustomization.yaml
│ │ │ └── deployment.yaml
│ │ └── app2/
│ └── staging/
├── infrastructure/
│ ├── ingress-nginx/
│ ├── cert-manager/
│ └── monitoring/
└── argocd/
├── applications/
└── projects/
3. 创建 Application
# argocd/applications/my-app.yaml
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: my-app
namespace: argocd
spec:
project: default
source:
repoURL: https://github.com/org/gitops-repo
targetRevision: main
path: apps/production/my-app
destination:
server: https://kubernetes.default.svc
namespace: production
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
4. App of Apps 模式
apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
name: applications
namespace: argocd
spec:
project: default
source:
repoURL: https://github.com/org/gitops-repo
targetRevision: main
path: argocd/applications
destination:
server: https://kubernetes.default.svc
namespace: argocd
syncPolicy:
automated: {}
Flux CD 设置
1. 安装
# 安装 Flux CLI
curl -s https://fluxcd.io/install.sh | sudo bash
# 引导 Flux
flux bootstrap github \
--owner=org \
--repository=gitops-repo \
--branch=main \
--path=clusters/production \
--personal
2. 创建 GitRepository
apiVersion: source.toolkit.fluxcd.io/v1
kind: GitRepository
metadata:
name: my-app
namespace: flux-system
spec:
interval: 1m
url: https://github.com/org/my-app
ref:
branch: main
3. 创建 Kustomization
apiVersion: kustomize.toolkit.fluxcd.io/v1
kind: Kustomization
metadata:
name: my-app
namespace: flux-system
spec:
interval: 5m
path: ./deploy
prune: true
sourceRef:
kind: GitRepository
name: my-app
同步策略
自动同步配置
ArgoCD:
syncPolicy:
automated:
prune: true # 删除 Git 中不存在的资源
selfHeal: true # 协调手动变更
allowEmpty: false
retry:
limit: 5
backoff:
duration: 5s
factor: 2
maxDuration: 3m
Flux:
spec:
interval: 1m
prune: true
wait: true
timeout: 5m
参考: 请参阅 references/sync-policies.md
渐进式交付
使用 ArgoCD Rollouts 的金丝雀部署
apiVersion: argoproj.io/v1alpha1
kind: Rollout
metadata:
name: my-app
spec:
replicas: 5
strategy:
canary:
steps:
- setWeight: 20
- pause: {duration: 1m}
- setWeight: 50
- pause: {duration: 2m}
- setWeight: 100
蓝绿部署
strategy:
blueGreen:
activeService: my-app
previewService: my-app-preview
autoPromotionEnabled: false
密钥管理
External Secrets Operator
apiVersion: external-secrets.io/v1beta1
kind: ExternalSecret
metadata:
name: db-credentials
spec:
refreshInterval: 1h
secretStoreRef:
name: aws-secrets-manager
kind: SecretStore
target:
name: db-credentials
data:
- secretKey: password
remoteRef:
key: prod/db/password
Sealed Secrets
# 加密密钥
kubeseal --format yaml < secret.yaml > sealed-secret.yaml
# 将 sealed-secret.yaml 提交到 Git
最佳实践
- 不同环境使用独立仓库或分支
- 为 Git 仓库实现 RBAC
- 启用同步失败通知
- 为自定义资源配置健康检查
- 为生产环境实现审批门控
- 不要将密钥存入 Git(使用 External Secrets)
- 使用 App of Apps 模式进行组织
- 为发布打标签以便回滚
- 监控同步状态并配置告警
- 先在预发环境测试变更
故障排查
同步失败:
argocd app get my-app
argocd app sync my-app --prune
不同步状态:
argocd app diff my-app
argocd app sync my-app --force
相关技能
- k8s-manifest-generator - 用于创建清单
- helm-chart-scaffolding - 用于打包应用
限制
- 仅当任务明确符合上述范围时使用本技能。
- 输出不能替代环境特定的验证、测试或专家审查。
- 如果缺少必要的输入、权限、安全边界或成功标准,请停止并请求澄清。