-
Notifications
You must be signed in to change notification settings - Fork 8
Expose minio #548
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
Expose minio #548
Conversation
Update documentation in values file.
wilko77
left a comment
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.
looks fine
| config.UPLOAD_OBJECT_STORE_SERVER, | ||
| config.UPLOAD_OBJECT_STORE_ACCESS_KEY, | ||
| config.UPLOAD_OBJECT_STORE_SECRET_KEY, | ||
| region="us-east-1", |
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.
why is region hard-coded when everything else is configurable?
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 could be configurable but we'd probably have to introduce another minio/boto client just to connect to us-east-1 for the granting the temporary credentials.
| ## Disable the feature providing client's with restricted upload access to the object store. | ||
| ## By default we don't expose the Minio object store, however it needs to be exposed when | ||
| ## enabling this feature. See section `minio.ingress`. |
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 don't understand this comment. So what do I have to set this to to enable client upload to our Minio object store?
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'll clarify this
This PR is mostly around the kubernetes deployment of minio it builds on #547 .
secureconnectionOther than the e2e tests I've also drafted a branch of anonlink-client which uses a deployment of this expose-minio branch to fetch credentials and upload data directly to the object store.