Documentation ¶
Index ¶
- Constants
- func CompressBuildMetadata(metadata *BuildMetadata) ([]byte, error)
- func ProcessProjectDescriptor(appDir, descriptorPath, platformDir string, logger *log.Logger) error
- func SetupPlatformEnvVars(dir string) error
- type APISet
- type APIVersions
- type BuildMetadata
- type BuilderImageMetadata
- type BuildpackLayerInfo
- type BuildpackLayerMetadata
- type BuildpackResolver
- type BuildpackageMetadata
- type CreatorMetadata
- type DescriptiveBuildpackInfo
- type ImageFetcher
- type K8sRemoteBuildpack
- type LifecycleAPI
- type LifecycleAPIs
- type LifecycleDescriptor
- type LifecycleInfo
- type LifecycleMetadata
- type LifecycleProvider
- type Node
- type RegistryClient
- type RemoteBuilderCreator
- type RemoteBuildpackFetcher
- type RemoteBuildpackInfo
- type RemoteBuildpackReader
- type RemoteBuildpackRef
- type RemoteMetadataRetriever
- type RemoteStackReader
- type RunImageAppMetadata
- type RunImageMetadata
- type Stack
- type StackMetadata
Constants ¶
View Source
const ( MixinsLabel = "io.buildpacks.stack.mixins" StackLabel = "io.buildpacks.stack.id" )
Variables ¶
This section is empty.
Functions ¶
func CompressBuildMetadata ¶
func CompressBuildMetadata(metadata *BuildMetadata) ([]byte, error)
func SetupPlatformEnvVars ¶
Types ¶
type APIVersions ¶
type BuildMetadata ¶
type BuildMetadata struct { BuildpackMetadata corev1alpha1.BuildpackMetadataList `json:"buildpackMetadata"` LatestCacheImage string `json:"latestCacheImage"` LatestImage string `json:"latestImage"` StackID string `json:"stackID"` StackRunImage string `json:"stackRunImage"` }
func DecompressBuildMetadata ¶
func DecompressBuildMetadata(compressedMetadata string) (*BuildMetadata, error)
type BuilderImageMetadata ¶
type BuilderImageMetadata struct { Description string `json:"description"` Stack StackMetadata `json:"stack"` Lifecycle LifecycleMetadata `json:"lifecycle"` CreatedBy CreatorMetadata `json:"createdBy"` Buildpacks []DescriptiveBuildpackInfo `json:"buildpacks"` }
type BuildpackLayerInfo ¶
type BuildpackLayerInfo struct { API string `json:"api"` LayerDiffID string `json:"layerDiffID"` Order corev1alpha1.Order `json:"order,omitempty"` Stacks []corev1alpha1.BuildpackStack `json:"stacks,omitempty"` Homepage string `json:"homepage,omitempty"` }
type BuildpackLayerMetadata ¶
type BuildpackLayerMetadata map[string]map[string]BuildpackLayerInfo
type BuildpackResolver ¶
type BuildpackResolver interface { ClusterStoreObservedGeneration() int64 // contains filtered or unexported methods }
BuildpackResolver will attempt to resolve a Buildpack reference to a Buildpack from either the ClusterStore, Buildpacks, or ClusterBuildpacks
func NewBuildpackResolver ¶
func NewBuildpackResolver(clusterStore *v1alpha2.ClusterStore, buildpacks []*v1alpha2.Buildpack, clusterBuildpacks []*v1alpha2.ClusterBuildpack) BuildpackResolver
type BuildpackageMetadata ¶
type CreatorMetadata ¶
type DescriptiveBuildpackInfo ¶
type DescriptiveBuildpackInfo struct { corev1alpha1.BuildpackInfo Homepage string `json:"homepage,omitempty"` }
type ImageFetcher ¶
type K8sRemoteBuildpack ¶
type K8sRemoteBuildpack struct { Buildpack corev1alpha1.BuildpackStatus SecretRef registry.SecretRef // contains filtered or unexported fields }
type LifecycleAPI ¶
type LifecycleAPIs ¶
type LifecycleAPIs struct { Buildpack APIVersions `toml:"buildpack" json:"buildpack"` Platform APIVersions `toml:"platform" json:"platform"` }
type LifecycleDescriptor ¶
type LifecycleDescriptor struct { Info LifecycleInfo `toml:"lifecycle"` // Deprecated: Use `LifecycleAPIs` instead API LifecycleAPI `toml:"api" json:"api,omitempty"` APIs LifecycleAPIs `toml:"apis" json:"apis,omitempty"` }
type LifecycleInfo ¶
type LifecycleInfo struct {
Version string `toml:"version" json:"version"`
}
type LifecycleMetadata ¶
type LifecycleMetadata struct { LifecycleInfo // Deprecated: Use `LifecycleAPIs` instead API LifecycleAPI `json:"api,omitempty"` APIs LifecycleAPIs `json:"apis,omitempty"` }
type LifecycleProvider ¶
type LifecycleProvider interface {
LayerForOS(os string) (ggcrv1.Layer, LifecycleMetadata, error)
}
type Node ¶
type Node struct { Buildpack *corev1alpha1.BuildpackStatus Children []*Node }
func NewTree ¶
func NewTree(buildpacks []corev1alpha1.BuildpackStatus) []*Node
NewTree generates a list of dependency trees for the given buildpacks. A buildpack's dependency tree is just the buildpack's group[].order[] but in proper tree form.
type RegistryClient ¶
type RemoteBuilderCreator ¶
type RemoteBuilderCreator struct { RegistryClient RegistryClient LifecycleProvider LifecycleProvider KpackVersion string KeychainFactory registry.KeychainFactory }
func (*RemoteBuilderCreator) CreateBuilder ¶
func (r *RemoteBuilderCreator) CreateBuilder( ctx context.Context, builderKeychain authn.Keychain, fetcher RemoteBuildpackFetcher, clusterStack *buildapi.ClusterStack, spec buildapi.BuilderSpec, ) (buildapi.BuilderRecord, error)
type RemoteBuildpackFetcher ¶
type RemoteBuildpackFetcher interface { BuildpackResolver ResolveAndFetch(context.Context, buildapi.BuilderBuildpackRef) (RemoteBuildpackInfo, error) }
func NewRemoteBuildpackFetcher ¶
func NewRemoteBuildpackFetcher( factory registry.KeychainFactory, clusterStore *buildapi.ClusterStore, buildpacks []*buildapi.Buildpack, clusterBuildpacks []*buildapi.ClusterBuildpack, ) RemoteBuildpackFetcher
type RemoteBuildpackInfo ¶
type RemoteBuildpackInfo struct { BuildpackInfo DescriptiveBuildpackInfo Layers []buildpackLayer }
func (RemoteBuildpackInfo) Optional ¶
func (i RemoteBuildpackInfo) Optional(optional bool) RemoteBuildpackRef
type RemoteBuildpackReader ¶
type RemoteBuildpackReader struct {
RegistryClient RegistryClient
}
func (*RemoteBuildpackReader) Read ¶
func (r *RemoteBuildpackReader) Read(keychain authn.Keychain, storeImages []corev1alpha1.ImageSource) ([]corev1alpha1.BuildpackStatus, error)
type RemoteBuildpackRef ¶
type RemoteBuildpackRef struct { DescriptiveBuildpackInfo DescriptiveBuildpackInfo Optional bool Layers []buildpackLayer }
type RemoteMetadataRetriever ¶
type RemoteMetadataRetriever struct {
ImageFetcher ImageFetcher
}
func (*RemoteMetadataRetriever) GetBuildMetadata ¶
func (r *RemoteMetadataRetriever) GetBuildMetadata(builtImageRef, cacheTag string, keychain authn.Keychain) (*BuildMetadata, error)
type RemoteStackReader ¶
type RemoteStackReader struct {
RegistryClient RegistryClient
}
func (*RemoteStackReader) Read ¶
func (r *RemoteStackReader) Read(keychain authn.Keychain, clusterStackSpec buildapi.ClusterStackSpec) (buildapi.ResolvedClusterStack, error)
type RunImageAppMetadata ¶
type RunImageMetadata ¶
type StackMetadata ¶
type StackMetadata struct {
RunImage RunImageMetadata `json:"runImage" toml:"run-image"`
}
Source Files ¶
- build_metadata.go
- builder_builder.go
- builder_layers.go
- buildpack_metadata.go
- buildpack_resolver.go
- buildpack_validation.go
- buildpackage_metadata.go
- create_builder.go
- dependency_tree.go
- env_vars.go
- platform_env_vars_setup.go
- project_descriptor.go
- remote_buildpack_fetcher.go
- remote_buildpack_metadata.go
- remote_stack_reader.go
- remote_store_reader.go
Click to show internal directories.
Click to hide internal directories.