...

Text file src/github.com/linkerd/linkerd2/cli/cmd/testdata/inject_emojivoto_deployment_config_overrides.input.yml

Documentation: github.com/linkerd/linkerd2/cli/cmd/testdata

     1apiVersion: apps/v1
     2kind: Deployment
     3metadata:
     4  name: web
     5  namespace: emojivoto
     6spec:
     7  replicas: 1
     8  selector:
     9    matchLabels:
    10      app: web-svc
    11  template:
    12    metadata:
    13      annotations:
    14        config.linkerd.io/admin-port: "9998"
    15        config.linkerd.io/proxy-cpu-limit: "1"
    16        config.linkerd.io/proxy-cpu-request: "0.5"
    17        config.linkerd.io/proxy-memory-limit: 256Mi
    18        config.linkerd.io/proxy-memory-request: 64Mi
    19        config.linkerd.io/proxy-version: override
    20        config.linkerd.io/skip-inbound-ports: 7777,8888
    21        config.linkerd.io/skip-outbound-ports: "9999"
    22      labels:
    23        app: web-svc
    24    spec:
    25      containers:
    26      - env:
    27        - name: WEB_PORT
    28          value: "80"
    29        - name: EMOJISVC_HOST
    30          value: emoji-svc.emojivoto:8080
    31        - name: VOTINGSVC_HOST
    32          value: voting-svc.emojivoto:8080
    33        - name: INDEX_BUNDLE
    34          value: dist/index_bundle.js
    35        image: buoyantio/emojivoto-web:v10
    36        name: web-svc
    37        ports:
    38        - containerPort: 80
    39          name: http
    40---

View as plain text