Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/self-hosting/govern/plane-ai.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ Embedding models power semantic search. Plane AI supports:

## Enable Plane AI services

:::tabs key:deployment-method

== Docker Compose {#docker-compose}

Open the `/opt/plane/plane.env` file in your preferred editor and set the replica count for Plane AI services to `1`:

```bash
Expand All @@ -69,6 +73,20 @@ PI_WORKER_REPLICAS=1
PI_MIGRATOR_REPLICAS=1
```

== Kubernetes {#kubernetes}

Open your `values.yaml` file and enable the Plane AI service by setting `services.pi.enabled` to `true`:

```yaml
services:
pi:
enabled: true
```

This activates the PI API, worker, beat-worker, and migrator workloads. Replica counts and resource limits for each workload can be configured through the [Plane AI (PI) values block](/self-hosting/methods/kubernetes#plane-ai-pi-deployment) in your `values.yaml`.

:::

## Configure an LLM provider

Configure at least one LLM provider. Add the relevant variables to `/opt/plane/plane.env`.
Expand Down
10 changes: 5 additions & 5 deletions docs/self-hosting/methods/download-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ curl "https://prime.plane.so/api/v2/setup/?version=<version>&airgapped=<true|fal

| Parameter | Required | Default | Description |
| ----------- | -------- | ------- | ---------------------------------------------------------------------------- |
| `version` | Yes | — | Release tag (e.g., `v2.3.4`) |
| `version` | Yes | — | Release tag (e.g., `v2.4.04`) |
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Fix version example typo in version parameter.

Line 23 shows v2.4.04, while the rest of the page uses v2.4.0. This can lead to 404s when users copy the parameter example.

Suggested fix
-| `version`   | Yes      | —       | Release tag (e.g., `v2.4.04`)                                                 |
+| `version`   | Yes      | —       | Release tag (e.g., `v2.4.0`)                                                  |
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
| `version` | Yes || Release tag (e.g., `v2.4.04`) |
| `version` | Yes || Release tag (e.g., `v2.4.0`) |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@docs/self-hosting/methods/download-config.md` at line 23, Update the example
value for the `version` parameter in the markdown table row that currently shows
`v2.4.04` to the correct tag `v2.4.0` so it matches the rest of the page and
prevents 404s when users copy the example; modify the table cell containing
`version` accordingly.

| `airgapped` | No | `false` | Set to `true` for airgapped compose files |
| `platform` | No | `amd64` | Target architecture: `amd64` or `arm64`. Only applies when `airgapped=true`. |

Expand All @@ -41,25 +41,25 @@ curl "https://prime.plane.so/api/v2/setup/?version=<version>&airgapped=<true|fal
**Standard setup**

```bash
curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4" -o plane.zip
curl "https://prime.plane.so/api/v2/setup/?version=v2.4.0" -o plane.zip
unzip plane.zip
```

**Airgapped setup (AMD64)**

```bash
curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4&airgapped=true" -o plane.zip
curl "https://prime.plane.so/api/v2/setup/?version=v2.4.0&airgapped=true" -o plane.zip
unzip plane.zip
```

**Airgapped setup (ARM64)**

```bash
curl "https://prime.plane.so/api/v2/setup/?version=v2.3.4&airgapped=true&platform=arm64" -o plane.zip
curl "https://prime.plane.so/api/v2/setup/?version=v2.4.0&airgapped=true&platform=arm64" -o plane.zip
unzip plane.zip
```

Replace `v2.3.4` with the version you need. See the [releases page](https://plane.so/changelog?category=self-hosted) for available versions.
Replace `v2.4.0` with the version you need. See the [releases page](https://plane.so/changelog?category=self-hosted) for available versions.

### Error responses

Expand Down
Loading
Loading