1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-04 13:25:26 +02:00

feat(app/kubernetes): Popout kubectl shell into new window [r8s-307] (#922)

This commit is contained in:
James Player 2025-07-25 15:24:32 +12:00 committed by GitHub
parent e7d97d7a2b
commit 7bcb37c761
10 changed files with 677 additions and 158 deletions

View file

@ -24,6 +24,7 @@ import { AccessView } from '@/react/kubernetes/namespaces/AccessView/AccessView'
import { JobsView } from '@/react/kubernetes/more-resources/JobsView/JobsView';
import { ClusterView } from '@/react/kubernetes/cluster/ClusterView';
import { HelmApplicationView } from '@/react/kubernetes/helm/HelmApplicationView';
import { KubectlShellView } from '@/react/kubernetes/cluster/KubectlShell/KubectlShellView';
export const viewsModule = angular
.module('portainer.kubernetes.react.views', [])
@ -84,6 +85,10 @@ export const viewsModule = angular
'kubernetesHelmApplicationView',
r2a(withUIRouter(withReactQuery(withCurrentUser(HelmApplicationView))), [])
)
.component(
'kubectlShellView',
r2a(withUIRouter(withReactQuery(withCurrentUser(KubectlShellView))), [])
)
.component(
'kubernetesClusterView',
r2a(withUIRouter(withReactQuery(withCurrentUser(ClusterView))), [])