k8s-pilot

by bourbonkk

ingress_update

Update an existing Kubernetes Ingress resource by specifying the context, namespace, name, host, service name, and port. Simplify modifications to routing configurations for backend services.

Instructions

Update an existing Ingress in the specified namespace.

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

Returns: Status of the update 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_updateArguments", "type": "object" }
ID: varavj97rf