forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathperf_k8svcs.yaml
66 lines (66 loc) · 1.48 KB
/
perf_k8svcs.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
57
58
59
60
61
62
63
64
65
66
# 2 services will get istio injected
---
apiVersion: v1
kind: Service
metadata:
name: echosrv1
spec:
ports:
- port: 8080
name: http-echo
- port: 8079
name: grpc-ping
selector:
app: echosrv1
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: echo-svc-deployment1
spec:
replicas: 1 # tells deployment to run 1 pods matching the template
template: # create pods using pod definition in this template
metadata:
# a unique name is generated from the deployment name
labels:
app: echosrv1
spec:
containers:
- name: echosrv
image: fortio/fortio:latest_release
imagePullPolicy: Always # needed despite what is documented to really get latest
ports:
- containerPort: 8080
---
apiVersion: v1
kind: Service
metadata:
name: echosrv2
spec:
ports:
- port: 8080
name: http-echo
- port: 8079
name: grpc-ping
selector:
app: echosrv2
---
apiVersion: apps/v1beta1
kind: Deployment
metadata:
name: echo-svc-deployment2
spec:
replicas: 1 # tells deployment to run 1 pods matching the template
template: # create pods using pod definition in this template
metadata:
# a unique name is generated from the deployment name
labels:
app: echosrv2
spec:
containers:
- name: echosrv
image: fortio/fortio:latest_release
imagePullPolicy: Always # needed despite what is documented to really get latest
ports:
- containerPort: 8080
---