kubernetes-mesh-provisioner

kubernetes-mesh-provisioner is a skill for Claude Code, Codex from Knuckles-Team/container-manager-mcp. It costs 60 tokens per session (1,697 once invoked), scanned C, original, MIT.

A setup procedure for creating a multi-machine Kubernetes cluster using RKE2, with Cilium for networking and NVIDIA support for GPU workloads.

In plain words
What is it for?
Use it to create an RKE2 cluster with one control-plane machine and other machines as agents, configure networking, and enable NVIDIA GPUs for workloads.
Why use it?
It removes the need to install and configure the cluster separately on each machine. It can be run again to correct configuration differences without repeating completed work.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create an RKE2 cluster with one control-plane machine and other machines as agents, configure networking, and enable NVIDIA GPUs for workloads.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/knuckles-team/container-manager-mcp/kubernetes-mesh-provisioner
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Knuckles-Team/container-manager-mcp --skill kubernetes-mesh-provisioner
Clone the repo
git clone --depth 1 https://github.com/Knuckles-Team/container-manager-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for kubernetes-mesh-provisioner

README.md
[![agentmods](https://agentmods.dev/badge/skills/knuckles-team/container-manager-mcp/kubernetes-mesh-provisioner/github.svg)](https://agentmods.dev/skills/knuckles-team/container-manager-mcp/kubernetes-mesh-provisioner)
Your own site
<a href="https://agentmods.dev/skills/knuckles-team/container-manager-mcp/kubernetes-mesh-provisioner"><img src="https://agentmods.dev/badge/skills/knuckles-team/container-manager-mcp/kubernetes-mesh-provisioner/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for kubernetes-mesh-provisioner

Your own site · 80×15
<a href="https://agentmods.dev/skills/knuckles-team/container-manager-mcp/kubernetes-mesh-provisioner"><img src="https://agentmods.dev/badge/skills/knuckles-team/container-manager-mcp/kubernetes-mesh-provisioner.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 60 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,697 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00060 $0.01697
Opus 5 $0.00030 $0.00848
Sonnet 5 $0.00012 $0.00339
Haiku 4.5 $0.00006 $0.00170

Measured 12d ago against content hash 7f377f058d3b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade C, and why

kubernetes-mesh-provisioner scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Reaches for credential fileshighPrivilege escalation

SSH keys, cloud credentials, git-credentials, .npmrc, /etc/shadow: reading these is how a config file becomes a credential leak.

`/root/.kube/config`, and the relevant `K8S*TOOL=True` env vars set
container_manager_mcp/skills/kubernetes-mesh-provisioner/SKILL.md · 119 lines

How it starts

The opening of the file, as written. The whole thing — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Kubernetes Mesh Provisioner Skill

Stateless atomic operation to establish a multi-node RKE2 Kubernetes cluster with an eBPF dataplane — the Kubernetes counterpart of swarm-mesh-provisioner. RKE2 is the CIS-hardened, real-etcd sibling of k3s in the SUSE/Rancher ecosystem, so the same cluster scales from homelab to production without re-platforming.

Prerequisites

  • container-manager-mcp — with CONTAINER_MANAGER_TYPE=kubernetes for node introspection (list_nodes, update_node labels/cordon) once the cluster is up.
  • tunnel-manager-mcp — for remote command execution (RKE2 install + config) on each host over SSH.
  • NIC bonds applied first. Cilium's tunnel data-path hits the same multi-NIC egress instability as Swarm's VXLAN unless each node has a deterministic canonical IP (run nic-bond-provisioner and validate cross-node reachability before this skill).

Every step is idempotent: check the desired state, act only on drift.

Steps

Step 1: Install RKE2 Server (control plane)

On the manager node R820 (10.0.0.13):

  • If systemctl is-active rke2-server is already active, skip to token retrieval.
  • Otherwise install RKE2 server, write /etc/rancher/rke2/config.yaml with cni: cilium, node-label entries (name=R820), and the cluster CIDR; then systemctl enable --now rke2-server.
  • Retrieve the node-join token from /var/lib/rancher/rke2/server/node-token and the kubeconfig from /etc/rancher/rke2/rke2.yaml (rewrite the server URL to https://10.0.0.13:6443).
  • Trust the internal CA: add registry.arpa to /etc/rancher/rke2/registries.yaml so containerd pulls from the private registry.

Step 2: Join RKE2 Agents (workers)

For each worker — R710, R510, RW710, GR1080 (and GB10 if its throttled-vLLM soak passed):

  • If systemctl is-active rke2-agent is active, skip.
  • Otherwise install the RKE2 agent, write /etc/rancher/rke2/config.yaml with server: https://10.0.0.13:9345, the join token, and node labels; then systemctl enable --now rke2-agent.
  • Distribute registries.yaml (registry.arpa + internal CA) to every agent.
  • GB10 is ARM64 (Grace-Blackwell); it joins as a tainted GPU agent (gpu=true:NoSchedule) so only GPU workloads with matching tolerations land there. Only arm64 images may schedule on it.

Read the full file on GitHub · 119 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 119 lines · 60 tokens per session scan C 7f377f058d3b

Subscribe to this mod's changes

kubernetes-mesh-provisioner is a skill published in the GitHub repository Knuckles-Team/container-manager-mcp (5 stars, last pushed 14d ago), licensed MIT. It adds 60 tokens to every session and 1,697 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it C with 1 finding (reaches for credential files). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

nvca-self-managed-install

Install or validate the NVCA Operator chart against a self-managed NVCF control plane from the native monorepo. Use when the control plane comes from deploy/stacks/self-managed and NVCA must be installed with stack-derived image repository settings.

NVIDIA/nvcf · 55 tokens

Cloud Security & Container Hardening

AWS/Azure/GCP security auditing, container and Kubernetes hardening, Infrastructure as Code scanning, and cloud compliance assessment.

Masriyan/Claude-Code-CyberSecurity-Skill · 30 tokens

coolify

Use when self-hosting apps and databases with Coolify on a VPS you own — install, first-admin lockdown, Git-to-deploy (Nixpacks/Dockerfile/compose), managed Postgres/Redis, scheduled S3 backups, domains + auto-SSL. NOT a PaaS someone else runs (that is railway), NOT sizing/hardening the box (that is hetzner), NOT…

ericrisco/rsc-harness · 100 tokens

docker

Use when authoring or auditing a Dockerfile, shrinking a bloated image, hardening a container that runs as root, picking a base image, or wiring a Compose dev loop with hot reload. NOT CI builds or deploy-to-host (that is deployment), NOT k8s autoscaling (that is scaling), NOT app-level injection or secrets-in-code…

ericrisco/rsc-harness · 86 tokens

tao-run-on-kubernetes

Kubernetes execution platform — submits TAO container jobs as k8s Jobs with NVIDIA GPU scheduling; single-pod for one node, Indexed Jobs for multi-node distributed training. Use when running on EKS / GKE / AKS / on-prem clusters with the NVIDIA GPU Operator installed, or when integrating TAO into an existing…

NVIDIA-TAO/tao-skill-bank · 80 tokens

kubernetes-docs

Kubernetes 1.36 — Pods, Deployments, Services, Ingress, ConfigMaps, Secrets, RBAC, CRDs, Operators, kubectl, Helm.

pledgeandgrow/pledge-skills · 40 tokens