localstate

package
v0.14.0 Latest Latest
Warning

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

Go to latest
Published: Apr 17, 2024 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type LocalState

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

func New

func New(root string) (*LocalState, error)

func (*LocalState) ReadGroup added in v0.12.0

func (ls *LocalState) ReadGroup(id string) (*StateGroup, error)

func (*LocalState) ReadRef

func (ls *LocalState) ReadRef(builderName, nodeName, id string) (*State, error)

func (*LocalState) RemoveBuilder

func (ls *LocalState) RemoveBuilder(builderName string) error

func (*LocalState) RemoveBuilderNode

func (ls *LocalState) RemoveBuilderNode(builderName string, nodeName string) error

RemoveBuilderNode removes all refs for a builder node. This func is not safe for concurrent use from multiple goroutines.

func (*LocalState) SaveGroup added in v0.12.0

func (ls *LocalState) SaveGroup(id string, stg StateGroup) error

func (*LocalState) SaveRef

func (ls *LocalState) SaveRef(builderName, nodeName, id string, st State) error

type State

type State struct {
	// Target is the name of the invoked target (default if empty)
	Target string
	// LocalPath is the absolute path to the context
	LocalPath string
	// DockerfilePath is the absolute path to the Dockerfile
	DockerfilePath string
	// GroupRef is the ref of the state group that this ref belongs to
	GroupRef string `json:",omitempty"`
}

type StateGroup added in v0.12.0

type StateGroup struct {
	// Definition is the raw representation of the group (bake definition)
	Definition []byte
	// Targets are the targets invoked
	Targets []string `json:",omitempty"`
	// Inputs are the user inputs (bake overrides)
	Inputs []string `json:",omitempty"`
	// Refs are used to track all the refs that belong to the same group
	Refs []string
}

Jump to

Keyboard shortcuts

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