Documentation
¶
Index ¶
- func ConvertScopes(dwScopes []string, dwPayload *dockerworker.DockerWorkerPayload, ...) (gwScopes []string, err error)
- func ConvertTaskDefinition(dwTaskDef json.RawMessage, config Config, scopeExpander scopes.ScopeExpander, ...) (json.RawMessage, error)
- type Config
- type ConversionInfo
- type CopyArtifact
- type DockerImageArtifact
- type DockerImageName
- type FileImageLoader
- type Image
- type IndexedDockerImage
- type NamedDockerImage
- type RegistryImageLoader
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func ConvertScopes ¶
func ConvertScopes( dwScopes []string, dwPayload *dockerworker.DockerWorkerPayload, taskQueueID string, scopeExpander scopes.ScopeExpander, ) (gwScopes []string, err error)
ConvertScopes takes a slice of Docker Worker task scopes and returns a slice of equivalent Generic Worker scopes. These scopes should be used together with a converted Docker Worker task payload (see d2g.Convert function) to run Docker Worker tasks under Generic Worker.
func ConvertTaskDefinition ¶
func ConvertTaskDefinition( dwTaskDef json.RawMessage, config Config, scopeExpander scopes.ScopeExpander, directoryReader func(string) ([]os.DirEntry, error), ) (json.RawMessage, error)
Types ¶
type Config ¶
type Config struct {
EnableD2G bool `json:"enableD2G"`
AllowChainOfTrust bool `json:"allowChainOfTrust"`
AllowDisableSeccomp bool `json:"allowDisableSeccomp"`
AllowGPUs bool `json:"allowGPUs"`
AllowInteractive bool `json:"allowInteractive"`
AllowKVM bool `json:"allowKVM"`
AllowLoopbackAudio bool `json:"allowLoopbackAudio"`
AllowLoopbackVideo bool `json:"allowLoopbackVideo"`
AllowPrivileged bool `json:"allowPrivileged"`
AllowPtrace bool `json:"allowPtrace"`
AllowTaskclusterProxy bool `json:"allowTaskclusterProxy"`
GPUs string `json:"gpus"`
LogTranslation bool `json:"logTranslation"`
}
type ConversionInfo ¶
type ConversionInfo struct {
ContainerName string
CopyArtifacts []CopyArtifact
EnvVars string
Image Image
}
func ConvertPayload ¶
func ConvertPayload( dwPayload *dockerworker.DockerWorkerPayload, config Config, directoryReader func(string) ([]os.DirEntry, error), ) (gwPayload *genericworker.GenericWorkerPayload, conversionInfo ConversionInfo, err error)
ConvertPayload transforms a Docker Worker task payload into an equivalent Generic Worker Multiuser POSIX task payload. The resulting Generic Worker payload is a BASH script which uses Docker (by default) to contain the Docker Worker payload. Since scopes fall outside of the payload in a task definition, scopes need to be converted separately (see d2g.ConvertScopes function).
type CopyArtifact ¶
type DockerImageArtifact ¶
type DockerImageArtifact dockerworker.DockerImageArtifact
func (*DockerImageArtifact) FileMounts ¶
func (dia *DockerImageArtifact) FileMounts() ([]genericworker.FileMount, error)
func (*DockerImageArtifact) String ¶
func (dia *DockerImageArtifact) String() string
type DockerImageName ¶
type DockerImageName string
func (*DockerImageName) FileMounts ¶
func (din *DockerImageName) FileMounts() ([]genericworker.FileMount, error)
func (*DockerImageName) String ¶
func (din *DockerImageName) String() string
type FileImageLoader ¶
type FileImageLoader struct {
Image Image
}
type Image ¶
type Image interface {
FileMounts() ([]genericworker.FileMount, error)
String() string
}
type IndexedDockerImage ¶
type IndexedDockerImage dockerworker.IndexedDockerImage
func (*IndexedDockerImage) FileMounts ¶
func (idi *IndexedDockerImage) FileMounts() ([]genericworker.FileMount, error)
func (*IndexedDockerImage) String ¶
func (idi *IndexedDockerImage) String() string
type NamedDockerImage ¶
type NamedDockerImage dockerworker.NamedDockerImage
func (*NamedDockerImage) FileMounts ¶
func (ndi *NamedDockerImage) FileMounts() ([]genericworker.FileMount, error)
func (*NamedDockerImage) String ¶
func (ndi *NamedDockerImage) String() string
type RegistryImageLoader ¶
type RegistryImageLoader struct {
Image Image
}
Source Files
¶
Click to show internal directories.
Click to hide internal directories.