1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

[Bugfix] Change Exporter labels (#1678)

This commit is contained in:
Adam Janikowski 2024-07-15 12:24:55 +02:00 committed by GitHub
parent 2ab90402af
commit a0234751d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -3,6 +3,7 @@
## [master](https://github.com/arangodb/kube-arangodb/tree/master) (N/A)
- (Maintenance) Go 1.22.4 & Kubernetes 1.29.6 libraries
- (Feature) Fix CRD Schema types
- (Bugfix) Adjust Prometheus Monitor labels
## [1.2.41](https://github.com/arangodb/kube-arangodb/tree/1.2.41) (2024-05-24)
- (Maintenance) Bump Prometheus API Version

View file

@ -55,7 +55,7 @@ func LabelsForExporterServiceMonitor(name string, obj deploymentApi.DeploymentSp
func LabelsForExporterServiceMonitorSelector(name string) map[string]string {
return map[string]string{
k8sutil.LabelKeyArangoDeployment: name,
k8sutil.LabelKeyApp: k8sutil.AppName,
k8sutil.LabelKeyArangoExporter: "yes",
}
}