Skip to content

Increase obs api read timeout for datahub #926

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

Merged
merged 1 commit into from
May 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions magefiles/gateway.go
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,7 @@ func createObservatoriumAPIContainer(m TemplateMaps, namespace string) corev1.Co
fmt.Sprintf("--metrics.alertmanager.endpoint=http://%s.%s.svc.cluster.local:9093", alertManagerName, namespace),
"--rbac.config=/etc/observatorium/rbac.yaml",
"--tenants.config=/etc/observatorium/tenants.yaml",
"--server.read-timeout=5m",
},
Ports: []corev1.ContainerPort{
{Name: "grpc-public", ContainerPort: 8090},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,7 @@ objects:
- --metrics.alertmanager.endpoint=http://alertmanager.rhobs-production.svc.cluster.local:9093
- --rbac.config=/etc/observatorium/rbac.yaml
- --tenants.config=/etc/observatorium/tenants.yaml
- --server.read-timeout=5m
image: quay.io/redhat-user-workloads/rhobs-mco-tenant/observatorium-api:9aada65247a07782465beb500323a0e18d7e3d05
livenessProbe:
failureThreshold: 10
Expand Down