Remove the deprecated dapr dashboard#1647
Merged
JoshVanL merged 4 commits intoMay 28, 2026
Merged
Conversation
The dapr/dashboard repo has been archived. This commit removes all references to the dashboard from the CLI: - Delete cmd/dashboard.go and pkg/standalone/dashboard.go - Remove dashboard install from standalone init and upgrade - Remove dashboard helm chart management from Kubernetes init/upgrade/uninstall - Remove DashboardVersion from InitConfiguration and UpgradeConfig - Remove DAPR_DASHBOARD_PINNED_VERSION env vars from CI workflows - Remove dashboard curl steps from kind_e2e.yaml and self_hosted_e2e.yaml - Remove dashboard from controlPlaneLabels and status checks - Relax bundle validation so bundles with a dashboard field still parse - Remove all e2e test coverage of the dashboard - Update release.md to drop dashboard references Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
This was referenced May 27, 2026
The dapr-dashboard pod has been removed from install/upgrade, so the expected pod counts used by the upgrade and certificate-renewal e2e tests were off by one (each count included the single dashboard pod). Decrement all five constants so waitAllPodsRunning matches the actual control-plane pod count. Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
JoshVanL
approved these changes
May 28, 2026
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
The
dapr/dashboardrepository has been archived. This PR removes all dashboard references from the Dapr CLI:cmd/dashboard.go,pkg/standalone/dashboard.go,pkg/standalone/dashboard_test.go,pkg/kubernetes/dashboard_chart.go,pkg/kubernetes/dashboard_chart_test.godashboardVersionparameter fromInit(), removedinstallDashboardstep, removed dashboard binary download/move logicDashboardVersionfromInitConfigurationandUpgradeConfig, removeddapr-dashboardHelm release managementbundleDetailsvalidation so bundles that still contain a"dashboard"JSON field parse without error (forward-compat)"dapr-dashboard"fromcontrolPlaneLabelskind_e2e.yaml,self_hosted_e2e.yaml): removedDAPR_DASHBOARD_PINNED_VERSION/DAPR_DASHBOARD_LATEST_STABLE_VERSIONenv vars and the curl steps that fetched dashboard versionscommon.go,clean_env.go,upgrade_test.go,init_test.go,main_test.go,utils.go, andcommands.godocs/development/release.mdto drop dashboard prerequisitesTest plan
go build ./...passes (verified locally)go vet ./pkg/standalone/...passes (verified locally)gofmtapplied to all modified Go filesdapr initcompletes without attempting to install dashboarddapr upgradecompletes without dashboard helm release managementdapr statusdoes not listdapr-dashboardas a control-plane component"dashboard"field still parse successfully