-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeployment.yaml
More file actions
52 lines (52 loc) · 1.3 KB
/
deployment.yaml
File metadata and controls
52 lines (52 loc) · 1.3 KB
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
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: streaming
labels:
app: streaming
spec:
replicas: 1
selector:
matchLabels:
app: streaming
template:
metadata:
labels:
app: streaming
spec:
terminationGracePeriodSeconds: 30
containers:
- image: gcr.io/inda-proj/streaming
name: streaming
imagePullPolicy: "Always"
ports:
- containerPort: 6060
name: hls
- containerPort: 1935
name: rtmp
- containerPort: 1339
name: stream-logic
- image: gcr.io/inda-proj/database
imagePullPolicy: "Always"
name: database
ports:
- containerPort: 55994
name: lovedb
- image: gcr.io/inda-proj/login
imagePullPolicy: "Always"
name: login
ports:
- containerPort: 8021
name: login
- image: gcr.io/inda-proj/comments
imagePullPolicy: "Always"
name: comments
ports:
- containerPort: 8080
name: comments
- image: gcr.io/inda-proj/chat
imagePullPolicy: "Always"
name: chat
ports:
- containerPort: 9876
name: chat