Documentation ¶
Index ¶
- Variables
- type Client
- func (c *Client) Connect() error
- func (c *Client) CreateBucket(bucket string) error
- func (c *Client) DeleteBucket(bucket string, force bool) error
- func (c *Client) DownloadFile(bucket, file string) (*minio.Object, error)
- func (c *Client) GetValidBucketName(parentType string, parentName string) string
- func (c *Client) ListBuckets() ([]string, error)
- func (c *Client) ListFiles(bucket string) ([]testkube.Artifact, error)
- func (c *Client) PlaceFiles(buckets []string, prefix string) error
- func (c *Client) SaveFile(bucket, filePath string) error
- func (c *Client) ScrapeArtefacts(id string, directories ...string) error
- func (c *Client) UploadFile(bucket string, filePath string, reader io.Reader, objectSize int64) error
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrArtifactsNotFound = errors.New("Execution doesn't have any artifacts associated with it")
ErrArtifactsNotFound contains error for not existing artifacts
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { Endpoint string Log *zap.SugaredLogger // contains filtered or unexported fields }
Client for managing MinIO storage server
func (*Client) CreateBucket ¶
CreateBucket creates new S3 like bucket
func (*Client) DeleteBucket ¶
DeleteBucket deletes bucket by name
func (*Client) DownloadFile ¶
DownloadFile downloads file in bucket
func (*Client) GetValidBucketName ¶ added in v1.6.38
GetValidBucketName returns a minio-compatible bucket name
func (*Client) ListBuckets ¶
ListBuckets lists available buckets
func (*Client) PlaceFiles ¶ added in v1.6.38
PlaceFiles saves the content of the buckets to the filesystem
func (*Client) ScrapeArtefacts ¶
ScrapeArtefacts pushes local files located in directories to given bucket ID
Click to show internal directories.
Click to hide internal directories.