k8s-pilot

by bourbonkk

ingress_create

Create and configure Kubernetes Ingress in a specified namespace using context name, host, service name, and port. Part of the k8s-pilot MCP server for managing multiple clusters.

Instructions

Create an Ingress in the specified namespace.

Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace name: The Ingress name host: The host for the Ingress service_name: The backend service name service_port: The backend service port

Returns: Status of the creation operation

Input Schema

NameRequiredDescriptionDefault
context_nameYes
hostYes
nameYes
namespaceYes
service_nameYes
service_portYes

Input Schema (JSON Schema)

{ "properties": { "context_name": { "title": "Context Name", "type": "string" }, "host": { "title": "Host", "type": "string" }, "name": { "title": "Name", "type": "string" }, "namespace": { "title": "Namespace", "type": "string" }, "service_name": { "title": "Service Name", "type": "string" }, "service_port": { "title": "Service Port", "type": "integer" } }, "required": [ "context_name", "namespace", "name", "host", "service_name", "service_port" ], "title": "ingress_createArguments", "type": "object" }
ID: varavj97rf