-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathilest.yml
58 lines (56 loc) · 1.01 KB
/
ilest.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
57
58
---
kind: Deployment
apiVersion: apps/v1
metadata:
name: boilest-manager
labels:
app: boilest-manager
boilest: manager
spec:
spec:
replicas: 1
strategy:
type: RollingUpdate
selector:
matchLabels:
app: boilest-manager
template:
metadata:
labels:
app: boilest-manager
spec:
containers:
- name: boilest-manager
image: ghcr.io/goingoffroading/boilest-manager:latest
imagePullPolicy: Always
ports:
- containerPort: 5000
- containerPort: 5555
---
apiVersion: v1
kind: Service
metadata:
name: boilest-manager
spec:
ports:
- name: flask
protocol: TCP
port: 5000
nodePort: 31500
selector:
app: boilest-manager
type: NodePort
---
apiVersion: v1
kind: Service
metadata:
name: plex
spec:
ports:
- name: flower
protocol: TCP
port: 5555
nodePort: 31555
selector:
app: boilest-manager
type: NodePort