config

package
v1.5.5 Latest Latest
Warning

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

Go to latest
Published: Jul 1, 2021 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const OfficialRegistryName = "official"

Variables

This section is empty.

Functions

func DefaultConfigPath

func DefaultConfigPath() (string, error)

func FormatUndecodedKeys

func FormatUndecodedKeys(undecodedKeys []toml.Key) string

func MkdirAll

func MkdirAll(path string) error

func PackHome

func PackHome() (string, error)

func Write

func Write(cfg Config, path string) error

Types

type Config

type Config struct {
	// Deprecated: Use DefaultRegistryName instead. See https://github.com/YousefHaggyHeroku/pack/issues/747.
	DefaultRegistry     string           `toml:"default-registry-url,omitempty"`
	DefaultRegistryName string           `toml:"default-registry,omitempty"`
	DefaultBuilder      string           `toml:"default-builder-image,omitempty"`
	Experimental        bool             `toml:"experimental,omitempty"`
	RunImages           []RunImage       `toml:"run-images"`
	TrustedBuilders     []TrustedBuilder `toml:"trusted-builders,omitempty"`
	Registries          []Registry       `toml:"registries,omitempty"`
}

func Read

func Read(path string) (Config, error)

func SetRunImageMirrors

func SetRunImageMirrors(cfg Config, image string, mirrors []string) Config

type Registry

type Registry struct {
	Name string `toml:"name"`
	Type string `toml:"type"`
	URL  string `toml:"url"`
}

func DefaultRegistry

func DefaultRegistry() Registry

func GetRegistries

func GetRegistries(cfg Config) []Registry

func GetRegistry

func GetRegistry(cfg Config, registryName string) (Registry, error)

type RunImage

type RunImage struct {
	Image   string   `toml:"image"`
	Mirrors []string `toml:"mirrors"`
}

type TrustedBuilder

type TrustedBuilder struct {
	Name string `toml:"name"`
}

Jump to

Keyboard shortcuts

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