< img height="1" width="1" style="display:none;" alt="" src="https://px.ads.linkedin.com/collect/?pid=3131724&fmt=gif" />

Create Workspaces, Projects, Users and Roles

This quickstart demonstrates how to create workspaces, roles and users which are required for other tutorials. Meanwhile, you will learn how to create projects and DevOps projects within your workspace where your workloads are running. After reading this tutorial, you will become familiar with the multi-tenant management system of KubeSphere.

Prerequisites

KubeSphere needs to be installed in your machine.

Architecture

The multi-tenant system of KubeSphere features three levels of hierarchical structure which are cluster, workspace, and project. A project in KubeSphere is a Kubernetes namespace.

You are required to create a new workspace to work with instead of using the system workspace where system resources are running and most of them are viewable only. In addition, it is strongly recommended different tenants work with corresponding roles in a workspace for security considerations.

You can create multiple workspaces within a KubeSphere cluster. Under each workspace, you can also create multiple projects. Each level has multiple built-in roles. Besides, KubeSphere allows you to create roles with customized authorization as well. The KubeSphere hierarchy is applicable for enterprise users with different teams or groups, and different roles within each team.

Hands-on Lab

Step 1: Create a user

After KubeSphere is installed, you need to add different users with varied roles to the platform so that they can work at different levels on various resources. Initially, you only have one default user, which is admin, granted the role platform-admin. In the first step, you create a sample user ws-manager.

  1. Log in to the web console as admin with the default user and password (admin/P@88w0rd).

    Tip

    For account security, it is highly recommended that you change your password the first time you log in to the console. To change your password, select User Settings in the drop-down list in the upper-right corner. In Password Settings, set a new password. You also can change the console language in User Settings.
  2. Click Platform in the upper-left corner, and then select Access Control. In the left nevigation pane, select Platform Roles. The built-in roles are shown in the following table.

    Built-in RolesDescription
    platform-self-provisionerCreate workspaces and become the admin of the created workspaces.
    platform-regularHas no access to any resources before joining a workspace or cluster.
    platform-adminManage all resources on the platform.

    Note

    Built-in roles are created automatically by KubeSphere and cannot be edited or deleted.
  3. In Users, click Create. In the displayed dialog box, provide all the necessary information (marked with *) and select platform-self-provisioner for Platform Role.

    Click OK after you finish. The new user will display on the Users page.

    Note

    If you have not specified a platform role, the created user cannot perform any operations. In this case, you need to create a workspace and invite the created user to the workspace.
  4. Repeat the previous steps to create other users that will be used in other tutorials.

    Tip

    • To log out, click your username in the upper-right corner and select Log Out.
    • The following usernames are for example only. You can change them as needed.
    UserAssigned Platform RoleUser Permissions
    ws-adminplatform-regularManage all resources in a workspace after being invited to the workspace (This user is used to invite new members to a workspace in this example).
    project-adminplatform-regularCreate and manage projects and DevOps projects, and invite new members to the projects.
    project-regularplatform-regularproject-regular will be invited to a project or DevOps project by project-admin. This user will be used to create workloads, pipelines and other resources in a specified project.
  5. On Users page, view the created users.

    Note

    You can click the icon on the right of the username to enable or disable the user. Additionally, you can batch disable and enable users.

Step 2: Create a workspace

As the basic logic unit for the management of projects, DevOps projects and organization members, workspaces underpin the multi-tenant system of KubeSphere.

  1. In the navigation pane on the left, click Workspaces. You can see there is only one default workspace system-workspace, where system-related components and services run. Deleting this workspace is not allowed.

  2. On the Workspaces page on the right, click Create, set a name for the new workspace (for example, demo-workspace) and set user ws-admin as the workspace manager.

  3. Click Create after you finish.

    Note

    If you have enabled the multi-cluster feature, you need to assign an available cluster (or multiple clusters) to the workspace so that projects can be created on the cluster(s) later.
  4. Log out of the console and log back in as ws-admin. In Workspace Settings, select Workspace Members and click Invite.

  5. Invite both project-admin and project-regular to the workspace. Assign them the role workspace-self-provisioner and workspace-viewer respectively and click OK.

    Note

    The actual role name follows a naming convention: <workspace name>-<role name>. For example, in this workspace named demo-workspace, the actual role name of the role viewer is demo-workspace-viewer.
  6. After you add both project-admin and project-regular to the workspace, click OK. In Workspace Members, you can see three members listed.

    UserAssigned Workspace RoleRole Permissions
    ws-admindemo-workspace-adminManage all resources under the workspace (use this user to invite new members to the workspace).
    project-admindemo-workspace-self-provisionerCreate and manage projects and DevOps projects, and invite new members to join the projects.
    project-regulardemo-workspace-viewerproject-regular will be invited by project-admin to join a project or DevOps project. The user can be used to create workloads, pipelines, etc.

