Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

I get this error
x509: certificate signed by unknown authority
when I try to put an object to Spaces using access keys in a docker container. I can get files just fine, and I can put files from my local machine (not in a docker container). I’m using the minio package from a golang app. This happens even with ssl=false. Is it looking for a cert only on puts?
Here’s what my code looks like
endpoint := "sfo3.digitaloceanspaces.com"
bucket := "mybucket"
ssl := false
client, err := minio.New(endpoint, accessKey, secKey, ssl)
if err != nil {
fmt.Println(err)
return nil
}
//this get works fine
obj, err := client.GetObject(bucket, fileName, minio.GetObjectOptions{})
if err != nil {
fmt.Println(err)
return nil
}
reader := bytes.NewReader(contents)
//this put fails
_, err = client.PutObject(bucket, "test.jpeg", reader, reader.Size(), minio.PutObjectOptions{})
if err != nil {
fmt.Println(err) //this is where I get the error
}
SarkariResultht
KFSys
Arne van Hoorn
alexdo
4287c71658bd4ea39bef277d491b1c
4287c71658bd4ea39bef277d491b1c
Demanix
Demanix
devjk1
Jordan
LC Labs Sp. z o.o.
a0cd9be01b14447384f79073fc121f