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
pull/20816/head
Nir Soffer 2025-05-21 21:34:12 +03:00 committed by GitHub
parent 3496901b73
commit e9f13e56a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 0 deletions

View File

@ -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.