diff --git a/frontend/src/pages/K8sResourceList.tsx b/frontend/src/pages/K8sResourceList.tsx index 02c36ed..eafead5 100644 --- a/frontend/src/pages/K8sResourceList.tsx +++ b/frontend/src/pages/K8sResourceList.tsx @@ -318,7 +318,7 @@ export default function K8sResourceList() { case 'statefulset': return ['Name', 'Namespace', 'Replicas', 'Age', 'Actions'] case 'service': - return ['Name', 'Namespace', 'Type', 'Cluster IP', 'External IP', 'Ports', 'NodePort', 'Age', 'Actions'] + return ['Name', 'Namespace', 'Type', 'Cluster IP', 'Ports', 'NodePort', 'Age', 'Actions'] case 'configmap': return ['Name', 'Namespace', 'Data Keys', 'Age', 'Actions'] case 'pod': @@ -402,7 +402,6 @@ export default function K8sResourceList() { {metadata.namespace || '-'} {spec.type || '-'} {spec.clusterIP || '-'} - {spec.externalIPs?.join(', ') || status.loadBalancer?.ingress?.map((i: any) => i.ip || i.hostname).join(', ') || '-'} {portsDisplay} {nodePortsDisplay} {getAge(metadata.creationTimestamp)}