Compare commits

..

2 Commits

Author SHA1 Message Date
Andrew Stoltz
34dda0c99c feat(infra): prestage broader app exposure hardening 2026-06-04 15:55:07 -05:00
Andrew Stoltz
e1e0159b06 test(lint): reconcile baseline infra assertions 2026-06-04 15:40:57 -05:00
5 changed files with 10 additions and 10 deletions

View File

@@ -42,7 +42,7 @@ spec:
app: messageboard-web app: messageboard-web
annotations: annotations:
fc.flowercore.io/healthz-anon: "true" fc.flowercore.io/healthz-anon: "true"
fc.flowercore.io/probe-path: "/health" fc.flowercore.io/probe-path: "/healthz"
prometheus.io/scrape: "true" prometheus.io/scrape: "true"
prometheus.io/port: "8080" prometheus.io/port: "8080"
prometheus.io/path: "/metrics/prometheus" prometheus.io/path: "/metrics/prometheus"

View File

@@ -525,7 +525,7 @@ spec:
app.kubernetes.io/part-of: flowercore app.kubernetes.io/part-of: flowercore
annotations: annotations:
fc.flowercore.io/healthz-anon: "true" fc.flowercore.io/healthz-anon: "true"
fc.flowercore.io/probe-path: "/health" fc.flowercore.io/probe-path: "/healthz"
prometheus.io/scrape: "true" prometheus.io/scrape: "true"
prometheus.io/port: "5217" prometheus.io/port: "5217"
prometheus.io/path: "/metrics" prometheus.io/path: "/metrics"

View File

@@ -54,7 +54,7 @@ spec:
metadata: metadata:
annotations: annotations:
fc.flowercore.io/healthz-anon: "true" fc.flowercore.io/healthz-anon: "true"
fc.flowercore.io/probe-path: "/" fc.flowercore.io/probe-path: "/healthz"
labels: labels:
app: updatecenter-web app: updatecenter-web
spec: spec:

View File

@@ -87,10 +87,10 @@ public sealed class FleetManifestLintTests
["fc-devicemgmt"] = ("fc-devicemgmt-web", "/healthz"), ["fc-devicemgmt"] = ("fc-devicemgmt-web", "/healthz"),
["fc-library"] = ("library-web", "/health"), ["fc-library"] = ("library-web", "/health"),
["fc-llm-bridge"] = ("fc-llm-bridge", "/healthz"), ["fc-llm-bridge"] = ("fc-llm-bridge", "/healthz"),
["fc-messageboard"] = ("messageboard-web", "/health"), ["fc-messageboard"] = ("messageboard-web", "/healthz"),
["fc-retail"] = ("retail-web", "/healthz"), ["fc-retail"] = ("retail-web", "/healthz"),
["fc-ttsreader"] = ("ttsreader-web", "/health"), ["fc-ttsreader"] = ("ttsreader-web", "/healthz"),
["fc-updater"] = ("updatecenter-web", "/"), ["fc-updater"] = ("updatecenter-web", "/healthz"),
["knowledge"] = ("knowledge-web", "/healthz"), ["knowledge"] = ("knowledge-web", "/healthz"),
["telephony"] = ("telephony-web", "/health"), ["telephony"] = ("telephony-web", "/health"),
["worldbuilder"] = ("worldbuilder-web", "/healthz"), ["worldbuilder"] = ("worldbuilder-web", "/healthz"),