...
1---
2apiVersion: apps/v1
3kind: Deployment
4metadata:
5 creationTimestamp: null
6 name: web1
7 namespace: emojivoto
8spec:
9 replicas: 1
10 selector:
11 matchLabels:
12 app: web-svc
13 strategy: {}
14 template:
15 metadata:
16 creationTimestamp: null
17 labels:
18 app: web-svc
19 spec:
20 containers:
21 - env:
22 - name: WEB_PORT
23 value: "80"
24 - name: EMOJISVC_HOST
25 value: emoji-svc.emojivoto:8080
26 - name: VOTINGSVC_HOST
27 value: voting-svc.emojivoto:8080
28 - name: INDEX_BUNDLE
29 value: dist/index_bundle.js
30 image: buoyantio/emojivoto-web:v10
31 name: web-svc
32 ports:
33 - containerPort: 80
34 name: http
35 resources: {}
36 - image: cr.l5d.io/linkerd/proxy:foo
37 name: linkerd-proxy
38status: {}
39---
40apiVersion: apps/v1
41kind: Deployment
42metadata:
43 creationTimestamp: null
44 name: web2
45 namespace: emojivoto
46spec:
47 replicas: 1
48 selector:
49 matchLabels:
50 app: web-svc
51 strategy: {}
52 template:
53 metadata:
54 creationTimestamp: null
55 labels:
56 app: web-svc
57 spec:
58 containers:
59 - env:
60 - name: WEB_PORT
61 value: "80"
62 - name: EMOJISVC_HOST
63 value: emoji-svc.emojivoto:8080
64 - name: VOTINGSVC_HOST
65 value: voting-svc.emojivoto:8080
66 - name: INDEX_BUNDLE
67 value: dist/index_bundle.js
68 image: buoyantio/emojivoto-web:v10
69 name: web-svc
70 ports:
71 - containerPort: 80
72 name: http
73 resources: {}
74 - name: linkerd-proxy
75status: {}
76---
77apiVersion: apps/v1
78kind: Deployment
79metadata:
80 creationTimestamp: null
81 name: web3
82 namespace: emojivoto
83spec:
84 replicas: 1
85 selector:
86 matchLabels:
87 app: web-svc
88 strategy: {}
89 template:
90 metadata:
91 creationTimestamp: null
92 labels:
93 app: web-svc
94 spec:
95 containers:
96 - env:
97 - name: WEB_PORT
98 value: "80"
99 - name: EMOJISVC_HOST
100 value: emoji-svc.emojivoto:8080
101 - name: VOTINGSVC_HOST
102 value: voting-svc.emojivoto:8080
103 - name: INDEX_BUNDLE
104 value: dist/index_bundle.js
105 image: buoyantio/emojivoto-web:v10
106 name: web-svc
107 ports:
108 - containerPort: 80
109 name: http
110 resources: {}
111 initContainers:
112 - image: cr.l5d.io/linkerd/proxy-init:foo
113 name: linkerd-init
114status: {}
115---
116apiVersion: apps/v1
117kind: Deployment
118metadata:
119 creationTimestamp: null
120 name: web4
121 namespace: emojivoto
122spec:
123 replicas: 1
124 selector:
125 matchLabels:
126 app: web-svc
127 strategy: {}
128 template:
129 metadata:
130 creationTimestamp: null
131 labels:
132 app: web-svc
133 spec:
134 containers:
135 - env:
136 - name: WEB_PORT
137 value: "80"
138 - name: EMOJISVC_HOST
139 value: emoji-svc.emojivoto:8080
140 - name: VOTINGSVC_HOST
141 value: voting-svc.emojivoto:8080
142 - name: INDEX_BUNDLE
143 value: dist/index_bundle.js
144 image: buoyantio/emojivoto-web:v10
145 name: web-svc
146 ports:
147 - containerPort: 80
148 name: http
149 resources: {}
150 initContainers:
151 - name: linkerd-init
152status: {}
153---
View as plain text