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
5 changes: 5 additions & 0 deletions self-hosting/manage/upgrade-plane.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ You can quickly check your Plane version by clicking the **?** icon on the sideb

## Update version

<Warning>
For Commercial Edition v1.13.0, ensure you're using the **latest version of Docker Compose**. Check your Docker Compose version with `docker-compose --version` and update if needed.
</Warning>


1. Update your Prime CLI with the command ↓:
```bash
sudo prime-cli update-cli
Expand Down
13 changes: 8 additions & 5 deletions self-hosting/methods/docker-compose.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ title: Docker
---

This guide shows you the steps to deploy a self-hosted instance of Plane using Docker.
<Tip>
If you want to upgrade from Community to the Commercial edition, see [Upgrade to Commercial Edition](/self-hosting/upgrade-from-community).
</Tip>

## Install Plane
Plane One and Plane Pro are enabled on this edition, so the Free plan on this edition is easier to trial our paid plans from.
Plane Pro and Plane Business are enabled on this edition, so the Free plan on this edition is easier to trial our paid plans from.

### Prerequisites

Expand All @@ -17,11 +20,11 @@ Plane One and Plane Pro are enabled on this edition, so the Free plan on this ed
- CentOS
- Amazon Linux 2 or Linux 2023

### Procedure
<Note>
Ensure you're using the **latest version of Docker Compose**. Check your Docker Compose version with `docker-compose --version` and update if needed.
</Note>

<Tip>
If you want to upgrade from Community to the Commercial edition, see [Upgrade to Commercial Edition](/self-hosting/upgrade-from-community).
</Tip>
### Procedure

1. `ssh` into your machine as the root user (or user with sudo access) per the norms of your hosting provider.
2. Run the command below:
Expand Down
20 changes: 13 additions & 7 deletions self-hosting/methods/kubernetes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,29 @@ title: Kubernetes

This guide shows you the steps to deploy a self-hosted instance of Plane using Kubernetes.

<Tip>
If you want to upgrade from Community to the Commercial edition, see [Upgrade to Commercial Edition](/self-hosting/upgrade-from-community).
</Tip>

## Install Plane
Plane One and Plane Pro are enabled on this edition, so the Free plan on this edition is easier to trial our paid plans from.
Plane Pro and Plane Business are enabled on this edition, so the Free plan on this edition is easier to trial our paid plans from.

### Prerequisites

- A working Kubernetes cluster
- `kubectl` and `helm` on the client system that you will use to install our Helm charts

<Note>
Ensure you're using use **Helm chart v1.3.0**.
</Note>


### Procedure
<Tip>
If you want to upgrade from Community to the Commercial edition, see [Upgrade to Commercial Edition](/self-hosting/upgrade-from-community).
</Tip>

1. Open terminal or any other command-line app that has access to Kubernetes tools on your local system.
2. Set the following environment variables:
```bash
PLANE_VERSION=v1.10.0
PLANE_VERSION=v1.13.0
```
```bash
DOMAIN_NAME=<subdomain.domain.tld or domain.tld>
Expand Down Expand Up @@ -77,7 +83,7 @@ Plane One and Plane Pro are enabled on this edition, so the Free plan on this ed
```

Make sure you set the required environment variables listed below:
- `planeVersion: v1.10.0`
- `planeVersion: v1.13.0`
- `license.licenseDomain: <The domain you have specified to host Plane>`
- `license.licenseServer: https://prime.plane.so`
- `ingress.enabled: <true | false>`
Expand Down Expand Up @@ -107,7 +113,7 @@ If you want to upgrade to a paid plan, see [Plan upgrades](https://docs.plane.so

| Setting | Default | Required | Description |
|---|:---:|:---:|---|
| planeVersion | v1.10.0 | Yes | Specifies the version of Plane to be deployed. Copy this from `prime.plane.so.` |
| planeVersion | v1.13.0 | Yes | Specifies the version of Plane to be deployed. Copy this from `prime.plane.so.` |
| license.licenseServer | `https://prime.plane.so` | Yes | Sets the value of the `licenseServer` that gets you your license and validates it periodically. Don't change this. |
| license.licenseDomain | 'plane.example.com' | Yes | The fully-qualified domain name (FQDN) in the format `sudomain.domain.tld` or `domain.tld` that the license is bound to. It is also attached to your `ingress` host to access Plane. |

Expand Down