...

Text file src/github.com/linkerd/linkerd2/test/integration/deep/opaqueports/testdata/opaque_ports_client.yaml

Documentation: github.com/linkerd/linkerd2/test/integration/deep/opaqueports/testdata

     1apiVersion: apps/v1
     2kind: Deployment
     3metadata:
     4  name: slow-cooker-opaque-service
     5spec:
     6  selector:
     7    matchLabels:
     8      app: slow-cooker-opaque-service
     9  template:
    10    metadata:
    11      annotations:
    12        linkerd.io/inject: "enabled"
    13      labels:
    14        app: slow-cooker-opaque-service
    15    spec:
    16      containers:
    17      - name: slow-cooker-opaque-service
    18        image: buoyantio/slow_cooker:1.3.0
    19        args:
    20        - -qps=1
    21        - -metric-addr=0.0.0.0:9999
    22        - http://{{ .ServiceCookerOpaqueServiceTargetHost}}:8080
    23        ports:
    24        - containerPort: 9999
    25---
    26apiVersion: apps/v1
    27kind: Deployment
    28metadata:
    29  name: slow-cooker-opaque-pod
    30spec:
    31  selector:
    32    matchLabels:
    33      app: slow-cooker-opaque-pod
    34  template:
    35    metadata:
    36      annotations:
    37        linkerd.io/inject: "enabled"
    38      labels:
    39        app: slow-cooker-opaque-pod
    40    spec:
    41      containers:
    42      - name: slow-cooker-opaque-pod
    43        image: buoyantio/slow_cooker:1.3.0
    44        args:
    45        - -qps=1
    46        - -metric-addr=0.0.0.0:9999
    47        - http://{{ .ServiceCookerOpaquePodTargetHost}}:8080
    48        ports:
    49        - containerPort: 9999
    50---
    51apiVersion: apps/v1
    52kind: Deployment
    53metadata:
    54  name: slow-cooker-opaque-unmeshed-svc
    55spec:
    56  selector:
    57    matchLabels:
    58      app: slow-cooker-opaque-unmeshed-svc
    59  template:
    60    metadata:
    61      annotations:
    62        linkerd.io/inject: "enabled"
    63      labels:
    64        app: slow-cooker-opaque-unmeshed-svc
    65    spec:
    66      containers:
    67      - name: slow-cooker-opaque-unmeshed-svc
    68        image: buoyantio/slow_cooker:1.3.0
    69        args:
    70        - -qps=1
    71        - -metric-addr=0.0.0.0:9999
    72        - http://{{ .ServiceCookerOpaqueUnmeshedSVCTargetHost}}:8080
    73        ports:
    74        - containerPort: 9999

View as plain text