Commit 43b54357 authored by Kostas Chartsias's avatar Kostas Chartsias
Browse files

fix: Stop tracking vendored Helm dependencies and minor documentation additions

parent b63c4eea
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -50,3 +50,9 @@ certs/*.crt
patch*

ai2_proxy*

# Helm packaged charts
*.tgz

# Helm dependency artifacts
charts/*.tgz
 No newline at end of file
+3 −3
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ helm dependency update ./deployment/helm/ai2
```

```bash
helm install ai2 ./helm/ai2 \
helm install ai2test ./helm/ai2 \
  --namespace ai2test \
  --create-namespace \
  --set secrets.groqApiKey=<your-groq-api-key> \
@@ -37,7 +37,7 @@ helm install ai2 ./helm/ai2 \
## Upgrade

```bash
helm upgrade ai2 ./helm/ai2 \
helm upgrade ai2test ./helm/ai2 \
  --namespace ai2test \
  --set secrets.groqApiKey=<your-groq-api-key> \
  --set config.mcp.oegServiceUrl=http://<new-oeg-host>/oeg/1.0.0
@@ -46,7 +46,7 @@ helm upgrade ai2 ./helm/ai2 \
## Uninstall

```bash
helm uninstall ai2 --namespace ai2test
helm uninstall ai2test --namespace ai2test
```

## Key Values
−102 KiB

File deleted.

+2 −2
Original line number Diff line number Diff line
@@ -44,8 +44,8 @@ service:
  mcp:
    type: NodePort
    port: 8004
    nodePort: 32004
    nodePort: 32014
  aiAgent:
    type: NodePort
    port: 9013
    nodePort: 32013
    nodePort: 32023