Create / Update Rasa X Users
You can either create users from the UI, or on the command line from within the Rasa X pod. The instructions below are for creating or updating users on the command line from within the Rasa X pod.
- Get the name of the Rasa X pod:
- Kubernetes
- OpenShift
rasa-rasa-x-6dcf57bb45-jnt4f
is in our case the name of the Rasa X container.
- Connect to the shell of this pod:
- Kubernetes
- OpenShift
Rasa Enterprise only: Run the following command to create a new user. Please see Role-Based Access Control for available default roles.
python scripts/manage_users.py create <username> <password> <role>To update the password of an existing user (by default, the username for the single Rasa X user is
admin
and its role isadmin
) run the following command:python scripts/manage_users.py create --update <username> <password> <role>
note
If you created a deployment via rasactl
, the namespace name is the same as a deployment name.
You can use the rasactl list
command to display available deployments.