github.com/looshlee/cilium@v1.6.12/examples/kubernetes/connectivity-check/README.md (about) 1 # Connectivity Checker App 2 3 Deploys a simple echo REST API with multiple replicas. Probe pods with multiple 4 replicas checks connectivity to echo pods with a ClusterIP service. Readiness 5 and liveness probe of probes will fail if connectivity to echo pods are 6 unhealthy. 7 8 ``` 9 $ kubectl create -f connectivity-check.yaml 10 $ kubectl get pods 11 NAME READY STATUS RESTARTS AGE 12 echo-7d9f9564df-2hkhp 1/1 Running 0 37s 13 echo-7d9f9564df-jr87s 1/1 Running 0 37s 14 echo-7d9f9564df-lk6dl 1/1 Running 0 37s 15 echo-7d9f9564df-q5dpb 1/1 Running 0 37s 16 echo-7d9f9564df-zwhtw 1/1 Running 0 37s 17 probe-8689f6579-899hc 1/1 Running 0 37s 18 probe-8689f6579-9wzz7 1/1 Running 0 37s 19 probe-8689f6579-k8ggp 1/1 Running 0 37s 20 probe-8689f6579-sqdfb 1/1 Running 0 37s 21 probe-8689f6579-thv7j 1/1 Running 0 37s 22 ```