github.com/cilium/cilium@v1.16.2/Documentation/network/servicemesh/echo-app.rst (about)

     1  Deploy the Echo App
     2  ===================
     3  
     4  We will use a deployment made of echo servers.
     5  
     6  The application will reply to the client and, in the body of the reply, will include information about the Pod and Node receiving the original request. 
     7  We will use this information to illustrate how the traffic is manipulated by the Gateway. 
     8  
     9  .. parsed-literal::
    10  
    11      $ kubectl apply -f \ |SCM_WEB|\/examples/kubernetes/gateway/echo.yaml
    12  
    13  Verify the Pods are running as expected. 
    14  
    15  .. code-block:: shell-session
    16  
    17      $ kubectl get pods
    18      NAME                      READY   STATUS    RESTARTS   AGE
    19      echo-1-7d88f779b-m6r46    1/1     Running   0          21s
    20      echo-2-5bfb6668b4-n7llh   1/1     Running   0          21s
    21