Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .ibm/pipelines/openshift-ci-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,16 @@ main() {
echo "Log file: ${LOGFILE}"
echo "JOB_NAME : $JOB_NAME"

CHART_VERSION=$(get_chart_version "$CHART_MAJOR_VERSION")
export CHART_VERSION
#CHART_VERSION=$(get_chart_version "$CHART_MAJOR_VERSION")
#export CHART_VERSION
detect_ocp
detect_container_platform

export CHART_VERSION="1.8-157-CI"
export HELM_CHART_URL="oci://quay.io/rhdh/chart"
export QUAY_REPO="rhdh/rhdh-hub-rhel9"
export TAG_NAME="1.8-157"

case "$JOB_NAME" in
*aks*helm*nightly*)
echo "Sourcing aks-helm.sh"
Expand Down
2 changes: 1 addition & 1 deletion .ibm/pipelines/utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -717,7 +717,7 @@ install_orchestrator_infra_chart() {
echo "Deploying orchestrator-infra chart"
cd "${DIR}"
helm upgrade -i orch-infra -n "${ORCH_INFRA_NS}" \
"oci://quay.io/rhdh/orchestrator-infra-chart" --version "${CHART_VERSION}" \
"oci://quay.io/rhdh/orchestrator-infra-chart" --version "1.8-157-CI" \
--wait --timeout=5m \
--set serverlessLogicOperator.subscription.spec.installPlanApproval=Automatic \
--set serverlessOperator.subscription.spec.installPlanApproval=Automatic
Expand Down
4 changes: 2 additions & 2 deletions .ibm/pipelines/value_files/values_showcase-rbac.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ upstream:
pullPolicy: Always
# using test image from https://quay.io/repository/rhdh-community/rhdh
registry: quay.io
repository: rhdh-community/rhdh
tag: next
repository: rhdh/rhdh-hub-rhel9
tag: 1.8-157
startupProbe:
# This gives enough time upon container startup before the liveness and readiness probes are triggered.
# Giving (120s = initialDelaySeconds + failureThreshold * periodSeconds) to account for the worst case scenario.
Expand Down
4 changes: 2 additions & 2 deletions .ibm/pipelines/value_files/values_showcase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -232,8 +232,8 @@ upstream:
image:
pullPolicy: Always
registry: quay.io
repository: rhdh-community/rhdh
tag: next
repository: rhdh/rhdh-hub-rhel9
tag: 1.8-157
extraEnvVars:
- name: BACKEND_SECRET
valueFrom:
Expand Down
5 changes: 1 addition & 4 deletions e2e-tests/playwright/e2e/default-global-header.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,7 @@ test.describe("Default Global Header", () => {
await uiHelper.goToMyProfilePage();
await uiHelper.verifyTextInSelector("header > div > p", "user");
await uiHelper.verifyHeading(process.env.GH_USER2_ID);
await uiHelper.verifyTextInSelector(
"a[data-testid='header-tab-0'] > span",
"Overview",
);
await expect(page.getByRole("tab", { name: "Overview" })).toBeVisible();

await uiHelper.openProfileDropdown();
await page.locator(`p`).getByText("Sign out").first().click();
Expand Down
Loading