Skip to content
Cloud & Infrastructure
Skill

/kubesphere-multi-tenant-management

KubeSphere multi-tenant management Skill. Use when user requests to create users, workspaces, projects, or assign roles/permissions. Supports user lifecycle management, workspace configuration, project creation, role binding. Do not perform any delete operations, do not create

From plugin
kubesphere
17k32 skills
Install
$ npx -y skills add kubesphere/kubesphere --skill kubesphere-multi-tenant-management --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/kubesphere-multi-tenant-management

Context preview

The summary Claude sees to decide when to auto-load this skill.

KubeSphere multi-tenant management Skill. Use when user requests to create users, workspaces, projects, or assign roles/permissions. Supports user lifecycle management, workspace configuration, project creation, role binding. Do not perform any delete operations, do not create

SKILL.md

kubesphere-multi-tenant-management.SKILL.md
name: kubesphere-multi-tenant-management
description: KubeSphere multi-tenant management Skill. Use when user requests to create users, workspaces, projects, or assign roles/permissions. Supports user lifecycle management, workspace configuration, project creation, role binding. Do not perform any delete operations, do not create custom roles.

KubeSphere Multi-Tenant Management

Security Guidelines

1. **Never use kubectl edit/delete** - Do NOT use `kubectl edit`, `kubectl delete`, or similar commands to modify or delete workspaces, projects, users, roles, or role bindings. These operations are sensitive and should be performed via KubeSphere Console with proper approval workflow.

2. **Never perform delete operations via API** - Do NOT delete users, workspaces, projects, roles, or role bindings via API. These operations must be performed manually via KubeSphere Console with proper approval workflow. Only use this skill for creating and querying resources.

3. **Never create custom roles** - Do NOT create custom roles (Role, WorkspaceRole, GlobalRole). Only use built-in roles provided by KubeSphere. If custom permissions are needed, instruct the user to configure them via KubeSphere Console.

4. **Default to least privilege** - When creating users or assigning permissions, always use the minimum required access level:

  • New user creation: default to `platform-regular` (not platform-admin)
  • Inviting user to workspace: default to `<workspace-name>-regular` (not admin)
  • Inviting user to project: default to `viewer` (not admin)
  • Only escalate permissions when explicitly requested

Core Concepts

Workspace

The top-level organizational unit in KubeSphere, representing a team, department, or business unit. A workspace can contain multiple projects and serves as the basic boundary for resource grouping and access control. **Workspaces can span multiple clusters**, enabling centralized management of resources distributed across different clusters.

Project

KubeSphere's enhanced Kubernetes namespace, representing a specific application, environment, or workload within a workspace. Each project maps to a separate namespace.

User & Role

  • **User**: KubeSphere account entity, can be platform admin, workspace member, or project member
  • **Role**: Permission set defined in KubeSphere's three-tier RBAC:

**Project Roles** (`roles.iam.kubesphere.io`):

  • `admin`: Full access to all resources
  • `operator`: Create/update/delete resources, cannot manage roles
  • `viewer`: Read-only access

**Workspace Roles** (WorkspaceRole, `workspaceroles.iam.kubesphere.io`):

  • `<workspace-name>-admin`: Full access to workspace and all projects
  • `<workspace-name>-regular`: Limited workspace access
  • `<workspace-name>-self-provisioner`: Create projects in workspace
  • `<workspace-name>-viewer`: Read-only access to workspace

**Platform Roles** (GlobalRole, `globalroles.iam.kubesphere.io`):

  • `platform-admin`: Full access to all resources
  • `platform-regular`: Limited platform access
  • `platform-self-provisioner`: Can create workspaces

**Role Binding** (KubeSphere API endpoints, binds roles to Users):

  • Project-level: `/namespacemembers` API, binds `roles.iam.kubesphere.io` to User
  • Workspace-level: `/workspacemembers` API, binds `workspaceroles.iam.kubesphere.io` to User
  • Platform-level: `/users/<username>` API, binds `globalroles.iam.kubesphere.io` to User via annotation

Step-by-Step Guide

Prerequisites

Set up authentication using the provided CLI tool. First, navigate to the scripts directory:

# Navigate to the skill's scripts directory
# Example path (replace with your actual kubesphere-skills location):
cd ~/kubesphere-skills/core/kubesphere-core/scripts

# Install required Python package
pip install requests


# Set host endpoint (optional, defaults to http://ks-apiserver.kubesphere-system)
export KUBESPHERE_HOST="http://<kubesphere-host>"

# Login to get token (token will be cached)
python ks_api.py --login --username admin --password <your-password>

# Token is cached in ~/.kubesphere_token and auto-refreshed

# Optional: Clear cached token
python ks_api.py --clear-cache

1. Create Workspace

**Required parameters:**

  • `workspace-name`: Name for the workspace (maps to `metadata.name`)
  • `manager`: Workspace manager (maps to `spec.template.spec.manager`, default to current login user)
  • `creator`: Creator name (maps to `metadata.annotations["kubesphere.io/creator"]`)
  • `clusters`: List of cluster names to host this workspace (maps to `spec.placement.clusters`)
# Create workspace via Python CLI
python ks_api.py POST /kapis/tenant.kubesphere.io/v1beta1/workspacetemplates '{
  "apiVersion": "iam.kubesphere.io/v1beta1",
  "kind": "WorkspaceTemplate",
  "metadata": {
    "name": "<workspace-name>",
    "annotations": {
      "kubesphere.io/creator": "<creator>"
    }
  },
  "spec": {
    "template": {
      "spec": {
        "manager": "<manager>"
      },
      "metadata": {
        "annotations": {
          "kubesphere.io/creator": "<creator>"
        }
      }
    },
    "placement": {
      "clusters": [
        {"name": "<cluster-name>"}
      ]
    }
  }
}'

**Note:** Before creating a workspace, always ask the user for:

  • Workspace name (required)
  • Manager (required, default to current login user)
  • Clusters (required) - which cluster(s) to assign the workspace to

2. Create Project within Workspace

**Required parameters:**

  • `project-name`: Name for the project (maps to `metadata.name`)
  • `workspace-name`: Name of the workspace to create the project in (maps to `metadata.labels["kubesphere.io/workspace"]`)
  • `cluster-name`: Cluster name to create the project in (maps to URI path and `cluster` field)
  • `creator`: Creator name (maps to `metadata.annotations["kubesphere.io/creator"]`)
# Create project within workspace via Python CLI
python ks_api.py POST /clusters/<cluster-name>/kapis/tenant.kubesphere.io/v1bet
Read more
Ships withkubesphere

The container platform tailored for Kubernetes multi-cloud, datacenter, and edge management ⎈ 🖥 ☁️

Get the whole plugin

Other skills on kubesphere.