linkerd2/cli/cmd/testdata/inject_emojivoto_istio.inpu...

37 lines
821 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: web
namespace: emojivoto
spec:
replicas: 1
selector:
matchLabels:
app: web-svc
template:
metadata:
labels:
app: web-svc
spec:
containers:
- env:
- name: WEB_PORT
value: "80"
- name: EMOJISVC_HOST
value: emoji-svc.emojivoto:8080
- name: VOTINGSVC_HOST
value: voting-svc.emojivoto:8080
- name: INDEX_BUNDLE
value: dist/index_bundle.js
image: buoyantio/emojivoto-web:v10
name: web-svc
ports:
- containerPort: 80
name: http
- image: gcr.io/istio-release/proxyv2:1.0.2
name: istio-proxy
initContainers:
- image: gcr.io/istio-release/proxy_init:1.0.2
name: istio-init
---