Skip to main content
Version: 1.3

Accessing ResiliencyIO

Login with default-user

ResiliencyIO uses a Kubernetes Secret named <instance-name>-users to store static user credentials. In this guide, we’ll use resiliency-io-users as an example.

1. Get the user credentials from the management cluster

Run the following command:

kubectl get secret resiliency-io-users -n resiliency-system -o jsonpath="{.data.users\.yaml}" | base64 --decode

This command will display the user credentials:

- email: <email>
password: <password>
username: <username>
userID: <user-id>

2. Login in the web console

Go to web console, then log in with:

  • Username: the value of the email field (e.g. admin@example.com)
  • Password: the value of the password field

⚠️ Pay attention: Do not use the username field. You must use the email as your login username.