Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
22 changes: 22 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,14 @@ Embedding models power semantic search. Plane AI supports:

## Enable Plane AI services

:::tip
For other deployment methods such as Coolify, Portainer, Docker Swarm, and Podman Quadlets, use the same [environment variables](/self-hosting/govern/environment-variables#plane-ai) defined for Docker Compose Setup.
:::

:::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 +77,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 Plane AI API, worker, beat-worker, and migrator workloads. Replica counts and resource limits for each workload can be configured through the [Plane AI 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`) |
| `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