Container Manager Mcp
CLI or API | MCP | Agent
Version: 2.3.0
Documentation — Installation, deployment, usage across the API, CLI, MCP, and A2A agent interfaces, and the multi-host control plane are maintained in the official documentation.
Overview
Container Manager Mcp is a production-grade Agent and Model Context Protocol (MCP) server designed to interface directly with Container Manager - manage Docker, Docker Swarm, Podman, and Kubernetes containers and workloads. MCP+A2A Servers Out of the Box!.
Full coverage across all three engines: Docker (incl. Swarm/service/stack/config/secret/node
operations via cm_docker_swarm), Podman (incl. pod/kube operations, generate/play kube, checkpoint/restore
via cm_podman), and a complete Kubernetes surface (RKE2 / k3s / vanilla) spanning workloads,
config, networking, storage, RBAC, cluster admin, governance, and observability through 8 themed cm_k8s_*
tools built on the official kubernetes Python client. A cm_multi_context tool lets an agent fan out
operations across several Docker/Podman/Swarm/Kubernetes contexts in parallel, and cm_ingest_inventory feeds
Docker, Swarm, and Kubernetes resources into the ontology-driven Knowledge Graph as typed nodes.
Key Features
- Consolidated Action-Routed MCP Tools: Minimizes token overhead and eliminates tool bloat in LLM contexts by grouping methods into optimized, togglable tool modules.
- Full Docker + Swarm + Podman + Kubernetes Coverage: First-class support for Docker (incl. Swarm/service/stack/config/secret/node ops), rootless Podman (incl. pods,
generate/play kube, checkpoint/restore), and a full Kubernetes surface (RKE2 / k3s / vanilla) across workloads, config, networking, storage, RBAC, cluster admin, governance, and observability. See Kubernetes below. - Multi-Context Parallel Operation:
cm_multi_contextfans operations out across several Docker, Podman, Swarm, and/or Kubernetes contexts at once (ThreadPoolExecutor-backed), with health checks and lazy reconnect. - Enterprise-Grade Security: Comprehensive support for Eunomia policies, OIDC token delegation, and granular execution context tracking.
- Integrated Graph Agent: Built-in Pydantic AI agent supporting the Agent Control Protocol (ACP) and standard Web interfaces (AG-UI).
- Ontology-Driven KG Ingestion:
cm_ingest_inventorymaps live Docker/Swarm/Kubernetes inventory (containers, images, volumes, networks, services, nodes, pods, deployments, namespaces, native k8s Services) into typed OWL/RDF nodes for cross-source reasoning. - Native Telemetry & Tracing: Out-of-the-box OpenTelemetry exports and native Langfuse tracing.
Multi-Host & Zero-Script Remote Docker Orchestration
container-manager-mcp allows a single master instance of the MCP server on your controller to route container and volume operations securely to remote hosts over SSH standard tunneling.
- Unified Inventory: Connection endpoints are loaded dynamically from the XDG shared inventory at
~/.config/agent-utilities/inventory.yml(.ymlpreferred; a legacyinventory.yamlis still read when no.ymlexists). - Zero TCP Socket Exposure: Operations route directly over the standard SSH channel securely, removing the need to expose Docker socket TCP ports.
Shared inventory: the
cm_*host aliases you pass ashostcome from the sameinventory.ymlused by tunnel-manager — define your fleet once. Create and validate it withtunnel-manager inventory init/tunnel-manager inventory doctor. See tunnel-manager's Inventory guide for the full schema, template, and override options.
To configure and utilize the multi-host remote routing, see the detailed Multi-Host Architecture Guide.
CLI or API
This agent wraps the Container Manager - manage Docker, Docker Swarm, and Podman containers. MCP+A2A Servers Out of the Box! API. You can interact with it programmatically or via its integrated execution entrypoints.
Detailed instructions on how to use the underlying API wrappers, extended schema bindings, and developer SDK references are maintained in docs/index.md.
Environment doctor
Not sure your environment is wired up? Run the guided doctor first. It probes
every surface with real checks — python client libs + CLIs, CONTAINER_MANAGER_TYPE
/ toggles / K8S_CONTEXTS parsing, the tunnel-manager SSH inventory (and per-host
reachability), the docker / podman daemons, and each kubernetes context —
and prints concrete remediation for anything that is not OK, so you are walked through
connecting to your environments. Available as the container-manager-doctor CLI and
the cm_doctor MCP tool.
container-manager-doctor # diagnose everything (exit 1 if any FAIL)
container-manager-doctor --guided # + probe every inventory host
container-manager-doctor --backend inventory --host <alias>
container-manager-doctor --backend kubernetes --context <ctx>
container-manager-doctor --backend docker --host <alias>
container-manager-doctor --json # machine-readable report
The cm_doctor MCP tool mirrors it: action=run for a full sweep, or a focused
check_backends / check_inventory / check_docker / check_podman /
check_kubernetes. Each check returns {name, category, status: ok|warn|fail, detail, remediation} plus a summary. Start here, then follow the
container-manager-config-walkthrough
skill.
MCP
This server utilizes dynamic Action-Routed tools to optimize token overhead and maximize IDE compatibility.
Available MCP Tools
Auto-generated — do not edit (synced by the mcp-readme-table pre-commit hook).
Condensed action-routed tools (default — MCP_TOOL_MODE=condensed)
| MCP Tool | Toggle Env Var | Description |
|---|---|---|
cm_compose_operations |
COMPOSETOOL |
Manage docker-compose or podman-compose operations. |
cm_container_operations |
CONTAINERTOOL |
Manage container operations. |
cm_docker_swarm |
DOCKERSWARMTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_doctor |
DOCTORTOOL |
Diagnose + get remediation for the inventory / kubernetes / docker / podman environment. |
cm_image_operations |
IMAGETOOL |
Manage container images. |
cm_info_operations |
INFOTOOL |
Manage container manager info operations. |
cm_ingest_inventory |
MISCTOOL |
Natively ingest the container inventory into epistemic-graph as typed nodes. |
cm_k8s_cluster |
K8SCLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_config |
K8SCONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_governance |
K8SGOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_networking |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_observability |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_rbac |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_storage |
K8SSTORAGETOOL |
Manage Kubernetes storage (PV, PVC, storage classes, volume snapshots, CSI drivers). |
cm_k8s_workloads |
K8SWORKLOADSTOOL |
Manage Kubernetes workloads (pods, rollouts, strategies, statefulsets, daemonsets, replicasets, jobs, cronjobs). |
cm_list_hosts |
INVENTORYTOOL |
List the host aliases you can pass as host to any cm_* operation |
cm_multi_context |
MULTICONTEXTTOOL |
Manage containers across multiple backends (Kubernetes, Docker, Podman, Swarm) with context selection. |
cm_network_operations |
NETWORKTOOL |
Manage network operations. |
cm_podman |
PODMANTOOL |
Manage Podman operations (pods, networks, volumes, checkpoint/restore, kube interop, system). |
cm_swarm_operations |
SWARMTOOL |
Manage swarm operations. |
cm_system_operations |
SYSTEMTOOL |
Manage container manager system operations. |
cm_volume_operations |
VOLUMETOOL |
Manage volume operations. |
trace_port_namespace |
MISCTOOL |
Locate the container actively using/mapping the specified port on the target host. |
Verbose 1:1 API-mapped tools (MCP_TOOL_MODE=verbose or both)
| MCP Tool | Toggle Env Var | Description |
|---|---|---|
cm_container_operations__exec_in_container |
CONTAINERTOOL |
Manage container operations. |
cm_container_operations__get_container_logs |
CONTAINERTOOL |
Manage container operations. |
cm_container_operations__list_containers |
CONTAINERTOOL |
Manage container operations. |
cm_container_operations__prune_containers |
CONTAINERTOOL |
Manage container operations. |
cm_container_operations__remove_container |
CONTAINERTOOL |
Manage container operations. |
cm_container_operations__stop_container |
CONTAINERTOOL |
Manage container operations. |
cm_docker_swarm__docker_config_create |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_config_list |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_node_inspect |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_node_ls |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_node_update |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_secret_create |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_secret_list |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_service_create |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_service_list |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_service_logs |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_service_ps |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_service_rm |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_service_update |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_stack_deploy |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_stack_rm |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_stack_services |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_swarm_init |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_swarm_join |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_docker_swarm__docker_swarm_leave |
DOCKERTOOL |
Manage Docker Swarm operations (Swarm, services, stacks, configs, secrets, nodes). |
cm_doctor__check_backends |
DOCTORTOOL |
Diagnose + get remediation for the inventory / kubernetes / docker / podman environment. |
cm_doctor__check_docker |
DOCTORTOOL |
Diagnose + get remediation for the inventory / kubernetes / docker / podman environment. |
cm_doctor__check_inventory |
DOCTORTOOL |
Diagnose + get remediation for the inventory / kubernetes / docker / podman environment. |
cm_doctor__check_kubernetes |
DOCTORTOOL |
Diagnose + get remediation for the inventory / kubernetes / docker / podman environment. |
cm_doctor__check_podman |
DOCTORTOOL |
Diagnose + get remediation for the inventory / kubernetes / docker / podman environment. |
cm_doctor__run |
DOCTORTOOL |
Diagnose + get remediation for the inventory / kubernetes / docker / podman environment. |
cm_image_operations__list_images |
IMAGETOOL |
Manage container images. |
cm_image_operations__prune_images |
IMAGETOOL |
Manage container images. |
cm_image_operations__pull_image |
IMAGETOOL |
Manage container images. |
cm_image_operations__remove_image |
IMAGETOOL |
Manage container images. |
cm_k8s_cluster__approve_csr |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__cluster_info_dump |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__cordon_node |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__deny_csr |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__describe_api_resource |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__describe_cluster_plugin |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__drain_node |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__get_api_server_info |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__get_cluster_info |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__get_config |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__get_node_affinity |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__get_node_conditions |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__inspect_node |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__list_api_resources |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__list_cluster_plugins |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__list_contexts |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__list_csr |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__list_node_taints |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__list_nodes |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__rename_context |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__set_node_affinity |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__set_pod_anti_affinity |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__taint_node |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__test_cluster_plugin |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__uncordon_node |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__untaint_node |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__use_context |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_cluster__validate_kubeconfig |
CLUSTERTOOL |
Manage Kubernetes cluster resources (nodes, contexts, CSRs, API resources, cluster info, admission plugins). |
cm_k8s_config__annotate_resource |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__compare_configmap_state |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__create_configmap |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__create_namespace |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__create_secret |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__delete_namespace |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__describe_crd |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__get_secret_state_hash |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__label_resource |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__list_configmaps |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__list_crds |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__list_custom_resources |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__list_events |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__list_namespaces |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__list_secrets |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__patch_resource |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__sync_configmap_from_file |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__track_resource_version |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_config__wait_for_resource_version |
CONFIGTOOL |
Manage Kubernetes configuration (configmaps, secrets, namespaces, events, CRDs, labels/annotations/patch, state tracking). |
cm_k8s_governance__create_horizontal_pod_autoscaler |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__create_limit_range |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__create_pod_disruption_budget |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__create_priority_class |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__create_resource_quota |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__delete_horizontal_pod_autoscaler |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__delete_limit_range |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__delete_pod_disruption_budget |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__delete_priority_class |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__delete_resource_quota |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__describe_horizontal_pod_autoscaler |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__describe_limit_range |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__describe_pod_disruption_budget |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__describe_priority_class |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__describe_resource_quota |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__list_horizontal_pod_autoscalers |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__list_limit_ranges |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__list_pod_disruption_budgets |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__list_priority_classes |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__list_resource_quotas |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__update_horizontal_pod_autoscaler |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_governance__update_resource_quota |
GOVERNANCETOOL |
Manage Kubernetes governance resources (ResourceQuotas, LimitRanges, PriorityClasses, PDBs, HPAs). |
cm_k8s_networking__check_dns_resolution |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__create_ingress |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__create_ingress_class |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__create_k8s_service |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__create_network_policy_with_cidr |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__create_networkpolicy |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__delete_ingress |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__delete_k8s_service |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__delete_networkpolicy |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__describe_ingress_class |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__get_k8s_service |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__list_dns_endpoints |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__list_endpoints |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__list_endpointslices |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__list_ingress |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__list_ingress_classes |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__list_k8s_services |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__list_networkpolicies |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__set_default_ingress_class |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__test_dns_connectivity |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__test_network_policy_connectivity |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_networking__update_network_policy_rules |
K8SNETWORKINGTOOL |
Manage Kubernetes networking (ingress, ingress classes, network policies, endpoints, DNS, native services). |
cm_k8s_observability__debug_deployment |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__debug_node |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__debug_pod |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__debug_service |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__get_autoscaler_history |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__get_autoscaler_metrics |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__get_cluster_resource_summary |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__get_node_metrics |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__get_pod_metrics |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__get_pod_resource_usage |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__get_resource_events |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__list_field_selector |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__scale_deployment_autoscaler |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__set_autoscaler_metrics |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__stream_pod_logs |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__top_nodes |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__top_pods |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_observability__watch_resource |
K8SOBSERVABILITYTOOL |
Observe Kubernetes resources (metrics, autoscaler metrics, watch/stream/events, debug helpers). |
cm_k8s_rbac__auth_can_i |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__create_aggregated_cluster_role |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__create_cluster_rolebinding |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__create_pod_security_policy |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__create_role |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__create_rolebinding |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__create_service_account_token |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__create_serviceaccount |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__delete_cluster_rolebinding |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__delete_pod_security_policy |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__delete_role |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__delete_rolebinding |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__delete_service_account_token |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__delete_serviceaccount |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__describe_pod_security_policy |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__evaluate_pod_security |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__list_cluster_rolebindings |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__list_cluster_roles |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__list_pod_security_policies |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__list_rolebindings |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__list_roles |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__list_service_account_mapped_secrets |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__list_service_account_tokens |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__list_serviceaccounts |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__local_subject_access_review |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__map_secret_to_service_account |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__subject_access_review |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__unmap_secret_from_service_account |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_rbac__update_aggregated_cluster_role |
K8SRBACTOOL |
Manage Kubernetes RBAC and security (roles, bindings, service accounts, tokens, access reviews, pod security, secret mapping). |
cm_k8s_storage__create_persistent_volume |
K8SSTORAGETOOL |
Manage Kubernetes storage (PV, PVC, storage classes, volume snapshots, CSI drivers). |
cm_k8s_storage__create_persistent_volume_claim |
K8SSTORAGETOOL |
Manage Kubernetes storage (PV, PVC, storage classes, volume snapshots, CSI drivers). |
| `cm_k8s_storage__create_st |
No comments yet
Be the first to share your take.