cnb

package
v0.0.7 Latest Latest
Warning

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

Go to latest
Published: Mar 19, 2020 License: Apache-2.0 Imports: 31 Imported by: 8

Documentation

Index

Constants

View Source
const (
	MixinsLabel = "io.buildpacks.stack.mixins"
	StackLabel  = "io.buildpacks.stack.id"
)
View Source
const (
	BuilderMetadataLabel = "io.buildpacks.builder.metadata"
)

Variables

This section is empty.

Functions

func SetupPlatformEnvVars

func SetupPlatformEnvVars(dir, envVarsJSON string) error

Types

type BuilderImageMetadata

type BuilderImageMetadata struct {
	Description string                   `json:"description"`
	Stack       StackMetadata            `json:"stack"`
	Lifecycle   LifecycleMetadata        `json:"lifecycle"`
	CreatedBy   CreatorMetadata          `json:"createdBy"`
	Buildpacks  []v1alpha1.BuildpackInfo `json:"buildpacks"`
}

type BuildpackLayerInfo

type BuildpackLayerInfo struct {
	API         string                       `json:"api"`
	LayerDiffID string                       `json:"layerDiffID"`
	Order       expv1alpha1.Order            `json:"order,omitempty"`
	Stacks      []expv1alpha1.BuildpackStack `json:"stacks,omitempty"`
}

type BuildpackLayerMetadata

type BuildpackLayerMetadata map[string]map[string]BuildpackLayerInfo

type BuildpackRepository added in v0.0.6

type BuildpackRepository interface {
	FindByIdAndVersion(id, version string) (RemoteBuildpackInfo, error)
}

type BuiltImage added in v0.0.1

type BuiltImage struct {
	Identifier        string
	CompletedAt       time.Time
	BuildpackMetadata []lifecycle.Buildpack
	Stack             BuiltImageStack
}

type BuiltImageStack added in v0.0.7

type BuiltImageStack struct {
	RunImage string
	ID       string
}

type CreatorMetadata

type CreatorMetadata struct {
	Name    string `json:"name"`
	Version string `json:"version"`
}

type FetchableBuilder added in v0.0.6

type FetchableBuilder interface {
	metav1.ObjectMetaAccessor
	Image() string
	ImagePullSecrets() []v1.LocalObjectReference
}

type ImageFetcher

type ImageFetcher interface {
	Fetch(keychain authn.Keychain, repoName string) (ggcrv1.Image, string, error)
}

type LifecycleAPI

type LifecycleAPI struct {
	BuildpackVersion string `toml:"buildpack" json:"buildpack,omitempty"`
	PlatformVersion  string `toml:"platform" json:"platform,omitempty"`
}

type LifecycleDescriptor

type LifecycleDescriptor struct {
	Info LifecycleInfo `toml:"lifecycle"`
	API  LifecycleAPI  `toml:"api"`
}

type LifecycleInfo

type LifecycleInfo struct {
	Version string `toml:"version" json:"version"`
}

type LifecycleMetadata

type LifecycleMetadata struct {
	LifecycleInfo
	API LifecycleAPI `json:"api,omitempty"`
}

type RegistryClient

type RegistryClient interface {
	Fetch(keychain authn.Keychain, repoName string) (v1.Image, string, error)
	Save(keychain authn.Keychain, tag string, image v1.Image) (string, error)
}

type RemoteBuilderCreator

type RemoteBuilderCreator struct {
	RegistryClient RegistryClient
	LifecycleImage string
	KpackVersion   string
}

func (*RemoteBuilderCreator) CreateBuilder

type RemoteBuildpackInfo

type RemoteBuildpackInfo struct {
	BuildpackInfo v1alpha1.BuildpackInfo
	Layers        []buildpackLayer
}

func (RemoteBuildpackInfo) Optional

func (i RemoteBuildpackInfo) Optional(optional bool) RemoteBuildpackRef

type RemoteBuildpackRef

type RemoteBuildpackRef struct {
	BuildpackRef v1alpha1.BuildpackRef
	Layers       []buildpackLayer
}

type RemoteMetadataRetriever

type RemoteMetadataRetriever struct {
	KeychainFactory registry.KeychainFactory
	ImageFetcher    ImageFetcher
}

func (*RemoteMetadataRetriever) GetBuilderImage added in v0.0.3

func (r *RemoteMetadataRetriever) GetBuilderImage(builder FetchableBuilder) (v1alpha1.BuilderRecord, error)

func (*RemoteMetadataRetriever) GetBuiltImage added in v0.0.1

func (r *RemoteMetadataRetriever) GetBuiltImage(build *v1alpha1.Build) (BuiltImage, error)

type RemoteStackReader

type RemoteStackReader struct {
	RegistryClient RegistryClient
	Keychain       authn.Keychain
}

func (*RemoteStackReader) Read

type RemoteStoreReader added in v0.0.6

type RemoteStoreReader struct {
	RegistryClient RegistryClient
	Keychain       authn.Keychain
}

func (*RemoteStoreReader) Read added in v0.0.6

func (r *RemoteStoreReader) Read(storeImages []v1alpha1.StoreImage) ([]v1alpha1.StoreBuildpack, error)

type RunImageMetadata

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

type Stack

type Stack struct {
	ID     string   `json:"id"`
	Mixins []string `json:"mixins,omitempty"`
}

type StackMetadata

type StackMetadata struct {
	RunImage RunImageMetadata `json:"runImage" toml:"run-image"`
}

type StoreBuildpackRepository added in v0.0.6

type StoreBuildpackRepository struct {
	Keychain authn.Keychain

	Store *v1alpha1.Store
}

func (*StoreBuildpackRepository) FindByIdAndVersion added in v0.0.6

func (s *StoreBuildpackRepository) FindByIdAndVersion(id, version string) (RemoteBuildpackInfo, error)

Jump to

Keyboard shortcuts

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