forked from psturc/retrodep
-
Notifications
You must be signed in to change notification settings - Fork 6
/
devfile.yaml
52 lines (52 loc) · 1.14 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
schemaVersion: 2.2.0
metadata:
language: Go
name: retrodep
projectType: test-hermetic-build
version: 0.0.1
components:
- name: outerloop-build
image:
imageName: retrodep:latest
dockerfile:
uri: Dockerfile
buildContext: .
- name: outerloop-deploy
kubernetes:
inlined: |-
kind: Deployment
apiVersion: apps/v1
metadata:
name: my-retrodep
spec:
replicas: 1
selector:
matchLabels:
app: my-retrodep
template:
metadata:
labels:
app: my-retrodep
spec:
containers:
- name: my-retrodep
image: retrodep:latest
resources:
limits:
memory: "1024Mi"
cpu: "500m"
commands:
- id: build-image
apply:
component: outerloop-build
- id: deployk8s
apply:
component: outerloop-deploy
- id: deploy
composite:
commands:
- build-image
- deployk8s
group:
kind: deploy
isDefault: true