Object Storage Setup
To set up your object storage for Score:
-
Register with an object storage provider of your choice and follow their instructions for setting up and configuring their service.
Minio Local QuickstartIf you'd like to quickly spin up a compatible object storage locally, you can run the following command:
docker run --name minIO -p 9000:9000 -e MINIO_ACCESS_KEY=minio -e MINIO_SECRET_KEY=minio123 minio/minio:RELEASE.2018-05-11T00-29-24Z server /data
-
Create two data buckets for Score to use:
-
A bucket to store object data
-
A bucket to store and maintain state information
tipAfter creation, remember the IDs of both buckets, as they will be required later for configuring Score.
-
You may need to create a
/data
sub-folder in advance for each bucket. This requirement depends on your storage provider and is summarized below:Storage Provider Data sub-folder required Amazon S3 No Microsoft Azure No MinIO No OpenStack with Ceph Yes -
Record the URL, access key, and secret key used to access your storage service. These credentials will be required later for configuring Score. Record and securely store these values.
For Amazon S3 bucketsRemember to document the geographical region where you have configured your buckets to be stored, as this will be required when configuring Score.