k8s-pilot

by bourbonkk

daemonset_create

Create a DaemonSet in a specified Kubernetes namespace using the provided context, name, container image, and labels. Simplifies deployment across cluster nodes.

Instructions

Create a DaemonSet in the specified namespace.

Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace name: The DaemonSet name image: The container image to use labels: Labels to apply to the DaemonSet

Returns: Status of the creation operation

Input Schema

NameRequiredDescriptionDefault
context_nameYes
imageYes
labelsYes
nameYes
namespaceYes

Input Schema (JSON Schema)

{ "properties": { "context_name": { "title": "Context Name", "type": "string" }, "image": { "title": "Image", "type": "string" }, "labels": { "additionalProperties": true, "title": "Labels", "type": "object" }, "name": { "title": "Name", "type": "string" }, "namespace": { "title": "Namespace", "type": "string" } }, "required": [ "context_name", "namespace", "name", "image", "labels" ], "title": "daemonset_createArguments", "type": "object" }
ID: varavj97rf