-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
[Digital Ocean] Upload binaries to DO Spaces #9672
Conversation
Hi @srikiz. Thanks for your PR. I'm waiting for a kubernetes 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 |
@srikiz Could you perhaps add this logic to |
@johngmyers - I have incorporated your comments. Please have a look when you get a chance, thanks ! |
hack/upload
Outdated
@@ -35,5 +35,11 @@ if [[ "${DEST:0:6}" == "oss://" ]]; then | |||
exit 0 | |||
fi | |||
|
|||
if [[ "${DEST:0:5}" == "do://" ]]; then | |||
DO_BUCKET=`echo "${DEST}" | cut -c 6-` | |||
s3cmd put "*" ${SRC}/ s3://$DO_BUCKET --recursive --acl-public |
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.
Can this use PUBLIC
like the others?
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.
I have set the --acl-public flag set, allowing read access for everyone.
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.
The point is to allow callers to omit the --acl-public
flag by calling hack/upload --private
.
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.
Ah, I got that now. I didn't realize parameter substitution was happening.. I updated it and squashed the commits as well.
With the change to |
yeah, make dev-upload is good. I reverted the change in Makefile. Thanks @johngmyers ! |
Also, please squash commits. |
a00a456
to
42b1daf
Compare
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: johngmyers, srikiz 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 |
Using s3cmd to upload KOPS binaries to DO spaces, helps in development when working on nodeup and other binaries to use custom images from DO Spaces.