k8s.io/kubernetes@v1.29.3/test/e2e/testing-manifests/ingress/http2/rc.yaml (about)

     1  apiVersion: apps/v1
     2  kind: Deployment
     3  metadata:
     4    name: echoheaders
     5  spec:
     6    replicas: 1
     7    selector:
     8      matchLabels:
     9        app: echoheaders
    10    template:
    11      metadata:
    12        labels:
    13          app: echoheaders
    14      spec:
    15        containers:
    16        - name: echoheaders
    17          image: registry.k8s.io/e2e-test-images/agnhost:2.39
    18          command:
    19          - /agnhost
    20          - netexec
    21          - --http-port=8443
    22          - --tls-cert-file=/localhost.crt
    23          - --tls-private-key-file=/localhost.key
    24          ports:
    25          - containerPort: 8443