Loading…
Loading…
Features
One-click port forwarding to Pods and Services from the Explorer.
Podex provides one-click port forwarding to your cluster resources directly from the Explorer table.
Click the port icon on any supported resource row to open a dialog, enter a local port (e.g., 8080), and the backend handles the rest:
kubectl port-forward --address 0.0.0.0 subprocesshttp://127.0.0.1:PORT link (local) or a badge (Docker/sandbox)port and target_port are provided: kubectl port-forward kind/name PORT:TARGET_PORT -n namespaceport is provided: maps localhost:PORT to the resource's first container portWhen running in Docker, the backend automatically:
127.0.0.1 with host.docker.internalinsecure-skip-tls-verify for self-signed certificatescurrent-context if neededPOST /api/kube/port-forward
Body: { kind, name, namespace, port, target_port? }
Returns: { pid, port, target_port, is_docker }
DELETE /api/kube/port-forward/{pid}
Kills the port-forward subprocess by PID.