Kubernetes Management¶
NextSight AI provides comprehensive Kubernetes cluster management with real-time monitoring and control.
Workload Management with Health Indicators¶

Manage all Kubernetes workloads with visual health indicators, quick actions, and real-time status updates
Resources¶
Pods¶
View and manage all pods:
- Status - Running, Pending, Failed, Succeeded
- Containers - Container count and status
- Restart Count - Number of container restarts
- Age - Time since pod creation
- Node - Node where pod is scheduled
Actions: - View logs (real-time streaming) - Open terminal (exec into container) - Delete pod - View YAML
Deployments¶
Manage deployments with one-click actions:
- Replicas - Desired vs. ready replicas
- Image - Container image version
- Strategy - RollingUpdate or Recreate
Actions: - Scale up/down - Rolling restart - Rollback to previous version - Edit YAML
Services¶
View service endpoints and routing:
- Type - ClusterIP, NodePort, LoadBalancer
- Ports - Port mappings
- Endpoints - Backend pod IPs
- External IP - LoadBalancer IP (if applicable)
Nodes¶
Monitor cluster nodes:
- Status - Ready, NotReady conditions
- Resources - CPU/Memory capacity and allocatable
- Pods - Running pod count
- Labels - Node labels and taints
Operations¶
Scaling¶
Scale deployments directly from the UI:
- Navigate to Kubernetes > Deployments
- Click the scale buttons (±)
- Or enter a specific replica count
Rolling Restart¶
Trigger a rolling restart without changing the spec:
- Click Restart on a deployment
- Pods are recreated one by one
- Zero-downtime restart
Rollback¶
Rollback to a previous revision:
- Click Rollback on a deployment
- Select the target revision
- Confirm the rollback
Real-time Logs¶
Live Log Streaming¶

Stream pod logs in real-time with WebSocket support, search functionality, and download option
Stream pod logs in real-time:
- Click on a pod
- Select Logs tab
- Choose container (if multiple)
Features: - Real-time streaming via WebSocket - Search and filter - Download logs - Timestamp display
Pod Terminal¶
Open an interactive terminal:
- Click on a pod
- Select Terminal tab
- Choose shell (
/bin/sh,/bin/bash)
Features: - Full PTY support - Terminal resize - Copy/paste support - Session persistence
Debug Containers¶
Debug distroless containers:
- Click Debug on a pod
- Select debug image (busybox, alpine, netshoot)
- Interactive debugging session
Uses Kubernetes ephemeral containers feature.
YAML Deploy¶
Manifest Deployment with Validation¶

Deploy Kubernetes manifests with syntax validation, dry-run mode, and comprehensive deployment summary
Apply Kubernetes manifests:
- Go to Deploy > YAML
- Paste or upload YAML
- Dry Run to validate
- Apply to deploy
Supports: - Multi-document YAML - Namespace override - Validation errors display