mirror of https://github.com/portainer/portainer
42 lines
989 B
TypeScript
42 lines
989 B
TypeScript
![]() |
import { useEnvironmentId } from '@/react/hooks/useEnvironmentId';
|
||
|
import { isBE } from '@/react/portainer/feature-flags/feature-flags.service';
|
||
|
import { useUnauthorizedRedirect } from '@/react/hooks/useUnauthorizedRedirect';
|
||
|
|
||
|
import { PageHeader } from '@@/PageHeader';
|
||
|
|
||
|
import { CreateNamespaceForm } from './CreateNamespaceForm';
|
||
|
|
||
|
export function CreateNamespaceView() {
|
||
|
const environmentId = useEnvironmentId();
|
||
|
|
||
|
useUnauthorizedRedirect(
|
||
|
{
|
||
|
authorizations: 'K8sResourcePoolsW',
|
||
|
forceEnvironmentId: environmentId,
|
||
|
adminOnlyCE: !isBE,
|
||
|
},
|
||
|
{
|
||
|
to: 'kubernetes.resourcePools',
|
||
|
params: {
|
||
|
id: environmentId,
|
||
|
},
|
||
|
}
|
||
|
);
|
||
|
|
||
|
return (
|
||
|
<div className="form-horizontal">
|
||
|
<PageHeader
|
||
|
title="Create a namespace"
|
||
|
breadcrumbs="Create a namespace"
|
||
|
reload
|
||
|
/>
|
||
|
|
||
|
<div className="row">
|
||
|
<div className="col-sm-12">
|
||
|
<CreateNamespaceForm />
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
);
|
||
|
}
|