forked from telepresenceio/telepresence
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathecho-double.yaml
56 lines (56 loc) · 1.13 KB
/
echo-double.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
53
54
55
56
# The echo-double service exposes two ports, 80 and 81 and directs them to two separate containers
---
apiVersion: v1
kind: Service
metadata:
name: "echo-double"
spec:
type: ClusterIP
selector:
service: echo-double
ports:
- name: http
port: 80
targetPort: http
- name: extra
port: 81
targetPort: extra
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: "echo-double"
labels:
service: echo-double
spec:
replicas: 1
selector:
matchLabels:
service: echo-double
template:
metadata:
labels:
service: echo-double
spec:
containers:
- name: echo-one
image: multi:5000/tel2/echo
ports:
- containerPort: 8080
name: http
resources:
limits:
cpu: 50m
memory: 128Mi
- name: echo-two
image: multi:5000/tel2/echo
ports:
- containerPort: 8081
name: extra
env:
- name: PORT
value: "8081"
resources:
limits:
cpu: 50m
memory: 128Mi