diff --git a/content/kubernetes/networking/ingressorroutespec.md b/content/kubernetes/networking/ingressorroutespec.md index 7180dd6aedf..cc576c39bd3 100644 --- a/content/kubernetes/networking/ingressorroutespec.md +++ b/content/kubernetes/networking/ingressorroutespec.md @@ -20,7 +20,7 @@ An Ingress is an API resource that provides a standardized and flexible way to m Redis Enterprise for Kubernetes supports the Ingress controllers below: * [HAProxy](https://haproxy-ingress.github.io/) -* [NGINX](https://kubernetes.github.io/Ingress-nginx/) +* [NGINX](https://kubernetes.github.io/ingress-nginx/) * [Istio](https://istio.io/latest/docs/setup/getting-started/) OpenShift users can use [routes]({{}}) instead of an Ingress. @@ -61,7 +61,7 @@ Edit the RedisEnterpriseCluster (REC) spec to add the `ingressOrRouteSpec` field * Define the REC API hostname (`apiFqdnUrl`) and database hostname suffix (`dbFqdnSuffix`) you chose when configuring DNS. * Set `method` to `ingress`. * Set `ssl-passthrough` to "true". -* Add any additional annotations required for your ingress controller. See [NGINX docs](https://docs.nginx.com/nginx-ingress-controller/configuration/ingress-resources/advanced-configuration-with-annotations/) or [HAproxy docs](https://www.haproxy.com/documentation/kubernetes/latest/community/configuration-reference/ingress/) for more information. +* Add any additional annotations required for your ingress controller. See [NGINX docs](https://kubernetes.github.io/ingress-nginx/user-guide/nginx-configuration/annotations/) or [HAproxy docs](https://haproxy-ingress.github.io/docs/configuration/keys/) for more information. ```sh kubectl patch rec --type merge --patch "{\"spec\": \ @@ -69,9 +69,9 @@ kubectl patch rec --type merge --patch "{\"spec\": \ {\"apiFqdnUrl\": \"api--.example.com\", \ \"dbFqdnSuffix\": \"-db--.example.com\", \ \"ingressAnnotations\": \ - {\"kubernetes.io/ingress.class\": \ + {\".io/ingress.class\": \ \"\", \ - \".ingress.kubernetes.io/ssl-passthrough\": \ \"true\"}, \ + \"/ssl-passthrough\": \ \"true\"}, \ \"method\": \"ingress\"}}}" ```