github.com/caos/orbos@v1.5.14-0.20221103111702-e6cd0cea7ad4/internal/operator/boom/application/applications/reconciling/helm/helm.go (about) 1 package helm 2 3 import "github.com/caos/orbos/internal/operator/boom/templator/helm/chart" 4 5 func GetChartInfo() *chart.Chart { 6 return &chart.Chart{ 7 Name: "argo-cd", 8 Version: "2.6.3", 9 Index: &chart.Index{ 10 Name: "argo", 11 URL: "argoproj.github.io/argo-helm", 12 }, 13 } 14 } 15 16 func GetImageTags() map[string]string { 17 return map[string]string{ 18 "argoproj/argocd": "v1.7.4", 19 "quay.io/dexidp/dex": "v2.22.0", 20 "redis": "5.0.8", 21 "ghcr.io/caos/argocd-secrets": "1.0.22", 22 } 23 }