github.com/caos/orbos@v1.5.14-0.20221103111702-e6cd0cea7ad4/internal/operator/boom/application/applications/nodemetricsexporter/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-node-exporter",
     8  		Version: "1.11.1",
     9  	}
    10  }
    11  
    12  func GetImageTags() map[string]string {
    13  	return map[string]string{
    14  		"quay.io/prometheus/node-exporter": "v1.0.1",
    15  	}
    16  }