ArgoCD:提供git commit SHA到Helm值

p5fdfcr1  于 12个月前  发布在  Git
关注(0)|答案(1)|浏览(101)

假设您在由ArgoCD管理的集群中有一个Application规范,例如:

apiVersion: argoproj.io/v1alpha1
kind: Application
metadata:
  name: foo-app
  namespace: argocd
spec:
  destination:
    name: some-cluster
    namespace: foo-namespace
  project: default
  source:
    path: kubernetes/helm
    repoURL: https://github.com/my/great-project.git
    targetRevision: HEAD

字符串
现在假设在Helm Chart中我需要访问检查出来的Git commit SHA,它被用来获取kubernetes/helm中的Helm Chart。
如何做到这一点?

5vf7fwbs

5vf7fwbs1#

根据build environment,您应该能够在Helm chart上使用环境变量ARGOCD_APP_REVISION

相关问题