Skip to content

Instantly share code, notes, and snippets.

@teejaded
Created May 22, 2019 23:52
Show Gist options
  • Save teejaded/b0cfe0e138d5b3d229f835c123850470 to your computer and use it in GitHub Desktop.
Save teejaded/b0cfe0e138d5b3d229f835c123850470 to your computer and use it in GitHub Desktop.
package main
import (
"fmt"
"github.com/minio/minio-go"
)
func main() {
_, err := minio.New("rook-ceph-obj.rook-ceph.svc.cluster.local.", "MYKEY", "MYKEY", true)
if err != nil {
fmt.Printf("Error creating s3 client: %s", err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment