-
Notifications
You must be signed in to change notification settings - Fork 13
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
Add presigned download url #137
Conversation
Signed-off-by: Ondra Machacek <[email protected]>
Can one of the admins verify this patch? |
api/v1alpha1/openapi.yaml
Outdated
@@ -189,6 +189,51 @@ paths: | |||
application/json: | |||
schema: | |||
$ref: '#/components/schemas/Error' | |||
/api/v1/image/{id}/image-url: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
as per what we've discussed this will be under source:
maybe api/v1/source/{id}/image-url
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right!
api/v1alpha1/agent/openapi.yaml
Outdated
@@ -8,6 +8,51 @@ info: | |||
servers: | |||
- url: / | |||
paths: | |||
/api/v1/image/bytoken/{token}: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this api is protected. How do you intend to pass the authentication with a curl?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it will be forwarded via cloud.rh.com/....
This commit changes the model from multi-source to single-source (i.e one source - one agent). Signed-off-by: Cosmin Tupangiu <[email protected]>
On hold until we are back on single source model.