...

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

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

     1apiVersion: v1
     2items:
     3- apiVersion: apps/v1
     4  kind: Deployment
     5  metadata:
     6    name: web
     7    namespace: emojivoto
     8  spec:
     9    replicas: 1
    10    selector:
    11      matchLabels:
    12        app: web-svc
    13    template:
    14      metadata:
    15        labels:
    16          app: web-svc
    17      spec:
    18        containers:
    19        - env:
    20          - name: WEB_PORT
    21            value: "80"
    22          - name: EMOJISVC_HOST
    23            value: emoji-svc.emojivoto:8080
    24          - name: VOTINGSVC_HOST
    25            value: voting-svc.emojivoto:8080
    26          - name: INDEX_BUNDLE
    27            value: dist/index_bundle.js
    28          image: buoyantio/emojivoto-web:v10
    29          name: web-svc
    30          ports:
    31          - containerPort: 80
    32            name: http
    33- apiVersion: apps/v1
    34  kind: Deployment
    35  metadata:
    36    name: emoji
    37    namespace: emojivoto
    38  spec:
    39    replicas: 1
    40    selector:
    41      matchLabels:
    42        app: emoji-svc
    43    template:
    44      metadata:
    45        labels:
    46          app: emoji-svc
    47      spec:
    48        containers:
    49        - env:
    50          - name: GRPC_PORT
    51            value: "8080"
    52          image: buoyantio/emojivoto-emoji-svc:v10
    53          name: emoji-svc
    54          ports:
    55          - containerPort: 8080
    56            name: grpc
    57            protocol: TCP
    58kind: List
    59metadata: {}
    60---

View as plain text