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 BuildpackRepository
- type BuildpackageMetadata
- type CreatorMetadata
- type DescriptiveBuildpackInfo
- type ImageFetcher
- type LifecycleAPI
- type LifecycleAPIs
- type LifecycleDescriptor
- type LifecycleInfo
- type LifecycleMetadata
- type LifecycleProvider
- type NewBuildpackRepository
- type RegistryClient
- type RemoteBuilderCreator
- type RemoteBuildpackInfo
- type RemoteBuildpackRef
- type RemoteMetadataRetriever
- type RemoteStackReader
- type RemoteStoreReader
- type RunImageAppMetadata
- type RunImageMetadata
- type Stack
- type StackMetadata
- type StoreBuildpackRepository
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 BuildpackRepository ¶ added in v0.0.6
type BuildpackRepository interface {
FindByIdAndVersion(id, version string) (RemoteBuildpackInfo, error)
}
type BuildpackageMetadata ¶
type CreatorMetadata ¶
type DescriptiveBuildpackInfo ¶
type DescriptiveBuildpackInfo struct { corev1alpha1.BuildpackInfo Homepage string `json:"homepage,omitempty"` }
type ImageFetcher ¶
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) (v1.Layer, LifecycleMetadata, error)
}
type NewBuildpackRepository ¶ added in v0.2.0
type NewBuildpackRepository func(clusterStore *buildapi.ClusterStore) BuildpackRepository
type RegistryClient ¶
type RemoteBuilderCreator ¶
type RemoteBuilderCreator struct { RegistryClient RegistryClient NewBuildpackRepository NewBuildpackRepository LifecycleProvider LifecycleProvider KpackVersion string }
func (*RemoteBuilderCreator) CreateBuilder ¶
func (r *RemoteBuilderCreator) CreateBuilder(keychain authn.Keychain, clusterStore *buildapi.ClusterStore, clusterStack *buildapi.ClusterStack, spec buildapi.BuilderSpec) (buildapi.BuilderRecord, error)
type RemoteBuildpackInfo ¶
type RemoteBuildpackInfo struct { BuildpackInfo DescriptiveBuildpackInfo Layers []buildpackLayer }
func (RemoteBuildpackInfo) Optional ¶
func (i RemoteBuildpackInfo) Optional(optional bool) RemoteBuildpackRef
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 RemoteStoreReader ¶ added in v0.0.6
type RemoteStoreReader struct {
RegistryClient RegistryClient
}
func (*RemoteStoreReader) Read ¶ added in v0.0.6
func (r *RemoteStoreReader) Read(keychain authn.Keychain, storeImages []corev1alpha1.StoreImage) ([]corev1alpha1.StoreBuildpack, error)
type RunImageAppMetadata ¶
type RunImageMetadata ¶
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 ClusterStore *buildapi.ClusterStore }
func (*StoreBuildpackRepository) FindByIdAndVersion ¶ added in v0.0.6
func (s *StoreBuildpackRepository) FindByIdAndVersion(id, version string) (RemoteBuildpackInfo, error)
Source Files ¶
- build_metadata.go
- builder_builder.go
- builder_layers.go
- buildpack_metadata.go
- buildpack_validation.go
- buildpackage_metadata.go
- create_builder.go
- env_vars.go
- platform_env_vars_setup.go
- project_descriptor.go
- remote_buildpack_metadata.go
- remote_stack_reader.go
- remote_store_reader.go
- store_buildpack_repository.go
Click to show internal directories.
Click to hide internal directories.