-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathcommands.go
208 lines (177 loc) · 6.9 KB
/
commands.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
//
//
// Copyright Red Hat
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package v1alpha2
import (
attributes "github.com/devfile/api/v2/pkg/attributes"
runtime "k8s.io/apimachinery/pkg/runtime"
)
// CommandType describes the type of command.
// Only one of the following command type may be specified.
// +kubebuilder:validation:Enum=Exec;Apply;Composite;Custom
type CommandType string
const (
ExecCommandType CommandType = "Exec"
ApplyCommandType CommandType = "Apply"
CompositeCommandType CommandType = "Composite"
CustomCommandType CommandType = "Custom"
)
// CommandGroupKind describes the kind of command group.
// +kubebuilder:validation:Enum=build;run;test;debug;deploy
type CommandGroupKind string
const (
BuildCommandGroupKind CommandGroupKind = "build"
RunCommandGroupKind CommandGroupKind = "run"
TestCommandGroupKind CommandGroupKind = "test"
DebugCommandGroupKind CommandGroupKind = "debug"
DeployCommandGroupKind CommandGroupKind = "deploy"
)
// +devfile:getter:generate
type CommandGroup struct {
// Kind of group the command is part of
Kind CommandGroupKind `json:"kind"`
// +optional
// Identifies the default command for a given group kind
// +devfile:default:value=false
IsDefault *bool `json:"isDefault,omitempty"`
}
type BaseCommand struct {
// +optional
// Defines the group this command is part of
Group *CommandGroup `json:"group,omitempty"`
}
type LabeledCommand struct {
BaseCommand `json:",inline"`
// +optional
// Optional label that provides a label for this command
// to be used in Editor UI menus for example
Label string `json:"label,omitempty"`
}
type Command struct {
// Mandatory identifier that allows referencing
// this command in composite commands, from
// a parent, or in events.
// +kubebuilder:validation:Pattern=^[a-z0-9]([-a-z0-9]*[a-z0-9])?$
// +kubebuilder:validation:MaxLength=63
Id string `json:"id"`
// Map of implementation-dependant free-form YAML attributes.
// +optional
// +kubebuilder:validation:Type=object
// +kubebuilder:pruning:PreserveUnknownFields
// +kubebuilder:validation:Schemaless
Attributes attributes.Attributes `json:"attributes,omitempty"`
CommandUnion `json:",inline"`
}
// +union
type CommandUnion struct {
// Type of devworkspace command
// +unionDiscriminator
// +optional
CommandType CommandType `json:"commandType,omitempty"`
// CLI Command executed in an existing component container
// +optional
Exec *ExecCommand `json:"exec,omitempty"`
// Command that consists in applying a given component definition,
// typically bound to a devworkspace event.
//
// For example, when an `apply` command is bound to a `preStart` event,
// and references a `container` component, it will start the container as a
// K8S initContainer in the devworkspace POD, unless the component has its
// `dedicatedPod` field set to `true`.
//
// When no `apply` command exist for a given component,
// it is assumed the component will be applied at devworkspace start
// by default, unless `deployByDefault` for that component is set to false.
// +optional
Apply *ApplyCommand `json:"apply,omitempty"`
// Composite command that allows executing several sub-commands
// either sequentially or concurrently
// +optional
Composite *CompositeCommand `json:"composite,omitempty"`
// Custom command whose logic is implementation-dependant
// and should be provided by the user
// possibly through some dedicated plugin
// +optional
// +devfile:overrides:include:omit=true
Custom *CustomCommand `json:"custom,omitempty"`
}
// +devfile:getter:generate
type ExecCommand struct {
LabeledCommand `json:",inline"`
// The actual command-line string
//
// Special variables that can be used:
//
// - `$PROJECTS_ROOT`: A path where projects sources are mounted as defined by container component's sourceMapping.
//
// - `$PROJECT_SOURCE`: A path to a project source ($PROJECTS_ROOT/<project-name>). If there are multiple projects, this will point to the directory of the first one.
CommandLine string `json:"commandLine"`
// Describes component to which given action relates
//
Component string `json:"component"`
// Working directory where the command should be executed
//
// Special variables that can be used:
//
// - `$PROJECTS_ROOT`: A path where projects sources are mounted as defined by container component's sourceMapping.
//
// - `$PROJECT_SOURCE`: A path to a project source ($PROJECTS_ROOT/<project-name>). If there are multiple projects, this will point to the directory of the first one.
// +optional
WorkingDir string `json:"workingDir,omitempty"`
// +optional
// +patchMergeKey=name
// +patchStrategy=merge
// Optional list of environment variables that have to be set
// before running the command
Env []EnvVar `json:"env,omitempty" patchStrategy:"merge" patchMergeKey:"name"`
// +optional
// Specify whether the command is restarted or not when the source code changes.
// If set to `true` the command won't be restarted.
// A *hotReloadCapable* `run` or `debug` command is expected to handle file changes on its own and won't be restarted.
// A *hotReloadCapable* `build` command is expected to be executed only once and won't be executed again.
// This field is taken into account only for commands `build`, `run` and `debug` with `isDefault` set to `true`.
//
// Default value is `false`
// +devfile:default:value=false
HotReloadCapable *bool `json:"hotReloadCapable,omitempty"`
}
type ApplyCommand struct {
LabeledCommand `json:",inline"`
// Describes component that will be applied
//
Component string `json:"component"`
}
// +devfile:getter:generate
type CompositeCommand struct {
LabeledCommand `json:",inline"`
// The commands that comprise this composite command
Commands []string `json:"commands,omitempty" patchStrategy:"replace"`
// Indicates if the sub-commands should be executed concurrently
// +optional
// +devfile:default:value=false
Parallel *bool `json:"parallel,omitempty"`
}
type CustomCommand struct {
LabeledCommand `json:",inline"`
// Class of command that the associated implementation component
// should use to process this command with the appropriate logic
CommandClass string `json:"commandClass"`
// Additional free-form configuration for this custom command
// that the implementation component will know how to use
//
// +kubebuilder:pruning:PreserveUnknownFields
// +kubebuilder:validation:EmbeddedResource
EmbeddedResource runtime.RawExtension `json:"embeddedResource"`
}