ingress_create
Create and manage Kubernetes Ingress resources in specified namespaces with context-aware configuration, enabling traffic routing to backend services via host and port settings.
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
Name | Required | Description | Default |
---|---|---|---|
context_name | Yes | ||
host | Yes | ||
name | Yes | ||
namespace | Yes | ||
service_name | Yes | ||
service_port | Yes |
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"
}