forked from devfile/library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devfile.yaml
121 lines (120 loc) · 2.92 KB
/
devfile.yaml
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
#
# 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.
schemaVersion: 2.2.0-latest
metadata:
name: nodejs
version: 1.0.0
attributes:
alpha.build-dockerfile: /relative/path/to/Dockerfile
variables:
test: testValue
parent:
# uri: https://raw.githubusercontent.com/odo-devfiles/registry/master/devfiles/nodejs/devfile.yaml
id: nodejs
registryUrl: "https://registry.devfile.io"
version: latest
commands:
- id: install
exec:
component: runtime
commandLine: npm install
workingDir: /project-starter
group:
kind: build
isDefault: true
starterProjects:
- name: nodejs-starter2
git:
remotes:
origin: https://github.com/odo-devfiles/nodejs-ex.git
components:
- name: runtime2
attributes:
tool: console-import
import:
strategy: Dockerfile
container:
endpoints:
- name: http-8888
targetPort: 8888
image: registry.access.redhat.com/ubi8/nodejs-12:1-45
memoryLimit: 1024Mi
mountSources: true
sourceMapping: /project
command:
- npm install
- name: runtime3
attributes:
tool: odo
cli:
usage: deploy
container:
endpoints:
- name: http-8080
targetPort: 8080
image: registry.access.redhat.com/ubi8/nodejs-12:1-45
memoryLimit: 1024Mi
mountSources: true
sourceMapping: /project
- name: runtime4
attributes:
tool: workspace-operator
container:
endpoints:
- name: http-9090
targetPort: 9090
image: "{{invalid-var}}"
memoryLimit: 1024Mi
mountSources: true
sourceMapping: /project
commands:
- exec:
commandLine: npm install
component: runtime2
group:
isDefault: false
kind: build
workingDir: "{{test}}"
id: install2
attributes:
tool: odo
mandatory: false
- exec:
commandLine: npm start
component: runtime2
group:
isDefault: false
kind: run
workingDir: /project
id: run2
attributes:
tool: odo
mandatory: true
- exec:
commandLine: npm run debug
component: runtime2
group:
isDefault: false
kind: debug
workingDir: /project
id: debug2
- exec:
commandLine: npm test
component: runtime2
group:
isDefault: false
kind: test
workingDir: /project
id: test2