Skip to content

Commit 0454753

Browse files
committed
Update helm instructions for kind
1 parent bf22ae4 commit 0454753

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

helm/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,13 @@ helm install amazee-ai . -n amazee-ai --create-namespace \
111111
#### 4. Local deployment with kind
112112
```bash
113113
kind create cluster --name amazee-ai-local
114+
# Pull the charts etc, and set the backend URL to localhost
115+
helm install amazee-ai oci://ghcr.io/amazeeio/amazee.ai/amazee-ai --namespace amazee-ai --create-namespace --set frontend.apiUrl="http://localhost:8800"
116+
# Wait for all pods to initialise fully, then forward ports
117+
k port-forward deployment/amazee-ai-frontend 3000:3000 -n amazee-ai
118+
k port-forward deployment/amazee-ai-cbackend 8800:8800 -n amazee-ai
114119
```
120+
The system should now be accessable at http://localhost:3000
115121

116122
## Configuration
117123

0 commit comments

Comments
 (0)