...
1{
2 "kind":"ServiceList",
3 "apiVersion":"v1",
4 "items":[
5 {
6 "kind":"Service",
7 "apiVersion":"v1",
8 "metadata":{
9 "name":"mock",
10 "labels":{
11 "app":"mock",
12 "status":"replaced"
13 }
14 },
15 "spec":{
16 "ports": [{
17 "protocol": "TCP",
18 "port": 99,
19 "targetPort": 9949
20 }],
21 "selector":{
22 "app":"mock"
23 }
24 }
25 },
26 {
27 "kind":"Service",
28 "apiVersion":"v1",
29 "metadata":{
30 "name":"mock2",
31 "labels":{
32 "app":"mock2",
33 "status":"replaced"
34 }
35 },
36 "spec":{
37 "ports": [{
38 "protocol": "TCP",
39 "port": 99,
40 "targetPort": 9949
41 }],
42 "selector":{
43 "app":"mock2"
44 }
45 }
46 }
47 ]
48}
View as plain text