istio.io/istio@v0.0.0-20240520182934-d79c90f27776/istioctl/pkg/kubeinject/testdata/deployment/hello-with-proxyconfig-anno.yaml (about)

     1  apiVersion: apps/v1
     2  kind: Deployment
     3  metadata:
     4    name: hello
     5  spec:
     6    replicas: 7
     7    selector:
     8      matchLabels:
     9        app: hello
    10        tier: backend
    11        track: stable
    12    template:
    13      metadata:
    14        annotations:
    15          proxy.istio.io/config: '{ "holdApplicationUntilProxyStarts": true }'
    16        labels:
    17          app: hello
    18          tier: backend
    19          track: stable
    20      spec:
    21        containers:
    22          - name: hello
    23            image: "fake.docker.io/google-samples/hello-go-gke:1.0"
    24            ports:
    25              - name: http
    26                containerPort: 80