-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #273 from levoai/bbr/ingress_setup
Changes to add Levo's Satellite to ingress
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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). | ||
|
||
--------------------------------------------------------- | ||
|