...
1---
2apiVersion: apps/v1
3kind: Deployment
4metadata:
5 creationTimestamp: null
6 name: web
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: {}
36status: {}
37---
38
39---
40
41---
View as plain text