From 6433f69d6cacddf111a4153e6258a4b58e516284 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=BE=84=E6=BD=AD?= Date: Tue, 1 Nov 2022 21:37:27 +0800 Subject: [PATCH] Update README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 185fbb7c4..b93bef795 100644 --- a/README.md +++ b/README.md @@ -53,6 +53,22 @@ https://istio.io/latest/docs/setup/install ### step 2. install higress +```bash helm install higress -n higress-system oci://higress-registry.cn-hangzhou.cr.aliyuncs.com/charts/higress +``` +### step 3. create an ingress and test it + +```yaml +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: test-ingress +spec: + defaultBackend: + service: + name: test + port: + number: 80 +```