⚠️ This document is for the Alpha version of Nubus for Kubernetes. Feedback is welcome. ⚠️

Getting started

4. Getting started#

This section provides the basic information you need to get started with Nubus on a Kubernetes cluster. With this information, you can sign in to the Nubus system and start using it.

To follow along, you first need to complete the steps in Installation.

4.1. Provided users#

The default Nubus installation provides the following users:

default.admin

This user has the role admin with full control over the Nubus system. The administrator can create and manage users, groups, and permissions, and configure the system settings.

default.user

This user has the role user, which can access the installed Nubus components, and edit its profile.

Administrator

This user has role the admin and user, which can manage the Nubus system and access all the available applications.

To get the password for the default administrator, use the following command:

Listing 4.1 Get passwords for default users#
$ export YOUR_NAMESPACE="Set to your Kubernetes namespace"

$ kubectl -n  "$YOUR_NAMESPACE" get secret nubus-nubus-credentials \
   -o json | jq -r '.data.admin_password' | \
   base64 -d

Similarly, you can also get the default user password by running:

$ kubectl -n  "$YOUR_NAMESPACE" get secret nubus-nubus-credentials \
   -o json | jq -r '.data.user_password' | \
   base64 -d