Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove noisy log message #1998

Merged
merged 1 commit into from
Feb 27, 2024
Merged

Remove noisy log message #1998

merged 1 commit into from
Feb 27, 2024

Conversation

pjuarezd
Copy link
Member

@pjuarezd pjuarezd commented Feb 26, 2024

Log message is showing every time tenant lister loops.

I0226 17:57:43.415969       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:43.713013       1 main-controller.go:783] MinIO Tenant Main loop!!!!
I0226 17:57:43.770997       1 event.go:364] Event(v1.ObjectReference{Kind:"Tenant", Namespace:"tenant-kms-encrypted", Name:"myminio", UID:"ab470988-c1d7-43bc-8e23-65ec5a01364b", APIVersion:"minio.min.io/v2", ResourceVersion:"1575", FieldPath:""}): type: 'Warning' reason: 'UsersCreatedFailed' Users creation failed: Put "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/admin/v3/add-user?accessKey=console": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:44.123932       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:48.727244       1 main-controller.go:783] MinIO Tenant Main loop!!!!
I0226 17:57:48.806417       1 event.go:364] Event(v1.ObjectReference{Kind:"Tenant", Namespace:"tenant-kms-encrypted", Name:"myminio", UID:"ab470988-c1d7-43bc-8e23-65ec5a01364b", APIVersion:"minio.min.io/v2", ResourceVersion:"1640", FieldPath:""}): type: 'Warning' reason: 'UsersCreatedFailed' Users creation failed: Put "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/admin/v3/add-user?accessKey=console": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:49.142102       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:49.339848       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:49.921992       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:50.430847       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:52.165030       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:52.427437       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:53.185831       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:53.435563       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:53.742585       1 main-controller.go:783] MinIO Tenant Main loop!!!!
I0226 17:57:53.808196       1 event.go:364] Event(v1.ObjectReference{Kind:"Tenant", Namespace:"tenant-kms-encrypted", Name:"myminio", UID:"ab470988-c1d7-43bc-8e23-65ec5a01364b", APIVersion:"minio.min.io/v2", ResourceVersion:"1724", FieldPath:""}): type: 'Warning' reason: 'UsersCreatedFailed' Users creation failed: Put "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/admin/v3/add-user?accessKey=console": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:54.152512       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:54.424644       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
I0226 17:57:55.168760       1 monitoring.go:122] 'tenant-kms-encrypted/myminio' Failed to get cluster health: Get "https://minio.tenant-kms-encrypted.svc.cluster.local/minio/health/cluster": dial tcp 10.96.104.175:443: connect: connection refused
Stream closed EOF for minio-operator/minio-operator-99876665f-bnmcr (minio-operator)

Signed-off-by: pjuarezd <pjuarezd@users.noreply.github.com>
@pjuarezd pjuarezd requested a review from cniackz February 26, 2024 17:55
@pjuarezd pjuarezd self-assigned this Feb 26, 2024
@dvaldivia dvaldivia merged commit 1be6cd1 into minio:master Feb 27, 2024
26 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants