tool

package
v0.13.12 Latest Latest
Warning

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

Go to latest
Published: Apr 26, 2024 License: Apache-2.0 Imports: 11 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func GetHelp added in v0.9.0

func GetHelp(builder string) []byte

GetHelp returns the help message of `nydus-image create`.

func Merge

func Merge(option MergeOption) ([]digest.Digest, error)

func Pack added in v0.3.0

func Pack(option PackOption) error

func Unpack added in v0.3.0

func Unpack(option UnpackOption) error

Types

type Feature added in v0.6.1

type Feature string
const (
	// The option `--type tar-rafs` enables converting OCI tar blob
	// stream into nydus blob directly, the tar2rafs eliminates the
	// need to decompress it to a local directory first, thus greatly
	// accelerating the pack process.
	FeatureTar2Rafs Feature = "--type tar-rafs"
	// The option `--batch-size` enables merging multiple small chunks
	// into a big batch chunk, which can reduce the the size of the image
	// and accelerate the runtime file loading.
	FeatureBatchSize Feature = "--batch-size"
	// The option `--encrypt` enables converting directories, tar files
	// or OCI images into encrypted nydus blob.
	FeatureEncrypt Feature = "--encrypt"
)

type Features added in v0.6.1

type Features map[Feature]struct{}

func DetectFeatures added in v0.6.1

func DetectFeatures(builder string, required Features, getHelp func(string) []byte) (Features, error)

DetectFeatures returns supported feature list from required feature list. The supported feature list is detected from the help message of `nydus-image create`.

func NewFeatures added in v0.9.0

func NewFeatures(items ...Feature) Features

func (*Features) Add added in v0.9.0

func (features *Features) Add(items ...Feature)

func (*Features) Contains added in v0.6.1

func (features *Features) Contains(feature Feature) bool

func (*Features) Equals added in v0.9.0

func (features *Features) Equals(other Features) bool

func (*Features) Remove added in v0.6.1

func (features *Features) Remove(items ...Feature)

type MergeOption

type MergeOption struct {
	BuilderPath string

	SourceBootstrapPaths []string
	RafsBlobDigests      []string
	RafsBlobTOCDigests   []string
	RafsBlobSizes        []int64

	TargetBootstrapPath string
	ChunkDictPath       string
	ParentBootstrapPath string
	PrefetchPatterns    string
	OutputJSONPath      string
	Timeout             *time.Duration
}

type PackOption added in v0.3.0

type PackOption struct {
	BuilderPath string

	BootstrapPath    string
	BlobPath         string
	FsVersion        string
	SourcePath       string
	ChunkDictPath    string
	PrefetchPatterns string
	Compressor       string
	OCIRef           bool
	AlignedChunk     bool
	ChunkSize        string
	BatchSize        string
	Encrypt          bool
	Timeout          *time.Duration

	Features Features
}

type UnpackOption added in v0.3.0

type UnpackOption struct {
	BuilderPath       string
	BootstrapPath     string
	BlobPath          string
	BackendConfigPath string
	TarPath           string
	Timeout           *time.Duration
}

Jump to

Keyboard shortcuts

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