Skip to content

Commit 9eb0200

Browse files
committed
upcoming: [M3-10780] - prepare for LKE Dashboard removal
Do not show LKE Dashboard button if the dashboard is missing. https://techdocs.akamai.com/cloud-computing/docs/an-overview-of-the-kubernetes-dashboard-on-lke LKE’s Kubernetes Dashboard will be decommissioned in May 2026 Following the upstream archival of the Kubernetes Dashboard project, Akamai Cloud will decommission the LKE-hosted Kubernetes Dashboard. This change will occur in May 2026. Once decommissioned, the Kubernetes Dashboard UI will no longer be available for new and existing LKE clusters.
1 parent 0481a1b commit 9eb0200

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/manager/src/features/Kubernetes/KubernetesClusterDetail/KubeSummaryPanel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export const KubeSummaryPanel = React.memo((props: Props) => {
166166
<ActionMenu
167167
actionsList={[
168168
{
169-
disabled: Boolean(dashboardError) || !dashboard,
169+
disabled: Boolean(dashboardError) || !dashboard || !dashboard.url,
170170
onClick: () => window.open(dashboard?.url, '_blank'),
171171
title: 'Kubernetes Dashboard',
172172
},
@@ -183,7 +183,7 @@ export const KubeSummaryPanel = React.memo((props: Props) => {
183183
cluster.tier === 'enterprise' ? undefined : (
184184
<StyledActionButton
185185
disabled={
186-
Boolean(dashboardError) || !dashboard || isClusterReadOnly
186+
Boolean(dashboardError) || !dashboard || !dashboard.url || isClusterReadOnly
187187
}
188188
endIcon={<ExternalLinkIcon sx={{ height: '14px' }} />}
189189
onClick={() => window.open(dashboard?.url, '_blank')}

0 commit comments

Comments
 (0)