diff --git a/scripts/helm/README.md b/scripts/helm/README.md index f4a842546..b3d618665 100644 --- a/scripts/helm/README.md +++ b/scripts/helm/README.md @@ -30,11 +30,11 @@ Installation components are separated by namespaces. **Scripts:** - **install.sh** - Installs OpenReplay in a single node machine, for trial runs / demo. + Installs OpenReplay in a single node machine. This script is a wrapper around the `install.sh` with [k3s](https://k3s.io/) as kubernetes distro. - Note: As of now this script support only ubuntu, as we've to install some packages to enable `NFS`. + Note: As of now this script support only Ubuntu, as we've to install some packages to enable `NFS`. - **kube-install.sh:** diff --git a/scripts/helm/nginx-ingress/nginx-ingress/README.md b/scripts/helm/nginx-ingress/nginx-ingress/README.md index 76c878b5a..89797d6e4 100644 --- a/scripts/helm/nginx-ingress/nginx-ingress/README.md +++ b/scripts/helm/nginx-ingress/nginx-ingress/README.md @@ -4,10 +4,10 @@ This is the frontend of the OpenReplay web app (internet). ## Endpoints -- /streaming -> ios-proxy - /api -> chalice -- /http -> http - / -> frontend (in minio) - /assets -> sessions-assets bucket in minio - /minio -> minio api endpoint - /ingest -> events ingestor +- /assist -> live sessions and webRTC +- /grafana -> monitoring (Enterprise Edition only) \ No newline at end of file diff --git a/scripts/helm/nginx-ingress/nginx-ingress/templates/configmap.yaml b/scripts/helm/nginx-ingress/nginx-ingress/templates/configmap.yaml index fff5ac641..84cc6337d 100644 --- a/scripts/helm/nginx-ingress/nginx-ingress/templates/configmap.yaml +++ b/scripts/helm/nginx-ingress/nginx-ingress/templates/configmap.yaml @@ -52,14 +52,6 @@ data: proxy_set_header Host $host; proxy_pass $target; } - location /streaming/ { - set $target http://ios-proxy-openreplay.app.svc.cluster.local; rewrite ^/streaming/(.*) /$1 break; - proxy_http_version 1.1; - proxy_set_header Upgrade $http_upgrade; - proxy_set_header Connection "Upgrade"; - proxy_set_header Host $host; - proxy_pass $target; - } location /api/ { rewrite ^/api/(.*) /$1 break; proxy_http_version 1.1;