k8s_configmaps
Manage Kubernetes ConfigMaps to store and update configuration data for applications. Perform actions like create, read, update, and delete configuration key-value pairs in your cluster.
Instructions
Manage Kubernetes ConfigMaps. Actions:
list: List all ConfigMaps in a namespace
get: Get a specific ConfigMap
create: Create a new ConfigMap
update: Update an existing ConfigMap (requires confirm=true or dryRun=true)
delete: Delete a ConfigMap (requires confirm=true or dryRun=true)
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Action to perform | |
| name | No | ConfigMap name (required for most actions except list) | |
| namespace | No | Namespace (optional) | |
| data | No | ConfigMap data as key-value pairs (required for create/update) | |
| confirm | No | Confirm destructive action (required for update/delete unless dryRun=true) | |
| dryRun | No | Preview changes without executing (default: false) |