-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Frontend - Add support for artifacts stored in S3 #1278
Frontend - Add support for artifacts stored in S3 #1278
Conversation
Hi @Jeffwan. Thanks for your PR. I'm waiting for a kubeflow member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
1 similar comment
Hi @Jeffwan. Thanks for your PR. I'm waiting for a kubeflow member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
LGTM! Thank you for this PR! /lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: rileyjbauer The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
hi @Jeffwan, Can support the other s3 API compatible storage such as ceph/minio? |
I think minio support has been added. It will work for S3 API compatible storage. The only different is s3 endpoints. |
How can I get the AWS creds set as env var in the ml-pipeline-ui pod? @Jeffwan , any thoughts? |
You can attach aws env in pipeline-ui project. something like this
|
@Jeffwan |
You just need to attach AWS credential ENV in pipeline ui deployment. Either use plain text or read from secret.
|
@Jeffwan Thank you for your reply. really appreciate it! What can be causing this? Containers: ml-pipeline-ui:
|
You mean you get 50x when you visit web page? could you share logs of front UI? |
@Jeffwan
|
@Jeffwan |
@Shasvat0601 em.. sorry for late. Could you please open a new issue and we can track and resolve there? |
@Jeffwan sure! |
@Jeffwan If my s3 artifacts are within html, is that also supported? |
I was working on more storage options for artifacts. Original idea was to add local and s3 for no-prem and aws users. Notice local is a little bit tricky because pipeline-UI can not access PVC actively. After some discussion, we think ViewerCRD or minio would be choice for on-prem users.
S3 parts, I notice @DmitryBe has some work #767. I can not reach out to him and wait for few days. I borrow some code snippet and reuse minio client in this PR.
I will have some corresponding changes in kubeflow/kubeflow later to mount AWS credential to ui pod.
This change is