Skip to content

Commit

Permalink
RHDH Configure diff OCP version v14
Browse files Browse the repository at this point in the history
  • Loading branch information
subhashkhileri committed May 23, 2024
1 parent b486e91 commit 0f46952
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .ibm/pipelines/env_variables.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ HELM_CHART_VALUE_FILE_NAME="values_showcase.yaml"
HELM_IMAGE_NAME=backstage
HELM_REPO_NAME=rhdh-chart
HELM_REPO_URL="https://redhat-developer.github.io/rhdh-chart"
K8S_CLUSTER_TOKEN_ENCODED=$(echo "$K8S_CLUSTER_TOKEN" | base64)
K8S_CLUSTER_TOKEN_ENCODED=$(echo -n $K8S_CLUSTER_TOKEN | base64 | tr -d '\n')

RELEASE_NAME=rhdh
RELEASE_NAME_RBAC=rhdh-rbac
Expand All @@ -26,9 +26,9 @@ GH_USER_PASS=$(cat /tmp/secrets/GH_USER_PASS)
GH_2FA_SECRET=$(cat /tmp/secrets/GH_2FA_SECRET)
GH_RHDH_QE_USER_TOKEN=$(cat /tmp/secrets/GH_RHDH_QE_USER_TOKEN)

K8S_CLUSTER_API_SERVER_URL=$(echo "$K8S_CLUSTER_URL" | base64)
K8S_CLUSTER_API_SERVER_URL=$(echo -n "$K8S_CLUSTER_URL" | base64 | tr -d '\n')
K8S_SERVICE_ACCOUNT_TOKEN=$K8S_CLUSTER_TOKEN_ENCODED
OCM_CLUSTER_URL=$(echo "$K8S_CLUSTER_URL" | base64)
OCM_CLUSTER_URL=$(echo -n "$K8S_CLUSTER_URL" | base64 | tr -d '\n')
OCM_CLUSTER_TOKEN=$K8S_CLUSTER_TOKEN_ENCODED
KEYCLOAK_BASE_URL='https://keycloak-keycloak.rhdh-pr-os-a9805650830b22c3aee243e51d79565d-0000.us-east.containers.appdomain.cloud'
KEYCLOAK_LOGIN_REALM='myrealm'
Expand Down

0 comments on commit 0f46952

Please sign in to comment.