-
Notifications
You must be signed in to change notification settings - Fork 88
/
devfile.yaml
61 lines (61 loc) · 1.6 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
#
# Copyright (c) 2019-2023 Red Hat, Inc.
# This program and the accompanying materials are made
# available under the terms of the Eclipse Public License 2.0
# which is available at https://www.eclipse.org/legal/epl-2.0/
#
# SPDX-License-Identifier: EPL-2.0
#
# Contributors:
# Red Hat, Inc. - initial API and implementation
#
schemaVersion: 2.3.0
attributes:
controller.devfile.io/storage-type: per-workspace
metadata:
name: che-operator
components:
- name: tooling-container
container:
image: quay.io/eclipse/che-operator-dev:latest
memoryRequest: 2Gi
memoryLimit: 16Gi
cpuRequest: 2000m
cpuLimit: 6000m
env:
- name: GO111MODULE
value: 'on'
- name: GOPATH
value: /home/user/go
- name: GOCACHE
value: /tmp/.cache
- name: IMAGE_TOOL
value: podman
- name: KUBECONFIG
value: /home/user/.kube/config
commands:
- id: go-build
exec:
label: Build Eclipse Che Operator binary
component: tooling-container
commandLine: make build
- id: go-run
exec:
label: Run Eclipse Che Operator
component: tooling-container
commandLine: make run
- id: go-test
exec:
label: Run unit tests
component: tooling-container
commandLine: make test
- id: go-debug
exec:
label: Run and debug Eclipse Che Operator
component: tooling-container
commandLine: make debug
- id: update-dev-resources
exec:
label: Update all development resources
component: tooling-container
commandLine: make update-dev-resources