Documentation ¶
Overview ¶
Package linux provides the ability for Vela to integrate with a Linux as an operating system.
Usage:
import "github.com/go-vela/worker/executor/linux"
Index ¶
- Variables
- func New(opts ...Opt) (*client, error)
- type Opt
- func WithBuild(b *library.Build) Opt
- func WithHostname(hostname string) Opt
- func WithLogMethod(method string) Opt
- func WithPipeline(p *pipeline.Build) Opt
- func WithRepo(r *library.Repo) Opt
- func WithRuntime(r runtime.Engine) Opt
- func WithUser(u *library.User) Opt
- func WithVelaClient(cli *vela.Client) Opt
- func WithVersion(version string) Opt
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrUnrecognizedSecretType defines the error type when the // SecretType provided to the client is unsupported. ErrUnrecognizedSecretType = errors.New("unrecognized secret type") // ErrUnableToRetrieve defines the error type when the // secret is not able to be retrieved from the server. ErrUnableToRetrieve = errors.New("unable to retrieve secret") )
Functions ¶
Types ¶
type Opt ¶ added in v0.11.0
type Opt func(*client) error
Opt represents a configuration option to initialize the client.
func WithHostname ¶ added in v0.11.0
WithHostname sets the hostname in the client.
func WithLogMethod ¶ added in v0.11.0
WithLogMethod sets the method used to publish logs in the client.
func WithPipeline ¶ added in v0.11.0
WithPipeline sets the pipeline build in the client.
func WithRuntime ¶ added in v0.11.0
WithRuntime sets the runtime engine in the client.
func WithVelaClient ¶ added in v0.11.0
WithVelaClient sets the Vela client in the client.
func WithVersion ¶ added in v0.11.0
WithVersion sets the version in the client.
Click to show internal directories.
Click to hide internal directories.