Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

Latest commit

 

History

History
32 lines (25 loc) · 1.04 KB

File metadata and controls

32 lines (25 loc) · 1.04 KB

Accessing the Keycloak admin console

When you install {project-name}, a Keycloak admin user is created. You must obtain the admin user name and password to log in to the Keycloak admin console. The credentials are stored in the tackle-keycloak secret.

Prerequisites
  • You must have cluster-admin privileges.

Procedure
  1. Run the following command to obtain the admin credentials:

    $ kubectl get secret tackle-keycloak -o go-template='{{range $k,$v := .data}}{{printf "%s: " $k}}{{if not $v}}{{$v}}{{else}}{{$v | base64decode}}{{end}}{{"\n"}}{{end}}'
    Example output
    ADMIN_PASSWORD: <password>
    ADMIN_USERNAME: admin
  2. Launch a browser and navigate to https://<www.example.com>/auth, specifying the {project-name} cluster URL.

  3. Log in to the Keycloak admin console with the admin user name and password.