Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ContainerizerType ¶
type ContainerizerType string
ContainerizerType defines containerizer types
const ( // ContainerizerMetadataKind defines kind of cf runtime instance apps file ContainerizerMetadataKind types.Kind = "Containerizer" // DockerfileContainerizerType defines DockerfileContainerizer Type DockerfileContainerizerType ContainerizerType = "DockerfileContainerizer" // S2IContainerizerType defines S2IContainerizer Type S2IContainerizerType ContainerizerType = "S2IContainerizer" // CNBContainerizerType defines CNBContainerizer Type CNBContainerizerType ContainerizerType = "CNBContainerizer" )
type DockerfileContainerizer ¶
type DockerfileContainerizer struct { types.TypeMeta `yaml:",inline"` types.ObjectMeta `yaml:"metadata,omitempty"` Spec DockerfileContainerizerSpec `yaml:"spec,omitempty"` }
DockerfileContainerizer defines definition of cf runtime instance apps file
func NewDockerfileContainerizer ¶
func NewDockerfileContainerizer() DockerfileContainerizer
NewDockerfileContainerizer creates a new instance of DockerfileContainerizer
type DockerfileContainerizerSpec ¶
type DockerfileContainerizerSpec struct { Type ContainerizerType `yaml:"type"` DetectorImage Image `yaml:"detectorImage"` }
DockerfileContainerizerSpec stores the data
Click to show internal directories.
Click to hide internal directories.