Skip to content

Commit fbd385b

Browse files
authored
deploy: fix: update Grafana ingress host format for consistency (#342)
## Motivation and Context Consistency with https://staging.registry.modelcontextprotocol.io/ URL format (i.e. `<env>.<service>`, rather than `<service>.<env>` ## How Has This Been Tested? Deployed in staging ## Breaking Changes Grafana URL changes, but it's only just launched so fine. ## Types of changes <!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [x] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation update
1 parent b27351b commit fbd385b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deploy/pkg/k8s/monitoring.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ func deployGrafana(ctx *pulumi.Context, cluster *providers.ProviderInfo, ns *cor
276276
}
277277

278278
// Create ingress for external access
279-
grafanaHost := "grafana.registry." + environment + ".modelcontextprotocol.io"
279+
grafanaHost := "grafana." + environment + ".registry.modelcontextprotocol.io"
280280

281281
_, err = networkingv1.NewIngress(ctx, "grafana-ingress", &networkingv1.IngressArgs{
282282
Metadata: &metav1.ObjectMetaArgs{

0 commit comments

Comments
 (0)