このコンテンツは選択した言語では利用できません。
Chapter 8. RHADS credentials reference
After deploying Red Hat Advanced Developer Suite (RHADS), retrieve the credentials from secrets to access the components. Use the oc CLI in the relevant namespace. Replace <cluster_name> with your OpenShift Container Platform cluster name and <base_domain> with your base domain.
Secrets contain sensitive data, such as admin passwords or client secrets. Retrieve them securely, rotate immediately in production, and follow your organization’s access policies. Handle secrets securely. Avoid echoing to logs or sharing in plain text. Use tools like oc with --dry-run for testing.
Use the following tables for quick access to namespaces, logins, secrets, passwords, and endpoints.
| Property | Details |
|---|---|
| Namespace |
|
| Login |
|
| Secret |
|
| Password |
oc -n tssc-acs get secret central-htpasswd \
-o go-template='{{printf "%s\n"
(index .data "password" | base64decode)}}'
|
| Endpoints |
|
| Property | Details |
|---|---|
| Namespace |
|
| Login |
|
| Admin Secret |
|
| Admin Password |
oc -n tssc-gitops get secret tssc-gitops-cluster \
-o go-template='{{printf "%s\n"
(index .data "admin.password" | base64decode)}}'
|
| Integration Secret |
|
| Integration Password |
oc -n tssc-gitops get secret tssc-argocd-integration \
-o go-template='{{printf "%s\n"
(index .data "admin.password" | base64decode)}}'
|
| Endpoints |
|
| Property | Details |
|---|---|
| Namespace |
|
| Login |
|
| Secret |
|
| Password |
oc -n tssc-keycloak get secret keycloak-initial-admin \
-o go-template='{{printf "%s\n"
(index .data "password" | base64decode)}}'
|
| Endpoints |
|
| Property | Details |
|---|---|
| Namespace |
|
| Login |
(Via Keycloak realm: |
| Secret |
|
| Password |
oc -n tssc-tas get secret trusted-artifact-signer-user \
-o go-template='{{printf "%s\n"
(index .data "password" | base64decode)}}'
|
| Endpoints |
|
| Property | Details |
|---|---|
| Namespace |
|
| Login |
|
| Secret |
|
| Password |
oc -n tssc-tpa get secret tpa-realm-chicken-admin \
-o go-template='{{printf "%s\n"
(index .data "password" | base64decode)}}'
|
| Endpoints |
|
| Property | Details |
|---|---|
| Namespace |
|
| Login |
|
| Secret |
|
| Password |
oc -n tssc-dh get secret <rhdh-admin-secret> \
-o go-template='{{printf "%s\n"
(index .data "admin-password" | base64decode)}}'
|
| Endpoints |
|
-
Run password commands with
ocin the listed namespace. -
Run
oc get routes -n <namespace>for available endpoints in each namespace. - You can also get secrets from the OpenShift Container Platform console under Workloads > Secrets.
- You can also get routes from the OpenShift Container Platform console under Workloads > Topology.
Revised on 2026-02-04 23:24:14 UTC