Dockerman Docs
Kubernetes

Networking

Inspect Services, Ingresses, Endpoints, and NetworkPolicies across every namespace.

The Networking page lists Services, Ingresses, Endpoints, and NetworkPolicies for the current cluster and namespace scope. Use it to inspect how traffic moves through the cluster without jumping back to kubectl.

Services

The list shows the service type, ClusterIP, and ports.

  • ClusterIP for internal traffic inside the cluster.
  • NodePort when you need a node-level port for quick access.
  • LoadBalancer when the cluster exposes an external load balancer.
  • ExternalName when the Service points to a DNS name instead of a selector.

Services with a selector also show a Forward button that starts a port forward to a ready backing pod.

The detail view shows the full Service spec and YAML.

Ingresses

The list shows hosts, paths, and backend Services. The detail view shows TLS secrets, annotations, and the rules table.

Endpoints

Endpoints list the raw backend addresses behind a Service. This view is most useful when a Service has no healthy backends.

EndpointSlices

EndpointSlices are the discovery objects Kubernetes currently maintains behind Services. Dockerman provides a dedicated list and detail route alongside legacy Endpoints.

NetworkPolicies

NetworkPolicies describe which pods can talk to each other.

Creation is YAML-only — use the YAML editor to author new NetworkPolicies.

Delete

Inline delete is available for Services, Ingresses, and NetworkPolicies from each list view. See Workloads → Delete actions for the full list of resources with inline delete.