-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathilla-builder.yaml
More file actions
43 lines (43 loc) · 870 Bytes
/
illa-builder.yaml
File metadata and controls
43 lines (43 loc) · 870 Bytes
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
---
# illa-builder deployment
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: default
name: illa-builder
spec:
selector:
matchLabels:
app.kubernetes.io/name: illa-builder
replicas: 1
template:
metadata:
labels:
app.kubernetes.io/name: illa-builder
infrastructure: fargate
spec:
containers:
- image: docker.io/illasoft/illa-builder:latest
imagePullPolicy: Always
name: illa-builder
ports:
- containerPort: 2022
env:
- name: ILLA_DEPLOY_MODE
value: "self-host"
---
# illa-builder service
apiVersion: v1
kind: Service
metadata:
namespace: default
name: illa-builder
spec:
ports:
- port: 2022
targetPort: 2022
protocol: TCP
type: NodePort
selector:
app.kubernetes.io/name: illa-builder
infrastructure: fargate