-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Implement a way to pass remote settings to commands like add/run
#3441
Comments
@pared How about |
Closing in favor of iterative/dvc.org#108 |
For the record:
then the command should be |
Fr the record, setting up remote seems to solve the problem, though we have another one:
adding fails with:
|
@pared Should we create a separate issue for that? |
@efiop I believe this problem has been already noticed by @MrOutis: |
Context:
https://discordapp.com/channels/485586884165107732/563406153334128681/684696237810647051
When initializing the output here, (during
dvc add
for example) we cannot specifyremote
. It is fine as long as we work withaws
buckets.In this case, user has MinIO set up locally.
There is s3 bucket
s3://cache
inendpoint-url
:localhost:9000
.Cache set up can be achieved with
dvc remote modify myremote endpointurl
User has another bucket that contains data, lets say
s3://data/file
also on this MinIO.User cannot
dvc add s3://data/file
because there is no way to specify that we want dvc to handle bucket under our ownendpoint-url
.I tried tinkering with
aws
cli tool, hoping there will be some way to set up default endpoint and stumbled upon this issue:aws/aws-cli#1270
there is some workaround, but I wonder whether it would not be better for us to provide a way to handle it.
The text was updated successfully, but these errors were encountered: