Documentation ¶
Index ¶
- Variables
- type ApiVersion
- type Attributes
- type DevfileCommand
- type DevfileCommandAction
- type DevfileCommandPreviewUrl
- type DevfileCommandType
- type DevfileComponent
- type DevfileComponentCheEditor
- type DevfileComponentChePlugin
- type DevfileComponentDockerimage
- type DevfileComponentKubernetes
- type DevfileComponentOpenshift
- type DevfileComponentType
- type DevfileMetadata
- type DevfileProject
- type DevfileProjectSource
- type DevfileProjectType
- type DockerimageEndpoint
- type DockerimageEnv
- type DockerimageVolume
Constants ¶
This section is empty.
Variables ¶
View Source
var SupportedDevfileProjectTypes = []DevfileProjectType{DevfileProjectTypeGit}
Functions ¶
This section is empty.
Types ¶
type ApiVersion ¶
type ApiVersion string
type DevfileCommand ¶
type DevfileCommand struct { // List of the actions of given command. Now the only one command must be // specified in list but there are plans to implement supporting multiple actions // commands. Actions []DevfileCommandAction `yaml:"actions" json:"actions"` // Additional command attributes Attributes Attributes `yaml:"attributes,omitempty" json:"attributes,omitempty"` // Describes the name of the command. Should be unique per commands set. Name string `yaml:"name"` // Preview url PreviewUrl DevfileCommandPreviewUrl `yaml:"previewUrl,omitempty" json:"previewUrl,omitempty"` }
type DevfileCommandAction ¶
type DevfileCommandAction struct { // The actual action command-line string Command *string `yaml:"command,omitempty" json:"command,omitempty"` // Describes component to which given action relates Component *string `yaml:"component,omitempty" json:"component,omitempty"` // the path relative to the location of the devfile to the configuration file // defining one or more actions in the editor-specific format Reference *string `yaml:"reference,omitempty" json:"reference,omitempty"` // The content of the referenced configuration file that defines one or more // actions in the editor-specific format ReferenceContent *string `yaml:"referenceContent,omitempty" json:"referenceContent,omitempty"` // Describes action type Type *DevfileCommandType `yaml:"type,omitempty" json:"type,omitempty"` // Working directory where the command should be executed Workdir *string `yaml:"workdir,omitempty" json:"workdir,omitempty"` }
type DevfileCommandType ¶
type DevfileCommandType string
-------------- Supported devfile command types ------------ //
const ( DevfileCommandTypeBuild DevfileCommandType = "build" DevfileCommandTypeRun DevfileCommandType = "run" DevfileCommandTypeDebug DevfileCommandType = "debug" DevfileCommandTypeExec DevfileCommandType = "exec" )
type DevfileComponent ¶
type DevfileComponent struct { // The name using which other places of this devfile (like commands) can refer to // this component. This attribute is optional but must be unique in the devfile if // specified. Alias *string `yaml:"alias,omitempty" json:"alias,omitempty"` // Describes whether projects sources should be mount to the component. // `CHE_PROJECTS_ROOT` environment variable should contains a path where projects // sources are mount MountSources bool `yaml:"mountSources,omitempty" json:"mountSources,omitempty"` // Describes type of the component, e.g. whether it is an plugin or editor or // other type Type DevfileComponentType `yaml:"type" json:"type"` // for type ChePlugin DevfileComponentChePlugin `yaml:",inline" json:",inline"` // for type=dockerfile DevfileComponentDockerimage `yaml:",inline" json:",inline"` }
type DevfileComponentDockerimage ¶
type DevfileComponentDockerimage struct { Image *string `yaml:"image,omitempty" json:"image,omitempty"` MemoryLimit *string `yaml:"memoryLimit,omitempty" json:"memoryLimit,omitempty"` Command []string `yaml:"command,omitempty" json:"command,omitempty"` Args []string `yaml:"args,omitempty" json:"args,omitempty"` Volumes []DockerimageVolume `yaml:"volumes,omitempty" json:"volumes,omitempty"` Env []DockerimageEnv `yaml:"env,omitempty" json:"env,omitempty"` Endpoints []DockerimageEndpoint `yaml:"endpoints,omitempty" json:"endpoints,omitempty"` }
type DevfileComponentKubernetes ¶
type DevfileComponentKubernetes struct { Reference *string `yaml:"reference,omitempty" json:"reference,omitempty"` ReferenceContent *string `yaml:"referenceContent,omitempty" json:"referenceContent,omitempty"` Selector *string `yaml:"selector,omitempty" json:"selector,omitempty"` EntryPoints *string `yaml:"entryPoints,omitempty" json:"entryPoints,omitempty"` MemoryLimit *string `yaml:"memoryLimit,omitempty" json:"memoryLimit,omitempty"` }
type DevfileComponentOpenshift ¶
type DevfileComponentOpenshift struct { Reference *string `yaml:"reference,omitempty" json:"reference,omitempty"` ReferenceContent *string `yaml:"referenceContent,omitempty" json:"referenceContent,omitempty"` Selector *string `yaml:"selector,omitempty" json:"selector,omitempty"` EntryPoints *string `yaml:"entryPoints,omitempty" json:"entryPoints,omitempty"` MemoryLimit *string `yaml:"memoryLimit,omitempty" json:"memoryLimit,omitempty"` }
type DevfileComponentType ¶
type DevfileComponentType string
-------------- Supported devfile component types ------------ // DevfileComponentType stores valid devfile component types
const ( DevfileComponentTypeCheEditor DevfileComponentType = "cheEditor" DevfileComponentTypeChePlugin DevfileComponentType = "chePlugin" DevfileComponentTypeDockerimage DevfileComponentType = "dockerimage" DevfileComponentTypeKubernetes DevfileComponentType = "kubernetes" DevfileComponentTypeOpenshift DevfileComponentType = "openshift" )
type DevfileMetadata ¶
type DevfileMetadata struct { // Workspaces created from devfile, will use it as base and append random suffix. // It's used when name is not defined. GenerateName *string `yaml:"generateName,omitempty" json:"generateName,omitempty"` // The name of the devfile. Workspaces created from devfile, will inherit this // name Name *string `yaml:"name,omitempty" json:"name,omitempty"` }
type DevfileProject ¶
type DevfileProject struct { // The path relative to the root of the projects to which this project should be cloned into. This is a unix-style relative path (i.e. uses forward slashes). The path is invalid if it is absolute or tries to escape the project root through the usage of '..'. If not specified, defaults to the project name." ClonePath *string `yaml:"clonePath,omitempty" json:"clonePath,omitempty"` // The Project Name Name string `yaml:"name" json:"name"` // Describes the project's source - type and location Source DevfileProjectSource `yaml:"source" json:"source"` }
Description of the projects, containing names and sources locations
type DevfileProjectSource ¶
type DevfileProjectSource struct { Type DevfileProjectType `yaml:"type" json:"type"` // Project's source location address. Should be URL for git and github located projects" Location string `yaml:"location" json:"location"` // The name of the of the branch to check out after obtaining the source from the location. // The branch has to already exist in the source otherwise the default branch is used. // In case of git, this is also the name of the remote branch to push to. Branch *string `yaml:"branch,omitempty" json:"branch,omitempty"` // The id of the commit to reset the checked out branch to. // Note that this is equivalent to 'startPoint' and provided for convenience. CommitId *string `yaml:"commitId,omitempty" json:"commitId,omitempty"` // Part of project to populate in the working directory. SparseCheckoutDir *string `yaml:"sparseCheckoutDir,omitempty" json:"sparseCheckoutDir,omitempty"` // The tag or commit id to reset the checked out branch to. StartPoint *string `yaml:"startPoint,omitempty" json:"startPoint,omitempty"` // The name of the tag to reset the checked out branch to. // Note that this is equivalent to 'startPoint' and provided for convenience. Tag *string `yaml:"tag,omitempty" json:"tag,omitempty"` }
type DevfileProjectType ¶
type DevfileProjectType string
-------------- Supported devfile project types ------------ // DevfileProjectType store valid devfile project types
const (
DevfileProjectTypeGit DevfileProjectType = "git"
)
type DockerimageEndpoint ¶
type DockerimageEnv ¶
type DockerimageVolume ¶
Click to show internal directories.
Click to hide internal directories.