Skip to content

Commit

Permalink
feat(pci.kubernetes): initial commit
Browse files Browse the repository at this point in the history
ref: TAPC-23
Signed-off-by: Pierre-Philippe <[email protected]>
  • Loading branch information
Pierre-Philippe committed Nov 15, 2024
1 parent a90c8a6 commit 85d8204
Showing 1 changed file with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import {
} from '@ovh-ux/manager-react-components';
import { TKube } from '@/types';
import ClusterStatus from './ClusterStatus.component';
import ClusterETCD from './ClusterETCD.component';

import AdmissionPlugins from './AdmissionPlugins.component';
import { isProcessing } from './ClusterManagement.component';
Expand Down Expand Up @@ -110,7 +111,19 @@ export default function ClusterInformation({
{kubeDetail.region}
</OsdsText>
</TileLine>

<TileLine label={t('kube_service_name')}>
<OsdsText
className="mb-4 break-words"
size={ODS_TEXT_SIZE._400}
level={ODS_TEXT_LEVEL.body}
color={ODS_THEME_COLOR_INTENT.text}
>
{kubeDetail.name}
</OsdsText>
</TileLine>
<TileLine label={t('kube_service_cluster_etcd_quota')}>
<ClusterETCD />
</TileLine>
<TileLine label={t('kube_service_cluster_nodes_url')}>
<Clipboard aria-label="clipboard" value={kubeDetail.nodesUrl} />
</TileLine>
Expand Down

0 comments on commit 85d8204

Please sign in to comment.