Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UPSTREAM: <carry>: Update ArtifactView enum to allow pipelines artifacts api to have optional content disposition #118

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

VaniHaripriya
Copy link

@VaniHaripriya VaniHaripriya commented Nov 15, 2024

Description of your changes:
This PR resolves # RHOAIENG-12014

  • This PR improves the Pipelines Artifacts API by adding flexible URL options for artifact retrieval.
  • It introduces a new RENDER field to the enum, which, when selected, provides a signed URL without the content disposition header.
  • Updated DOWNLOAD view to download the artifact instead of showing preview and then download.
  • This allows for the immediate download of artifacts in some cases, while also enabling preview or rendering in other scenarios.

Testing Instructions:

  • Deploy DSPA using this API Server image - quay.io/opendatahub/ds-pipelines-api-server:pr-118
  • Create a pipeline run and use the below api to verify the changes in artifact view options:
  1.  For DOWNLOAD view:
    
       url - /apis/v2beta1/artifacts/1?view=DOWNLOAD
       Method : GET
    
    Sample Response:
    {
    "artifact_id": "1",
    "storage_provider": "s3",
    "storage_path": "iris-training-pipeline/70e74c8c-fbe7-41a8-a20e-0dfb84db5516/create-dataset/iris_dataset",
    "uri": "s3://mlpipeline/iris-training-pipeline/70e74c8c-fbe7-41a8-a20e-0dfb84db5516/create-dataset/iris_dataset",
    "download_url": "https://minio-sample-dspa.apps.vmudadla-1.dev.datahub.redhat.com/mlpipeline/iris-training-pipeline/70e74c8c-fbe7-41a8-a20e-0dfb84db5516/create-dataset/iris_dataset?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=MgVISopjwQeEKLWa%2F20241125%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20241125T171009Z&X-Amz-Expires=60&X-Amz-SignedHeaders=host&response-content-disposition=attachment%3B%20filename%3D%22iris-training-pipeline%2F70e74c8c-fbe7-41a8-a20e-0dfb84db5516%2Fcreate-dataset%2Firis_dataset%22&X-Amz-Signature=88261cc9cb8fd40a5f29b67ac7e4bb2068ae636cbaa2840282d7e32fde86611f",
    "namespace": "dspa",
    "artifact_type": "system.Dataset",
    "artifact_size": "5098",
    "created_at": "2024-11-22T22:26:42.147Z",
    "last_updated_at": "2024-11-22T22:26:42.147Z"
    }
    
    Open the download_url in a browser, and the artifact should automatically start downloading.
  2.  For RENDER view:
    
       url - /apis/v2beta1/artifacts/1?view=RENDER
       Method : GET
    
    Sample Response:
    {
    "artifact_id": "1",
    "storage_provider": "s3",
    "storage_path": "iris-training-pipeline/70e74c8c-fbe7-41a8-a20e-0dfb84db5516/create-dataset/iris_dataset",
    "uri": "s3://mlpipeline/iris-training-pipeline/70e74c8c-fbe7-41a8-a20e-0dfb84db5516/create-dataset/iris_dataset",
    "namespace": "dspa",
    "artifact_type": "system.Dataset",
    "artifact_size": "5098",
    "created_at": "2024-11-22T22:26:42.147Z",
    "last_updated_at": "2024-11-22T22:26:42.147Z",
    "render_url": "https://minio-sample-dspa.apps.vmudadla-1.dev.datahub.redhat.com/mlpipeline/iris-training-pipeline/70e74c8c-fbe7-41a8-a20e-0dfb84db5516/create-dataset/iris_dataset?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=MgVISopjwQeEKLWa%2F20241125%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20241125T195517Z&X-Amz-Expires=60&X-Amz-SignedHeaders=host&response-content-disposition=inline&X-Amz-Signature=e543aeab6b98b8e82f79b45d5a24ab154949430da8c21db6c8024e5c1eef7d18"
    

}
```
Open the render_url in a browser to view a preview of the artifact.

Checklist:

Copy link

openshift-ci bot commented Nov 15, 2024

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign gregsheremeta for approval. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 3 commits between e27b68731776c35efe5e363295c3cc4a782cec4f...6e694366abc04d1d8dc8d8f9bdda52a4ee03d626

UPSTREAM commit 6e69436 has invalid summary Update signedurl.

UPSTREAM commits are validated against the following regular expression:
  ^UPSTREAM: (revert: )?(([\w.-]+/[\w-.-]+)?: )?(\d+:|<carry>:|<drop>:)

UPSTREAM commit summaries should look like:

  UPSTREAM: <PR number|carry|drop>: description

UPSTREAM commits which revert previous UPSTREAM commits should look like:

  UPSTREAM: revert: <normal upstream format>

Examples of valid summaries:

  UPSTREAM: 12345: A kube fix
  UPSTREAM: <carry>: A carried kube change
  UPSTREAM: <drop>: A dropped kube change
  UPSTREAM: revert: 12345: A kube revert



UPSTREAM commit 156c4dd has invalid summary Updated swagger.

UPSTREAM commits are validated against the following regular expression:
  ^UPSTREAM: (revert: )?(([\w.-]+/[\w-.-]+)?: )?(\d+:|<carry>:|<drop>:)

UPSTREAM commit summaries should look like:

  UPSTREAM: <PR number|carry|drop>: description

UPSTREAM commits which revert previous UPSTREAM commits should look like:

  UPSTREAM: revert: <normal upstream format>

Examples of valid summaries:

  UPSTREAM: 12345: A kube fix
  UPSTREAM: <carry>: A carried kube change
  UPSTREAM: <drop>: A dropped kube change
  UPSTREAM: revert: 12345: A kube revert



UPSTREAM commit 17bcd01 has invalid summary Update ArifactView enum to allow pipelines artifacts api to have optional content disposition.

UPSTREAM commits are validated against the following regular expression:
  ^UPSTREAM: (revert: )?(([\w.-]+/[\w-.-]+)?: )?(\d+:|<carry>:|<drop>:)

UPSTREAM commit summaries should look like:

  UPSTREAM: <PR number|carry|drop>: description

UPSTREAM commits which revert previous UPSTREAM commits should look like:

  UPSTREAM: revert: <normal upstream format>

Examples of valid summaries:

  UPSTREAM: 12345: A kube fix
  UPSTREAM: <carry>: A carried kube change
  UPSTREAM: <drop>: A dropped kube change
  UPSTREAM: revert: 12345: A kube revert


@VaniHaripriya VaniHaripriya force-pushed the RHOAIENG-12014 branch 2 times, most recently from f80f861 to 74d1b1f Compare November 15, 2024 01:35
@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
ERROR: couldn't find commits from e27b68731776c35efe5e363295c3cc4a782cec4f..f80f8616d30bb5c8a8b4c57ad40b271e6cc68474: error executing git log: fatal: Invalid revision range e27b68731776c35efe5e363295c3cc4a782cec4f..f80f8616d30bb5c8a8b4c57ad40b271e6cc68474
: exit status 128

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 1 commits between e27b68731776c35efe5e363295c3cc4a782cec4f...74d1b1fa1c21319f01228d4d1d274bf02c512bf6

UPSTREAM commit 74d1b1f has invalid summary Update ArifactView enum to allow pipelines artifacts api to have optional content disposition.

UPSTREAM commits are validated against the following regular expression:
  ^UPSTREAM: (revert: )?(([\w.-]+/[\w-.-]+)?: )?(\d+:|<carry>:|<drop>:)

UPSTREAM commit summaries should look like:

  UPSTREAM: <PR number|carry|drop>: description

UPSTREAM commits which revert previous UPSTREAM commits should look like:

  UPSTREAM: revert: <normal upstream format>

Examples of valid summaries:

  UPSTREAM: 12345: A kube fix
  UPSTREAM: <carry>: A carried kube change
  UPSTREAM: <drop>: A dropped kube change
  UPSTREAM: revert: 12345: A kube revert


@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
ERROR: couldn't find commits from e27b68731776c35efe5e363295c3cc4a782cec4f..c4e69f8162abb6610ac403ddae389c39fb16c91c: error executing git log: fatal: Invalid revision range e27b68731776c35efe5e363295c3cc4a782cec4f..c4e69f8162abb6610ac403ddae389c39fb16c91c
: exit status 128

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 1 commits between e27b68731776c35efe5e363295c3cc4a782cec4f...35108eeaac314fbb9fe9d638a0b73c32bd783168

UPSTREAM commit 35108ee has invalid summary Update ArifactView enum to allow pipelines artifacts api to have optional content disposition.

UPSTREAM commits are validated against the following regular expression:
  ^UPSTREAM: (revert: )?(([\w.-]+/[\w-.-]+)?: )?(\d+:|<carry>:|<drop>:)

UPSTREAM commit summaries should look like:

  UPSTREAM: <PR number|carry|drop>: description

UPSTREAM commits which revert previous UPSTREAM commits should look like:

  UPSTREAM: revert: <normal upstream format>

Examples of valid summaries:

  UPSTREAM: 12345: A kube fix
  UPSTREAM: <carry>: A carried kube change
  UPSTREAM: <drop>: A dropped kube change
  UPSTREAM: revert: 12345: A kube revert


@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 1 commits between e27b68731776c35efe5e363295c3cc4a782cec4f...a2234bab86edf454157be9792259893332f652c6

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
ERROR: couldn't find commits from 7c3b0204f09934458ccd7ce65deba74fb0146286..e2464055788506a67239dccf68007fd136d3db94: error executing git log: fatal: Invalid revision range 7c3b0204f09934458ccd7ce65deba74fb0146286..e2464055788506a67239dccf68007fd136d3db94
: exit status 128

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 0 commits between 7c3b0204f09934458ccd7ce65deba74fb0146286...560543daaba6fb73564d7279b900297e2d0a1021

@dsp-developers
Copy link

Change to PR detected. A new PR build was completed.
A set of new images have been built to help with testing out this PR:
API Server: quay.io/opendatahub/ds-pipelines-api-server:pr-118
DSP DRIVER: quay.io/opendatahub/ds-pipelines-driver:pr-118
DSP LAUNCHER: quay.io/opendatahub/ds-pipelines-launcher:pr-118
Persistence Agent: quay.io/opendatahub/ds-pipelines-persistenceagent:pr-118
Scheduled Workflow Manager: quay.io/opendatahub/ds-pipelines-scheduledworkflow:pr-118
MLMD Server: quay.io/opendatahub/mlmd-grpc-server:latest
MLMD Envoy Proxy: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8:2.3.9-2
UI: quay.io/opendatahub/ds-pipelines-frontend:pr-118

1 similar comment
@dsp-developers
Copy link

Change to PR detected. A new PR build was completed.
A set of new images have been built to help with testing out this PR:
API Server: quay.io/opendatahub/ds-pipelines-api-server:pr-118
DSP DRIVER: quay.io/opendatahub/ds-pipelines-driver:pr-118
DSP LAUNCHER: quay.io/opendatahub/ds-pipelines-launcher:pr-118
Persistence Agent: quay.io/opendatahub/ds-pipelines-persistenceagent:pr-118
Scheduled Workflow Manager: quay.io/opendatahub/ds-pipelines-scheduledworkflow:pr-118
MLMD Server: quay.io/opendatahub/mlmd-grpc-server:latest
MLMD Envoy Proxy: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8:2.3.9-2
UI: quay.io/opendatahub/ds-pipelines-frontend:pr-118

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 0 commits between 7c3b0204f09934458ccd7ce65deba74fb0146286...b2c1022b258a74014b0ddd7090b523b7a857dd46

@dsp-developers
Copy link

Change to PR detected. A new PR build was completed.
A set of new images have been built to help with testing out this PR:
API Server: quay.io/opendatahub/ds-pipelines-api-server:pr-118
DSP DRIVER: quay.io/opendatahub/ds-pipelines-driver:pr-118
DSP LAUNCHER: quay.io/opendatahub/ds-pipelines-launcher:pr-118
Persistence Agent: quay.io/opendatahub/ds-pipelines-persistenceagent:pr-118
Scheduled Workflow Manager: quay.io/opendatahub/ds-pipelines-scheduledworkflow:pr-118
MLMD Server: quay.io/opendatahub/mlmd-grpc-server:latest
MLMD Envoy Proxy: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8:2.3.9-2
UI: quay.io/opendatahub/ds-pipelines-frontend:pr-118

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 0 commits between 7c3b0204f09934458ccd7ce65deba74fb0146286...97287e36caa59dff93ce33e9d3db95e10bb840eb

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 0 commits between 7c3b0204f09934458ccd7ce65deba74fb0146286...f3877f42021bca317f6d808be8e5f66c398b7918

@dsp-developers
Copy link

Change to PR detected. A new PR build was completed.
A set of new images have been built to help with testing out this PR:
API Server: quay.io/opendatahub/ds-pipelines-api-server:pr-118
DSP DRIVER: quay.io/opendatahub/ds-pipelines-driver:pr-118
DSP LAUNCHER: quay.io/opendatahub/ds-pipelines-launcher:pr-118
Persistence Agent: quay.io/opendatahub/ds-pipelines-persistenceagent:pr-118
Scheduled Workflow Manager: quay.io/opendatahub/ds-pipelines-scheduledworkflow:pr-118
MLMD Server: quay.io/opendatahub/mlmd-grpc-server:latest
MLMD Envoy Proxy: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8:2.3.9-2
UI: quay.io/opendatahub/ds-pipelines-frontend:pr-118

1 similar comment
@dsp-developers
Copy link

Change to PR detected. A new PR build was completed.
A set of new images have been built to help with testing out this PR:
API Server: quay.io/opendatahub/ds-pipelines-api-server:pr-118
DSP DRIVER: quay.io/opendatahub/ds-pipelines-driver:pr-118
DSP LAUNCHER: quay.io/opendatahub/ds-pipelines-launcher:pr-118
Persistence Agent: quay.io/opendatahub/ds-pipelines-persistenceagent:pr-118
Scheduled Workflow Manager: quay.io/opendatahub/ds-pipelines-scheduledworkflow:pr-118
MLMD Server: quay.io/opendatahub/mlmd-grpc-server:latest
MLMD Envoy Proxy: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8:2.3.9-2
UI: quay.io/opendatahub/ds-pipelines-frontend:pr-118

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 0 commits between 7c3b0204f09934458ccd7ce65deba74fb0146286...37e68e1aebe6d498d7ce7243a69606d9f68c6457

@dsp-developers
Copy link

Change to PR detected. A new PR build was completed.
A set of new images have been built to help with testing out this PR:
API Server: quay.io/opendatahub/ds-pipelines-api-server:pr-118
DSP DRIVER: quay.io/opendatahub/ds-pipelines-driver:pr-118
DSP LAUNCHER: quay.io/opendatahub/ds-pipelines-launcher:pr-118
Persistence Agent: quay.io/opendatahub/ds-pipelines-persistenceagent:pr-118
Scheduled Workflow Manager: quay.io/opendatahub/ds-pipelines-scheduledworkflow:pr-118
MLMD Server: quay.io/opendatahub/mlmd-grpc-server:latest
MLMD Envoy Proxy: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8:2.3.9-2
UI: quay.io/opendatahub/ds-pipelines-frontend:pr-118

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 0 commits between 7c3b0204f09934458ccd7ce65deba74fb0146286...1385dcea9c4b63bd3c10a7623f904a3098e17c54

@dsp-developers
Copy link

Change to PR detected. A new PR build was completed.
A set of new images have been built to help with testing out this PR:
API Server: quay.io/opendatahub/ds-pipelines-api-server:pr-118
DSP DRIVER: quay.io/opendatahub/ds-pipelines-driver:pr-118
DSP LAUNCHER: quay.io/opendatahub/ds-pipelines-launcher:pr-118
Persistence Agent: quay.io/opendatahub/ds-pipelines-persistenceagent:pr-118
Scheduled Workflow Manager: quay.io/opendatahub/ds-pipelines-scheduledworkflow:pr-118
MLMD Server: quay.io/opendatahub/mlmd-grpc-server:latest
MLMD Envoy Proxy: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8:2.3.9-2
UI: quay.io/opendatahub/ds-pipelines-frontend:pr-118

@rimolive rimolive changed the title UPSTREAM: <carry>: Update ArifactView enum to allow pipelines artifacts api to have optional content disposition UPSTREAM: <carry>: Update ArtifactView enum to allow pipelines artifacts api to have optional content disposition Nov 20, 2024
@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 0 commits between 7c3b0204f09934458ccd7ce65deba74fb0146286...0570a6ab6bb21dc7f016b72c7ba514b5c25eebfc

@dsp-developers
Copy link

Change to PR detected. A new PR build was completed.
A set of new images have been built to help with testing out this PR:
API Server: quay.io/opendatahub/ds-pipelines-api-server:pr-118
DSP DRIVER: quay.io/opendatahub/ds-pipelines-driver:pr-118
DSP LAUNCHER: quay.io/opendatahub/ds-pipelines-launcher:pr-118
Persistence Agent: quay.io/opendatahub/ds-pipelines-persistenceagent:pr-118
Scheduled Workflow Manager: quay.io/opendatahub/ds-pipelines-scheduledworkflow:pr-118
MLMD Server: quay.io/opendatahub/mlmd-grpc-server:latest
MLMD Envoy Proxy: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8:2.3.9-2
UI: quay.io/opendatahub/ds-pipelines-frontend:pr-118

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 0 commits between 7c3b0204f09934458ccd7ce65deba74fb0146286...03a51c2b958f4d06b79f8b8c19d28085e0a4a086

@dsp-developers
Copy link

Change to PR detected. A new PR build was completed.
A set of new images have been built to help with testing out this PR:
API Server: quay.io/opendatahub/ds-pipelines-api-server:pr-118
DSP DRIVER: quay.io/opendatahub/ds-pipelines-driver:pr-118
DSP LAUNCHER: quay.io/opendatahub/ds-pipelines-launcher:pr-118
Persistence Agent: quay.io/opendatahub/ds-pipelines-persistenceagent:pr-118
Scheduled Workflow Manager: quay.io/opendatahub/ds-pipelines-scheduledworkflow:pr-118
MLMD Server: quay.io/opendatahub/mlmd-grpc-server:latest
MLMD Envoy Proxy: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8:2.3.9-2
UI: quay.io/opendatahub/ds-pipelines-frontend:pr-118

@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 0 commits between 7c3b0204f09934458ccd7ce65deba74fb0146286...2e5fc933a13e1693ddc895ec3b85ad82da00c02a

@dsp-developers
Copy link

Change to PR detected. A new PR build was completed.
A set of new images have been built to help with testing out this PR:
API Server: quay.io/opendatahub/ds-pipelines-api-server:pr-118
DSP DRIVER: quay.io/opendatahub/ds-pipelines-driver:pr-118
DSP LAUNCHER: quay.io/opendatahub/ds-pipelines-launcher:pr-118
Persistence Agent: quay.io/opendatahub/ds-pipelines-persistenceagent:pr-118
Scheduled Workflow Manager: quay.io/opendatahub/ds-pipelines-scheduledworkflow:pr-118
MLMD Server: quay.io/opendatahub/mlmd-grpc-server:latest
MLMD Envoy Proxy: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8:2.3.9-2
UI: quay.io/opendatahub/ds-pipelines-frontend:pr-118

…s api to have optional content disposition

Signed-off-by: VaniHaripriya <[email protected]>
@dsp-developers
Copy link

Commit Checker results:

**NOTE**: These are the results of the commit checker scans. 
If these are not commits from upstream kfp, then please ensure
you adhere to the commit checker formatting
commitchecker verson unknown
Validating 0 commits between 7c3b0204f09934458ccd7ce65deba74fb0146286...41d686438f32792521c59da19f49477f587ead84

@dsp-developers
Copy link

Change to PR detected. A new PR build was completed.
A set of new images have been built to help with testing out this PR:
API Server: quay.io/opendatahub/ds-pipelines-api-server:pr-118
DSP DRIVER: quay.io/opendatahub/ds-pipelines-driver:pr-118
DSP LAUNCHER: quay.io/opendatahub/ds-pipelines-launcher:pr-118
Persistence Agent: quay.io/opendatahub/ds-pipelines-persistenceagent:pr-118
Scheduled Workflow Manager: quay.io/opendatahub/ds-pipelines-scheduledworkflow:pr-118
MLMD Server: quay.io/opendatahub/mlmd-grpc-server:latest
MLMD Envoy Proxy: registry.redhat.io/openshift-service-mesh/proxyv2-rhel8:2.3.9-2
UI: quay.io/opendatahub/ds-pipelines-frontend:pr-118

@hbelmiro
Copy link

hbelmiro commented Dec 3, 2024

@VaniHaripriya both URLs took me to the very same screen. Is that the expected result?

Screenshot 2024-12-03 at 15 59 14

Copy link

@hbelmiro hbelmiro left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/lgtm

as long as #118 (comment) is the expected result.

@hbelmiro
Copy link

hbelmiro commented Dec 3, 2024

/hold for #118 (comment)

@hbelmiro
Copy link

hbelmiro commented Dec 3, 2024

/unhold
I was probably taking too much time to open the URLs.
I re-tested on a different browser and it works as expected.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants