common

package
v1.2.0 Latest Latest
Warning

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

Go to latest
Published: Apr 28, 2020 License: Apache-2.0 Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var SupportedDevfileProjectTypes = []DevfileProjectType{DevfileProjectTypeGit}

Functions

This section is empty.

Types

type ApiVersion

type ApiVersion string

type Attributes

type Attributes map[string]string

----------- Devfile Schema ---------- //

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 DevfileCommandPreviewUrl

type DevfileCommandPreviewUrl struct {
	Port *int32  `yaml:"port,omitempty" json:"port,omitempty"`
	Path *string `yaml:"path,omitempty" json:"path,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 DevfileComponentCheEditor

type DevfileComponentCheEditor struct {
	Id          *string `yaml:"id,omitempty" json:"id,omitempty"`
	Reference   *string `yaml:"reference,omitempty" json:"reference,omitempty"`
	RegistryUrl *string `yaml:"registryUrl,omitempty" json:"registryUrl,omitempty"`
}

type DevfileComponentChePlugin

type DevfileComponentChePlugin struct {
	Id          *string `yaml:"id,omitempty" json:"id,omitempty"`
	Reference   *string `yaml:"reference,omitempty" json:"reference,omitempty"`
	RegistryUrl *string `yaml:"registryUrl,omitempty" json:"registryUrl,omitempty"`
}

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 DockerimageEndpoint struct {
	Name *string `yaml:"name,omitempty" json:"name,omitempty"`
	Port *int32  `yaml:"port,omitempty" json:"port,omitempty"`
}

type DockerimageEnv

type DockerimageEnv struct {
	Name  *string `yaml:"name,omitempty" json:"name,omitempty"`
	Value *string `yaml:"value,omitempty" json:"value,omitempty"`
}

type DockerimageVolume

type DockerimageVolume struct {
	Name          *string `yaml:"name,omitempty" json:"name,omitempty"`
	ContainerPath *string `yaml:"containerPath,omitempty" json:"containerPath,omitempty"`
}

Jump to

Keyboard shortcuts

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