c0389c0302
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
121 lines
4.1 KiB
TypeScript
121 lines
4.1 KiB
TypeScript
/**
|
|
* StorageClassColumns — registerResourceTableColumnsProcessor integration.
|
|
*
|
|
* Adds Rook-Ceph-specific columns to the native Headlamp StorageClass table
|
|
* ('headlamp-storageclasses') and PV table ('headlamp-persistentvolumes').
|
|
* Non-Rook-Ceph rows show '—'.
|
|
*
|
|
* Column names (Protocol, Pool) are intentionally shared with the tns-csi
|
|
* column processor so both plugins contribute to the same logical columns
|
|
* on a mixed-driver cluster.
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { isRookCephProvisioner } from '../../api/k8s';
|
|
|
|
/** Safely read a nested field from either a KubeObject instance or plain object. */
|
|
function getField(item: unknown, ...path: string[]): unknown {
|
|
if (!item || typeof item !== 'object') return undefined;
|
|
const obj = item as Record<string, unknown>;
|
|
// KubeObject instances store raw JSON in .jsonData
|
|
const raw =
|
|
'jsonData' in obj && obj['jsonData'] && typeof obj['jsonData'] === 'object'
|
|
? (obj['jsonData'] as Record<string, unknown>)
|
|
: obj;
|
|
let cur: unknown = raw;
|
|
for (const key of path) {
|
|
if (!cur || typeof cur !== 'object') return undefined;
|
|
cur = (cur as Record<string, unknown>)[key];
|
|
}
|
|
return cur;
|
|
}
|
|
|
|
function isRookRow(item: unknown): boolean {
|
|
const provisioner = getField(item, 'provisioner') as string | undefined;
|
|
return typeof provisioner === 'string' && isRookCephProvisioner(provisioner);
|
|
}
|
|
|
|
function isRookPvRow(item: unknown): boolean {
|
|
const driver = getField(item, 'spec', 'csi', 'driver') as string | undefined;
|
|
return typeof driver === 'string' && isRookCephProvisioner(driver);
|
|
}
|
|
|
|
function rookProtocol(s: string | undefined): string {
|
|
if (!s) return '—';
|
|
if (s.includes('.rbd.')) return 'RBD';
|
|
if (s.includes('.cephfs.')) return 'CephFS';
|
|
return '—';
|
|
}
|
|
|
|
export function buildStorageClassColumns() {
|
|
return [
|
|
{
|
|
label: 'Protocol',
|
|
getValue: (item: unknown) => {
|
|
if (!isRookRow(item)) return null;
|
|
const provisioner = getField(item, 'provisioner') as string | undefined;
|
|
return rookProtocol(provisioner);
|
|
},
|
|
render: (item: unknown) => {
|
|
if (!isRookRow(item)) return <span>—</span>;
|
|
const provisioner = getField(item, 'provisioner') as string | undefined;
|
|
return <span>{rookProtocol(provisioner)}</span>;
|
|
},
|
|
},
|
|
{
|
|
label: 'Pool',
|
|
getValue: (item: unknown) => (getField(item, 'parameters', 'pool') as string | null) ?? null,
|
|
render: (item: unknown) => {
|
|
if (!isRookRow(item)) return <span>—</span>;
|
|
const pool = getField(item, 'parameters', 'pool') as string | undefined;
|
|
return <span>{pool ?? '—'}</span>;
|
|
},
|
|
},
|
|
{
|
|
label: 'Cluster',
|
|
getValue: (item: unknown) =>
|
|
(getField(item, 'parameters', 'clusterID') as string | null) ?? null,
|
|
render: (item: unknown) => {
|
|
if (!isRookRow(item)) return <span>—</span>;
|
|
const clusterID = getField(item, 'parameters', 'clusterID') as string | undefined;
|
|
if (!clusterID) return <span>—</span>;
|
|
return (
|
|
<span title={clusterID}>
|
|
{clusterID.length > 16 ? `${clusterID.slice(0, 16)}…` : clusterID}
|
|
</span>
|
|
);
|
|
},
|
|
},
|
|
];
|
|
}
|
|
|
|
export function buildPVColumns() {
|
|
return [
|
|
{
|
|
label: 'Protocol',
|
|
getValue: (item: unknown) => {
|
|
if (!isRookPvRow(item)) return null;
|
|
const driver = getField(item, 'spec', 'csi', 'driver') as string | undefined;
|
|
return rookProtocol(driver);
|
|
},
|
|
render: (item: unknown) => {
|
|
if (!isRookPvRow(item)) return <span>—</span>;
|
|
const driver = getField(item, 'spec', 'csi', 'driver') as string | undefined;
|
|
return <span>{rookProtocol(driver)}</span>;
|
|
},
|
|
},
|
|
{
|
|
label: 'Pool',
|
|
getValue: (item: unknown) =>
|
|
(getField(item, 'spec', 'csi', 'volumeAttributes', 'pool') as string | null) ?? null,
|
|
render: (item: unknown) => {
|
|
if (!isRookPvRow(item)) return <span>—</span>;
|
|
const pool = getField(item, 'spec', 'csi', 'volumeAttributes', 'pool') as
|
|
| string
|
|
| undefined;
|
|
return <span>{pool ?? '—'}</span>;
|
|
},
|
|
},
|
|
];
|
|
}
|