You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 30, 2021. It is now read-only.
I don't know if this is a good idea but I don't see any documentation about using the data store with a S3 compatible client like s3cmd. The default configuration doesn't work (it's possible to run ls but not to access the content of a bucket)
in the cfg:
access_key = # content from $(etcdctl get /deis/store/gateway/accessKey)
secret_key = # content from $(etcdctl get /deis/store/gateway/secretKey)
host_base = deis-store.local3.deisapp.com
host_bucket = deis-store.local3.deisapp.com
change S3.py (from s3cmd)
from
def format_uri(self, resource):
if resource['bucket'] and not check_bucket_name_dns_conformity(resource['bucket']):
to
def format_uri(self, resource):
if resource['bucket']:
now ls in a bucket works
The text was updated successfully, but these errors were encountered:
I don't know if this is a good idea but I don't see any documentation about using the data store with a S3 compatible client like s3cmd. The default configuration doesn't work (it's possible to run ls but not to access the content of a bucket)
in the cfg:
change S3.py (from s3cmd)
from
to
now ls in a bucket works
The text was updated successfully, but these errors were encountered: