Manage User Permissions
This document describes how to manage user permissions in Chaos Mesh, including creating user account of different roles, binding permissions for users, managing tokens, and enable or disable permission authentication.
Chaos Mesh uses the native RBAC features in Kubernetes to manage user roles and permissions. To create, view and manage Chaos experiments, users need to have the corresponding permissions in the apiGroups
of chaos-mesh.org
to customize resources of Chaos experiments.
note
If Chaos Mesh is installed using Helm, permission authentication is enabled by default. For production environments and other scenarios with high security requirements, it is recommended to keep the permission authentication feature enabled. If you just want to give Chaos Mesh a try and quickly create Chaos experiments without enabling the permission authentication feature, you can refer to Enable or disable permission authentication to learn how to disable the feature.
Create user accounts and bind permissions
You can create user accounts and bind permissions directly through the Chaos Mesh Dashboard interface. When you access the Dashboard, a login window pops up. Click the link Click here to generate:
After you click the link, another window pops up as follows:
The steps to create user accounts and bind permissions are as follows. You need to perform the first three of the following steps in the pop-up window:
Choose the permission scope
If you want to give the account the appropriate permissions for all Chaos experiments in Kubernetes, check the Cluster scoped box. If you specify a namespace in the Namespace dropdown option box, the account only has permissions in that specified namespace.
Choose the user role
Currently, Chaos Mesh provides the following user roles:
- Manager, who has all permissions to create, view, update, and delete Chaos experiments.
- Viewer, who has only the view permission for Chaos experiments.
Generate RBAC configurations
After determining the permission scope and user role of the created account, the Dashboard shows the corresponding RBAC configuration on the pop-up window page. For example, the RBAC configurations for a manager account in the namespace
default
looks like this:kind: ServiceAccount
apiVersion: v1
metadata:
namespace: default
name: account-default-manager-vfmot
---
kind: Role
apiVersion: rbac.authorization.k8s.io/v1
metadata:
namespace: default
name: role-default-manager-vfmot
rules:
- apiGroups: [""]
resources: ["pods", "namespaces"]
verbs: ["get", "watch", "list"]
- apiGroups:
- chaos-mesh.org
resources: [ "*" ]
verbs: ["get", "list", "watch", "create", "delete", "patch", "update"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: bind-default-manager-vfmot
namespace: default
subjects:
- kind: ServiceAccount
name: account-default-manager-vfmot
namespace: default
roleRef:
kind: Role
name: role-default-manager-vfmot
apiGroup: rbac.authorization.k8s.io
Click COPY in the upper right corner of the configuration section in the pop-up window to copy the RBAC configuration and then save the content as
rbac.yaml
locally.Create the user account and bind permissions
Run the following command in your terminal:
kubectl apply -f rbac.yaml
Generate the token
Copy the command shown in the third step on the Token generator page and run the command in your terminal. The following is an example command:
kubectl describe -n default secrets account-default-manager-vfmot
The output is as follows:
Name: account-default-manager-vfmot-token-n4tg8
Namespace: default
Labels: <none>
Annotations: kubernetes.io/service-account.name: account-default-manager-vfmot
kubernetes.io/service-account.uid: b71b3bf4-cd5e-4efb-8bf6-ff9a55fd7e07
Type: kubernetes.io/service-account-token
Data
====
ca.crt: 1111 bytes
namespace: 7 bytes
token: eyJhbG...
Copy the token data in the above output and use it for the next step to log in.
Sign in to Chaos Mesh with the user account you have created
Close the Token generator window and return to the login window. Enter the token that you have got from the previous step in the Token input box and enter a meaningful name for the token in the Name input box. It is recommended to use a name consisting of the permission scope and the user role, such as
default-manager
. Once you finish filling these two input boxes, click Submit to log in:
note
You need to ensure that the local user who executes kubectl has permissions for the cluster so that this user can create user accounts, bind permission for other users, and generate tokens.
If you have not deployed Chaos Mesh Dashboard, you can also generate RBAC configurations by yourself, then use kubectl to create user accounts and bind permissions.
Logout Token
If you need to replace the token with another, click the Settings button shown in the left side bar on the Dashboard web page:
On the most top of the page, you can see the Logout button. Click the button to log out the current token.
Enable or disable permission authentication
If Chaos Mesh is installed using Helm, the permission authentication feature is enabled by default.For production environments and other scenarios with high security requirements, it is recommended to keep the permission authentication feature enabled.If you just want to give Chaos Mesh a try and quickly create Chaos experiments with the permission authentication feature disabled, you can set --set dashboard.securityMode=false
in a Helm command. The command is as follows:
If you want to enable the permission authentication feature again, then reset --set dashboard.securityMode=true
in a Helm command.