Skip to content

Commit

Permalink
Addressing comments
Browse files Browse the repository at this point in the history
  • Loading branch information
gannaraputeja committed Nov 8, 2024
1 parent 2e01225 commit 5a2c6b7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/guides/general/private-registry.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ region="us-west-2"
registry="your.registry"

helm repo add levoai https://charts.levo.ai || true
helm repo update
helm repo update levoai
images=($(helm template levoai/levoai-satellite | yq -N '..|.image? | select(.)' | sort -u))
images+=($(helm template levoai/levoai-ebpf-sensor | yq -N '..|.image? | select(.)' | sort -u))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ Please proceed to the next step, if there are no errors.
- <Download /> the docker-compose and configuration files.
- Run below command to install log-parser containers filebeat and logstash.
```bash
docker compose -f docker-compose.yml up -d
docker compose up -d
```

#### 3. Verify the installation
Expand All @@ -119,7 +119,7 @@ docker logs -f levoai-filebeat
#### 4. Uninstallation steps
- Clean up the containers by running below command.
```bash
docker compose -f docker-compose.yml down
docker compose down
docker volume rm log-parser_filebeat-data log-parser_logstash-queue && rm -rf filebeat/data/ && rm -rf logstash/data/
```

Expand All @@ -135,7 +135,7 @@ docker volume rm log-parser_filebeat-data log-parser_logstash-queue && rm -rf fi

#### 2. Add levoai Helm repo
```bash
helm repo add levoai https://charts.levo.ai && helm repo update
helm repo add levoai https://charts.levo.ai && helm repo update levoai
```

#### 3. Installation steps
Expand Down Expand Up @@ -163,7 +163,7 @@ kubectl apply -f aws-credentials.yaml

- Run the below command to install the log-parser containers in `levoai` namespace.
```bash
helm upgrade --install -n levoai --create-namespace levoai-log-parser levoai-private/levoai-log-parser --set global.levoaiOrgId=<your-org-id>
helm upgrade --install -n levoai --create-namespace levoai-log-parser levoai/levoai-log-parser --set global.levoaiOrgId=<your-org-id>
```

:::info
Expand Down
6 changes: 3 additions & 3 deletions docs/install-satellite/satellite-kubernetes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export LEVOAI_AUTH_KEY=<'Authorization Key'>

### 2. Add levoai Helm repo
```bash
helm repo add levoai https://charts.levo.ai && helm repo update
helm repo add levoai https://charts.levo.ai && helm repo update levoai
```

### 3. Create `levoai` namespace & install Satellite
Expand Down Expand Up @@ -244,7 +244,7 @@ Please proceed to [install Traffic Capture Sensors](/install-traffic-capture-sen
export LEVOAI_AUTH_KEY=<'Authorization Key' from the original installation>
# Update helm repo and upgrade installation
helm repo update
helm repo update levoai
helm upgrade -n levoai \
--set global.levoai_config_override.onprem-api.refresh-token=$LEVOAI_AUTH_KEY \
Expand Down Expand Up @@ -289,7 +289,7 @@ export LEVOAI_AUTH_KEY=<'Authorization Key' from the original installation>
export LEVOAI_MIN_URLS_PER_PATTERN=3
# Update helm repo and upgrade installation
helm repo update
helm repo update levoai
helm upgrade -n levoai \
--set global.levoai_config_override.onprem-api.refresh-token=$LEVOAI_AUTH_KEY \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ title: Install PCAP Sensor on Kubernetes | Levo.ai Documentation

### 1. Add levoai helm repo
```
helm repo add levoai https://charts.levo.ai && helm repo update
helm repo add levoai https://charts.levo.ai && helm repo update levoai
```

### 2. Create levoai namespace and install pcap-sensor
Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart/quickstart-minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ minikube mount /proc:/ggproc
Then, in a new terminal window, run:

```shell
helm repo add levoai https://charts.levo.ai && helm repo update
helm repo add levoai https://charts.levo.ai && helm repo update levoai
helm pull levoai/levoai-ebpf-sensor --untar
cd levoai-ebpf-sensor/
sed -i "s/path: \/proc/path: \/ggproc/" templates/deployment.yaml
Expand Down

0 comments on commit 5a2c6b7

Please sign in to comment.