Add v1.min.io/tenant label to minio service
v6.x -> v7.x removed the v1.min.io/tenant label for the minio service
We use this label to discover the minio pods for monitoring. Without this label minio is not monitored
without the patch:
$ kubectl -n minio-monitoring describe svc minio
Name: minio
Namespace: minio-monitoring
Labels: <none>
Annotations: <none>
with this patch:
$ kubectl -n minio-monitoring describe svc minio
Name: minio
Namespace: minio-monitoring
Labels: v1.min.io/tenant=monitoring
Annotations: <none>
Related issue: #2142 (closed)
Edited by Alin H