Skip to content

Commit bfe5116

Browse files
committed
Add warning for upgrade to v1.13.0
1 parent 2b944de commit bfe5116

File tree

3 files changed

+26
-12
lines changed

3 files changed

+26
-12
lines changed

self-hosting/manage/upgrade-plane.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ You can quickly check your Plane version by clicking the **?** icon on the sideb
1919

2020
## Update version
2121

22+
<Warning>
23+
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.
24+
</Warning>
25+
26+
2227
1. Update your Prime CLI with the command ↓:
2328
```bash
2429
sudo prime-cli update-cli

self-hosting/methods/docker-compose.mdx

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,12 @@ title: Docker
33
---
44

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

710
## Install Plane
8-
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.
11+
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.
912

1013
### Prerequisites
1114

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

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

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

2629
1. `ssh` into your machine as the root user (or user with sudo access) per the norms of your hosting provider.
2730
2. Run the command below:

self-hosting/methods/kubernetes.mdx

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,29 @@ title: Kubernetes
44

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

7+
<Tip>
8+
If you want to upgrade from Community to the Commercial edition, see [Upgrade to Commercial Edition](/self-hosting/upgrade-from-community).
9+
</Tip>
10+
711
## Install Plane
8-
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.
12+
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.
913

1014
### Prerequisites
1115

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

19+
<Note>
20+
Ensure you're using use **Helm chart v1.3.0**.
21+
</Note>
22+
23+
1524
### Procedure
16-
<Tip>
17-
If you want to upgrade from Community to the Commercial edition, see [Upgrade to Commercial Edition](/self-hosting/upgrade-from-community).
18-
</Tip>
1925

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

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

108114
| Setting | Default | Required | Description |
109115
|---|:---:|:---:|---|
110-
| planeVersion | v1.10.0 | Yes | Specifies the version of Plane to be deployed. Copy this from `prime.plane.so.` |
116+
| planeVersion | v1.13.0 | Yes | Specifies the version of Plane to be deployed. Copy this from `prime.plane.so.` |
111117
| 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. |
112118
| 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. |
113119

0 commit comments

Comments
 (0)