From e9f13e56a9b0156b73c425ec824296a981facc20 Mon Sep 17 00:00:00 2001 From: Nir Soffer Date: Wed, 21 May 2025 21:34:12 +0300 Subject: [PATCH] site: Add example to ingress tutorial (#20814) We show how to connect to redis with telnet, so let's show some commands to make it more interesting. This is modified example from redis docs: https://redis.io/docs/latest/develop/get-started/data-store/#store-and-retrieve-data --- .../content/en/docs/tutorials/nginx_tcp_udp_ingress.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/site/content/en/docs/tutorials/nginx_tcp_udp_ingress.md b/site/content/en/docs/tutorials/nginx_tcp_udp_ingress.md index 74a82c0688..640ac08e65 100644 --- a/site/content/en/docs/tutorials/nginx_tcp_udp_ingress.md +++ b/site/content/en/docs/tutorials/nginx_tcp_udp_ingress.md @@ -202,6 +202,16 @@ Connected to 192.168.99.179. Escape character is '^]' ``` +You can chat with the redis service: + +```text +SET minikube:1 "it works!" ++OK +GET minikube:1 +$9 +it works! +``` + To exit telnet enter the `Ctrl` key and `]` at the same time. Then type `quit` and press enter. If you were not able to connect please review your steps above.