chore: drop dashboard/v1 proto — service retired#1
Merged
Conversation
dashboard.v1.DashboardService was consumed only by the standalone dashboard-api Go service, which is being retired. The dashboard frontend now talks directly to the agent API over HTTP, so the gRPC bridge is no longer needed. Removes: - dashboard/v1/dashboard.proto (source) - dashboard/v1/dashboard.pb.go (generated) - dashboard/v1/dashboard_grpc.pb.go (generated) go build ./... clean. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
mastermanas805
added a commit
to InstaNode-dev/infra
that referenced
this pull request
May 11, 2026
The standalone dashboard-api service is being retired across the platform. The dashboard frontend now talks directly to the agent API at api.instanode.dev for every operation — auth, claim, billing, team, resources, stacks. This manifest was the only k8s artifact for the service (ConfigMap, Deployment, NodePort 30082, all under namespace=instant). No other infra file referenced dashboard-api (verified with grep — no leftover configmap, ingress, networkpolicy, or env-var references). Companion PRs: - InstaNode-dev/instanode-web#21 (dashboard: purge references) - InstaNode-dev/proto#1 (drop dashboard/v1 proto) - InstaNode-dev/api#14 (delete internal/dashboardsvc/) Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
dashboard.v1.DashboardServicewas consumed only by the standalonedashboard-apiGo service, which is being retired.dashboard/v1/dashboard.protoand the two generated files (dashboard.pb.go,dashboard_grpc.pb.go).Coordination
Part of the dashboard-api retirement chain. The companion PR in
instanode-apideletesapi/internal/dashboardsvc/and the gRPC bootstrap inmain.go. Land this first (or together) so the api repo'sreplace instant.dev/proto => ../protodirective resolves cleanly.Test plan
go build ./...cleandashboard/v1(verified locally with grep)