github.com/caos/orbos@v1.5.14-0.20221103111702-e6cd0cea7ad4/internal/operator/boom/application/applications/logcollection/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: "logging-operator", 8 Version: "3.6.0", 9 Index: &chart.Index{ 10 Name: "banzaicloud-stable", 11 URL: "kubernetes-charts.banzaicloud.com", 12 }, 13 } 14 } 15 16 func GetImageTags() map[string]string { 17 return map[string]string{ 18 "banzaicloud/logging-operator": "3.6.0", 19 } 20 }