Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(docs): update testing Nesis helm deployment ports #63

Merged
merged 2 commits into from
Apr 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/src/installing/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,18 +63,18 @@ nesis-rag-757584f46c-9kqtf 1/1 Running 0 45s
## Testing your Nesis

1. Port forward services;
```commandline title="Nesis Frontend"
kubectl port-forward svc/nesis-minio 8000
```commandline title="MinIO Frontend"
kubectl port-forward svc/nesis-minio 9001
```

2. Point your browser to <a href="http://localhost:8000" target="_blank">http://localhost:8000</a> and login with `[email protected]`:`password`.
2. Point your browser to <a href="http://localhost:9001" target="_blank">http://localhost:9001</a> and login with `admin`:`password`.

3. In another terminal;
```commandline title="MinIO Frontend"
kubectl port-forward svc/nesis-frontend 9001
```commandline title="Nesis Frontend"
kubectl port-forward svc/nesis-frontend 8000
```

4. Point your browser to <a href="http://localhost:9001" target="_blank">http://localhost:9001</a> and login with `admin`:`password`.
4. Point your browser to <a href="http://localhost:8000" target="_blank">http://localhost:8000</a> and login with `[email protected]`:`password`.

5. Upload documents into the MinIO bucket `private-documents`.
6. In the `Nesis Frontend` add a datasource with;
Expand Down