ingress_get
Retrieve detailed information about a specific Kubernetes Ingress by specifying the context name, namespace, and Ingress name. Use to inspect and manage Ingress configurations across clusters. Powered by the k8s-pilot MCP server for multi-cluster Kubernetes operations.
Instructions
Get details of a specific Ingress.
Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace name: The Ingress name
Returns: Detailed information about the Ingress
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| context_name | Yes | ||
| name | Yes | ||
| namespace | Yes |
Implementation Reference
- tools/ingress.py:72-99 (handler)The main handler function for the 'ingress_get' tool. It retrieves detailed information (name, host, paths with service details) of a specific Ingress resource in a Kubernetes namespace using the NetworkingV1Api.@mcp.tool() @use_current_context def ingress_get(context_name: str, namespace: str, name: str): """ Get details of a specific Ingress. Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace name: The Ingress name Returns: Detailed information about the Ingress """ networking_v1: NetworkingV1Api = get_api_clients(context_name)["networking"] ingress = networking_v1.read_namespaced_ingress(name=name, namespace=namespace) return { "name": ingress.metadata.name, "host": ingress.spec.rules[0].host if ingress.spec.rules else None, "paths": [ { "path": path.path, "service_name": path.backend.service.name, "service_port": path.backend.service.port.number } for path in ingress.spec.rules[0].http.paths ] if ingress.spec.rules else [] }
- server/server.py:13-13 (registration)The import statement in load_modules() that triggers the registration of tools in tools/ingress.py, including 'ingress_get', via the @mcp.tool() decorators.import tools.ingress # noqa: F401