-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.yml
56 lines (56 loc) · 1.01 KB
/
manifest.yml
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
apiVersion: v1
kind: Service
metadata:
name: ttm-service
labels:
app: ttm
spec:
ports:
- port: 8080
selector:
app: ttm-server
---
apiVersion: v1
kind: Route
metadata:
name: ttm-route
labels:
app: ttm
spec:
host: traveltimematrix.rahtiapp.fi
tls:
termination: edge
insecureEdgeTerminationPolicy: Redirect
to:
kind: Service
name: ttm-service
# weight: 100
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: ttm-deployment
labels:
app: ttm
spec:
selector:
matchLabels:
app: ttm-server
replicas: 2
template:
metadata:
labels:
app: ttm-server
spec:
containers:
- name: ttm-server
image: ghcr.io/eemilhaa/travel-time-matrix-visualisation-frontend:main
imagePullPolicy: Always # Change this when stable
ports:
- containerPort: 8080 # See Dockerfile
requests:
memory: "200M"
cpu: "200m"
limits:
memory: "1G"
cpu: "1"