buckets

package
v2.1.155 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 24, 2020 License: Apache-2.0 Imports: 18 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CreateBucketURL

func CreateBucketURL(name string, kind string, settings *jenkinsv1.TeamSettings) (string, error)

CreateBucketURL creates a go-cloud URL to a bucket

func KubeProviderToBucketScheme

func KubeProviderToBucketScheme(provider string) string

KubeProviderToBucketScheme returns the bucket scheme for the cloud provider

func ReadBucketURL

func ReadBucketURL(u *url.URL, timeout time.Duration) (io.ReadCloser, error)

ReadBucketURL reads the content of a bucket URL of the for 's3://bucketName/foo/bar/whatnot.txt?param=123' where any of the query arguments are applied to the underlying Bucket URL and the path is extracted and resolved within the bucket

func ReadHTTPURL

func ReadHTTPURL(u string, headerFunc func(*http.Request), timeout time.Duration) (io.ReadCloser, error)

ReadHTTPURL reads the HTTP based URL, modifying the headers as needed, and returns the data or returning an error if a 2xx status is not returned

func ReadURL

func ReadURL(urlText string, timeout time.Duration, httpFn func(urlString string) (string, func(*http.Request), error)) (io.ReadCloser, error)

ReadURL reads the given URL from either a http/https endpoint or a bucket URL path. if specified the httpFn is a function which can append the user/password or token and/or add a header with the token if using a git provider

func SplitBucketURL

func SplitBucketURL(u *url.URL) (string, string)

SplitBucketURL splits the full bucket URL into the URL to open the bucket and the file name to refer to within the bucket

func WriteBucket

func WriteBucket(bucketURL string, key string, reader io.Reader, timeout time.Duration) (err error)

WriteBucket writes the data to a bucket URL and key of the for 's3://bucketName' and key 'foo/bar/whatnot.txt' with the given timeout

func WriteBucketURL

func WriteBucketURL(u *url.URL, data io.Reader, timeout time.Duration) error

WriteBucketURL writes the data to a bucket URL of the for 's3://bucketName/foo/bar/whatnot.txt?param=123' with the given timeout

Types

type LegacyBucketProvider

type LegacyBucketProvider struct {
	// contains filtered or unexported fields
}

LegacyBucketProvider is the default provider for non boot clusters

func (LegacyBucketProvider) CreateNewBucketForCluster

func (LegacyBucketProvider) CreateNewBucketForCluster(clusterName string, bucketKind string) (string, error)

CreateNewBucketForCluster is not supported for LegacyBucketProvider

func (LegacyBucketProvider) DownloadFileFromBucket

func (LegacyBucketProvider) DownloadFileFromBucket(bucketURL string) (io.ReadCloser, error)

DownloadFileFromBucket is not supported for LegacyBucketProvider

func (LegacyBucketProvider) EnsureBucketIsCreated

func (LegacyBucketProvider) EnsureBucketIsCreated(bucketURL string) error

EnsureBucketIsCreated is not supported for LegacyBucketProvider

func (*LegacyBucketProvider) Initialize

func (p *LegacyBucketProvider) Initialize(bucketURL string, classifier string) error

Initialize initializes and opens a bucket object for the given bucketURL and classifier

func (LegacyBucketProvider) UploadFileToBucket

func (p LegacyBucketProvider) UploadFileToBucket(reader io.Reader, outputName string, bucketURL string) (string, error)

UploadFileToBucket uploads a file to the provider specific bucket with the given outputName using the gocloud library

type Provider

type Provider interface {
	// CreateNewBucketForCluster creates a new dynamically named bucket
	CreateNewBucketForCluster(clusterName string, bucketKind string) (string, error)
	EnsureBucketIsCreated(bucketURL string) error
	UploadFileToBucket(r io.Reader, outputName string, bucketURL string) (string, error)
	DownloadFileFromBucket(bucketURL string) (io.ReadCloser, error)
}

Provider represents a bucket provider

func NewLegacyBucketProvider

func NewLegacyBucketProvider() Provider

NewLegacyBucketProvider create a new provider for non supported providers or non boot clusters

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL