Documentation
¶
Index ¶
- Constants
- func FilterArgs(m map[string]string) map[string]string
- type BuildConfig
- type BuildStep
- type Capture
- func (c *Capture) AddGit(g GitSource)
- func (c *Capture) AddHTTP(h HTTPSource)
- func (c *Capture) AddImage(i ImageSource)
- func (c *Capture) AddLocal(l LocalSource)
- func (c *Capture) AddSSH(s SSH)
- func (c *Capture) AddSamples(dgst digest.Digest, samples *resourcestypes.Samples)
- func (c *Capture) AddSecret(s Secret)
- func (c *Capture) Merge(c2 *Capture) error
- func (c *Capture) OptimizeImageSources() error
- func (c *Capture) Sort()
- type DevKitMetadata
- type Environment
- type GitSource
- type HTTPSource
- type ImageSource
- type LocalSource
- type Parameters
- type ProvenanceInvocation
- type ProvenanceMetadata
- type ProvenancePredicate
- type Result
- type SSH
- type Secret
- type Source
- type SourceInfo
- type Sources
Constants ¶
View Source
const (
DevKitBuildType = "https://mobyproject.org/devkit@v1"
)
Variables ¶
This section is empty.
Functions ¶
Types ¶
type BuildConfig ¶
type Capture ¶
type Capture struct {
Frontend string
Args map[string]string
Sources Sources
Secrets []Secret
SSH []SSH
NetworkAccess bool
IncompleteMaterials bool
Samples map[digest.Digest]*resourcestypes.Samples
}
func (*Capture) AddHTTP ¶
func (c *Capture) AddHTTP(h HTTPSource)
func (*Capture) AddImage ¶
func (c *Capture) AddImage(i ImageSource)
func (*Capture) AddLocal ¶
func (c *Capture) AddLocal(l LocalSource)
func (*Capture) AddSamples ¶
func (c *Capture) AddSamples(dgst digest.Digest, samples *resourcestypes.Samples)
func (*Capture) OptimizeImageSources ¶
OptimizeImageSources filters out image sources by digest reference if same digest is already present by a tag reference.
type DevKitMetadata ¶
type DevKitMetadata struct {
VCS map[string]string `json:"vcs,omitempty"`
Source *Source `json:"source,omitempty"`
Layers map[string][][]ocispecs.Descriptor `json:"layers,omitempty"`
SysUsage []*resourcetypes.SysSample `json:"sysUsage,omitempty"`
}
type Environment ¶
type Environment struct {
Platform string `json:"platform"`
}
type HTTPSource ¶
type ImageSource ¶
type LocalSource ¶
type LocalSource struct {
Name string `json:"name"`
}
type Parameters ¶
type ProvenanceInvocation ¶
type ProvenanceInvocation struct {
ConfigSource slsa02.ConfigSource `json:"configSource,omitempty"`
Parameters Parameters `json:"parameters,omitempty"`
Environment Environment `json:"environment,omitempty"`
}
type ProvenanceMetadata ¶
type ProvenanceMetadata struct {
slsa02.ProvenanceMetadata
DevKitMetadata DevKitMetadata `json:"https://mobyproject.org/devkit@v1#metadata,omitempty"`
Hermetic bool `json:"https://mobyproject.org/devkit@v1#hermetic,omitempty"`
}
type ProvenancePredicate ¶
type ProvenancePredicate struct {
slsa02.ProvenancePredicate
Invocation ProvenanceInvocation `json:"invocation,omitempty"`
BuildConfig *BuildConfig `json:"buildConfig,omitempty"`
Metadata *ProvenanceMetadata `json:"metadata,omitempty"`
}
func NewPredicate ¶
func NewPredicate(c *Capture) (*ProvenancePredicate, error)
type Source ¶
type Source struct {
Locations map[string]*pb.Locations `json:"locations,omitempty"`
Infos []SourceInfo `json:"infos,omitempty"`
}
type SourceInfo ¶
type Sources ¶
type Sources struct {
Images []ImageSource
Git []GitSource
HTTP []HTTPSource
Local []LocalSource
}
Click to show internal directories.
Click to hide internal directories.