Skip to content

Commit

Permalink
Merge pull request #273 from levoai/bbr/ingress_setup
Browse files Browse the repository at this point in the history
Changes to add Levo's Satellite to ingress
  • Loading branch information
buchi-busireddy authored Oct 11, 2024
2 parents 25c71e7 + 13b95aa commit f3d803e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docs/install-satellite/satellite-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,28 @@ helm upgrade --install -n levoai --create-namespace \
levoai-satellite levoai/levoai-satellite
```

### 7. Optionally, access Satellite through a CNAME and HTTPS
Add below config to `values.yml` file to add an ingress route for Satellite APIs so that it can be accessed through a CNAME and HTTPS.

```yaml
haproxy:
ingress:
enabled: true
hostname: <Your CNAME>
ingressClassName: haproxy
pathType: Prefix
extraPaths:
- path: /*
pathType: Prefix
backend:
service:
name: levoai-haproxy
port:
number: 80
```

Please reach out to [email protected] if you're using a custom ingress controller.

Please proceed to [install Traffic Capture Sensors](/install-traffic-capture-sensors).

---------------------------------------------------------
Expand Down

0 comments on commit f3d803e

Please sign in to comment.