k8s-pilot

by bourbonkk

serviceaccount_create

Create and manage Kubernetes ServiceAccounts in specified namespaces using the 'k8s-pilot' MCP server. Simplifies cluster management with context switching and resource operations.

Instructions

Create a ServiceAccount in the specified namespace.

Args: context_name: The Kubernetes context name namespace: The Kubernetes namespace name: The ServiceAccount name labels: Optional labels to apply to the ServiceAccount

Returns: Status of the creation operation

Input Schema

NameRequiredDescriptionDefault
context_nameYes
labelsNo
nameYes
namespaceYes

Input Schema (JSON Schema)

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