github.com/caos/orbos@v1.5.14-0.20221103111702-e6cd0cea7ad4/internal/operator/boom/application/applications/metriccollection/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: "prometheus-operator", 8 Version: "9.3.1", 9 } 10 } 11 12 func GetImageTags() map[string]string { 13 return map[string]string{ 14 "grafana/grafana": "7.1.5", 15 "quay.io/prometheus/alertmanager": "v0.21.0", 16 "squareup/ghostunnel": "v1.5.2", 17 "jettech/kube-webhook-certgen": "v1.2.1", 18 "quay.io/coreos/prometheus-operator": "v0.38.2", 19 "quay.io/coreos/configmap-reload": "v0.0.1", 20 "quay.io/coreos/prometheus-config-reloader": "v0.38.1", 21 "k8s.gcr.io/hyperkube": "v1.12.1", 22 "quay.io/prometheus/prometheus": "v2.20.1", 23 } 24 }