Step 3: Create a project

In this step, you create a project using user project-admin created in the previous step. A project in KubeSphere is the same as a namespace in Kubernetes, which provides virtual isolation for resources. For more information, see Namespaces.

  1. Log in to KubeSphere as project-admin. In Projects, click Create.

  2. Enter the project name (for example, demo-project) and click OK. You can also add an alias and description for the project.

  3. In Projects, click the project created just now to view its detailed information.

  4. On the Overview page of the project, the project quota remains unset by default. You can click Edit Quotas and specify resource requests and limits as needed (for example, 1 core for CPU and 1000Gi for memory).

  5. Invite project-regular to this project and grant this user role operator.

    Info

    The user granted role operator is a project maintainer who can manage resources other than users and roles in the project.
  6. Before creating a Route which is Ingress in Kubernetes, you need to enable a gateway for this project. The gateway is an NGINX Ingress controller running in the project. To set a gateway, go to Gateway Settings in Project Settings and click Enable Gateway. User project-admin is still used in this step.

  7. Select the access method NodePort and click OK.

  8. Under Project Gateway, you can obtain the Gateway Address and the NodePort of http and https in the list.

    Note

    If you want to expose services using the type LoadBalancer, you need to use the LoadBalancer plugin of cloud providers. If your Kubernetes cluster is running in a bare metal environment, it is recommended that you use OpenELB as the LoadBalancer plugin.

Step 4: Create a role

After you finish the above steps, you know that users can be granted different roles at different levels. The roles used in previous steps are all built-in ones created by KubeSphere. In this step, you will learn how to define a customized role to meet the needs in your work.

  1. Log in to the KubeSphere web console as admin again and go to Access Control.

  2. Click Platform Roles on the left navigation pane, and then click Create on the right.

    Note

    The preset roles on the Platform Roles page cannot be edited and deleted.
  3. In the Create Platform Role dialog box, set the name (for example, clusters-admin), alias, and description of the role, and click Edit Permissions.

    Note

    This example demonstrates how to create a role responsible for cluster management.
  4. In the Edit Permissions dialog box, set the role permissions (for example, select Cluster Management) and click OK.

    Note

    • In this example, the role clusters-admin contains the permissions Cluster Management and Cluster Viewing.
    • Some permissions are interdependent. The dependency is specified by the Depends on field under each permission.
    • When a permission is selected, the permission it depends on is automatically selected.
    • To deselect a permission, you need to deselect its subordinate permissions first.
  5. On the Platform Roles page, you can click the name of the created role to view the role details and click icon to edit the role, edit the role permissions, or delete the role.

  6. On the Users page, you can assign the role to a user when you create a user or edit an existing user.

Step 5: Create a DevOps project (Optional)

Note

To create a DevOps project, you must install the KubeSphere DevOps system in advance, which is a pluggable component providing CI/CD pipelines, Binary-to-image, Source-to-image, and more. For more information about how to enable DevOps, see KubeSphere DevOps System.
  1. Log in to the console as project-admin. In DevOps Projects, click Create.

  2. Enter the DevOps project name (for example, demo-devops) and click OK. You can also add an alias and description for the project.

  3. In DevOps Projects, click the project created just now to view its detailed information.

  4. Go to Project Management and select Project Members. Click Invite to invite user project-regular and grant the role operator, who is allowed to create pipelines and credentials.

You are now familiar with the multi-tenant management system of KubeSphere. In other tutorials, user project-regular will also be used to demonstrate how to create applications and resources in a project or DevOps project.

Receive the latest news, articles and updates from KubeSphere


Thanks for the feedback. If you have a specific question about how to use KubeSphere, ask it on Slack. Open an issue in the GitHub repo if you want to report a problem or suggest an improvement.