From b2d6c332bd5d7a9a81b40ede69b1e1179b16f9c4 Mon Sep 17 00:00:00 2001 From: raviteja Date: Fri, 8 Nov 2024 16:36:12 -0600 Subject: [PATCH 1/2] Updating api-portal nginx port changes --- docs/install-api-portal.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/install-api-portal.mdx b/docs/install-api-portal.mdx index 857121bfe..0a6c85bdb 100644 --- a/docs/install-api-portal.mdx +++ b/docs/install-api-portal.mdx @@ -56,10 +56,10 @@ By leveraging Levo's API Portal, developers can gain deep insights into their AP ```bash docker run --rm --name=levoai-api-portal \ -e REFRESH_TOKEN='' -e LEVO_ORG_ID='' \ --p 8000:80 levoai/api-portal:latest +-p 8080:8080 levoai/api-portal:latest ``` -- Navigate to `http://localhost:8000` to view the API docs. +- Navigate to `http://localhost:8080` to view the API docs. Note: * If user is part of multiple orgs, you would have to add `-e LEVO_ORG_ID=''` otherwise optional. @@ -87,10 +87,10 @@ helm install levoai-api-portal levoai/levoai-api-portal \ --set levoOrgId="your_org_id" ``` -- Port forward and navigate to `http://localhost:8000` to view the API docs. +- Port forward and navigate to `http://localhost:8080` to view the API docs. ```bash -kubectl port-forward services/levoai-api-portal 8000:80 +kubectl port-forward services/levoai-api-portal 8080:80 ``` ### Install via Terraform From d4e7a5d25c642a77f3bb049b5281756541f2b86f Mon Sep 17 00:00:00 2001 From: raviteja Date: Fri, 8 Nov 2024 16:58:56 -0600 Subject: [PATCH 2/2] Updating helm repo add cmd --- docs/install-api-portal.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/install-api-portal.mdx b/docs/install-api-portal.mdx index 0a6c85bdb..e3b9b1d1b 100644 --- a/docs/install-api-portal.mdx +++ b/docs/install-api-portal.mdx @@ -76,7 +76,7 @@ Note: - Add Levo Helm repo ```bash -helm repo add levoai https://levoai.github.io/helm-charts/ +helm repo add levoai https://charts.levo.ai && helm repo update levoai ``` - Run following command to install the API Portal Helm Chart