Skip to content

Commit 90cefdf

Browse files
akshat5302wozcode
andcommitted
docs: bump Commercial Edition version references to v2.6.3
Update all Commercial Edition (v2.x) version examples to v2.6.3 across self-hosting guides. Community Edition (v1.x), iframely image tag (v1.2.0), and historical upgrade guides are intentionally left unchanged. Co-Authored-By: WOZCODE <contact@withwoz.com>
1 parent b0d20f2 commit 90cefdf

8 files changed

Lines changed: 21 additions & 21 deletions

File tree

docs/self-hosting/govern/high-availability.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ The following capabilities aren't natively provided by the chart and need to be
632632
A minimal example that disables every local stateful service and gives each Tier-1 workload three replicas with AZ anti-affinity. Adapt names to your release.
633633

634634
```yaml
635-
planeVersion: v2.6.0
635+
planeVersion: v2.6.3
636636
637637
license:
638638
licenseServer: https://prime.plane.so

docs/self-hosting/manage/update-plane/airgapped-edition/update-airgapped-docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Since airgapped instances can't pull updates from the internet, updating the ver
3333
Transfer both files to your airgapped instance and replace the existing ones. Before replacing your existing `plane.env`, compare it with the new template. Copy over any custom values from your old plane.env into the new template. The new template may include additional variables required by the latest version, so always use the new file as the base and bring your existing values into it.
3434

3535
:::info
36-
Replace `<plane_version>` with the version you're upgrading to (e.g., v2.5.2). Check the [release notes](https://plane.so/changelog?category=self-hosted) for the latest available release version.
36+
Replace `<plane_version>` with the version you're upgrading to (e.g., v2.6.3). Check the [release notes](https://plane.so/changelog?category=self-hosted) for the latest available release version.
3737
:::
3838

3939
3. Download the latest license file for the new version from [prime.plane.so](https://prime.plane.so). Follow [this guide](https://developers.plane.so/self-hosting/manage/manage-licenses/activate-airgapped) to activate license.

docs/self-hosting/manage/update-plane/airgapped-edition/update-airgapped-kubernetes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Since airgapped clusters can't pull updates from the internet, upgrading require
4545
```
4646
4747
:::info
48-
Replace `<plane_version>` with the version you're upgrading to (e.g., v2.5.2). Check the [release notes](https://plane.so/changelog?category=self-hosted) for the latest available release version.
48+
Replace `<plane_version>` with the version you're upgrading to (e.g., v2.6.3). Check the [release notes](https://plane.so/changelog?category=self-hosted) for the latest available release version.
4949
:::
5050

5151
4. Once the Helm chart and `values.yaml` file are updated, redeploy the Helm release in your Kubernetes cluster to complete the update.

docs/self-hosting/methods/clone-docker-images.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Set your version and destination registry before copying images.
7676

7777
```bash
7878
# Set your Plane version
79-
export APP_RELEASE_VERSION="v2.4.0" # Replace with your desired version
79+
export APP_RELEASE_VERSION="v2.6.3" # Replace with your desired version
8080

8181
# Set your destination registry
8282
export DESTINATION_REGISTRY="your-registry.io/your-namespace"
@@ -188,7 +188,7 @@ Create a file named `copy-plane-images.sh`:
188188
set -e
189189

190190
# Configuration
191-
APP_RELEASE_VERSION="${APP_RELEASE_VERSION:-v2.4.0}"
191+
APP_RELEASE_VERSION="${APP_RELEASE_VERSION:-v2.6.3}"
192192
DESTINATION_REGISTRY="${DESTINATION_REGISTRY}"
193193

194194
if [ -z "$DESTINATION_REGISTRY" ]; then

docs/self-hosting/methods/download-config.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ curl "https://prime.plane.so/api/v2/setup/?version=<version>&airgapped=<true|fal
2020

2121
| Parameter | Required | Default | Description |
2222
| ----------- | -------- | ------- | ---------------------------------------------------------------------------- |
23-
| `version` | Yes || Release tag (e.g., `v2.4.0`) |
23+
| `version` | Yes || Release tag (e.g., `v2.6.3`) |
2424
| `airgapped` | No | `false` | Set to `true` for airgapped compose files |
2525
| `platform` | No | `amd64` | Target architecture: `amd64` or `arm64`. Only applies when `airgapped=true`. |
2626

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

4343
```bash
44-
curl "https://prime.plane.so/api/v2/setup/?version=v2.4.0" -o plane.zip
44+
curl "https://prime.plane.so/api/v2/setup/?version=v2.6.3" -o plane.zip
4545
unzip plane.zip
4646
```
4747

4848
**Airgapped setup (AMD64)**
4949

5050
```bash
51-
curl "https://prime.plane.so/api/v2/setup/?version=v2.4.0&airgapped=true" -o plane.zip
51+
curl "https://prime.plane.so/api/v2/setup/?version=v2.6.3&airgapped=true" -o plane.zip
5252
unzip plane.zip
5353
```
5454

5555
**Airgapped setup (ARM64)**
5656

5757
```bash
58-
curl "https://prime.plane.so/api/v2/setup/?version=v2.4.0&airgapped=true&platform=arm64" -o plane.zip
58+
curl "https://prime.plane.so/api/v2/setup/?version=v2.6.3&airgapped=true&platform=arm64" -o plane.zip
5959
unzip plane.zip
6060
```
6161

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

6464
### Error responses
6565

docs/self-hosting/methods/install-methods-commercial/kubernetes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Ensure you use use the latest Helm chart version.
3333
2. Set the following environment variables:
3434

3535
```bash
36-
PLANE_VERSION=v2.4.0
36+
PLANE_VERSION=v2.6.3
3737
```
3838

3939
```bash
@@ -88,7 +88,7 @@ helm repo add plane https://helm.plane.so/
8888
i. Run the script below to download the `values.yaml` file and edit using any editor like Vim or Nano.
8989
9090
Make sure you set the required environment variables listed below:
91-
- `planeVersion: v2.4.0`
91+
- `planeVersion: v2.6.3`
9292
- `license.licenseDomain: <The domain you have specified to host Plane>`
9393
- `license.licenseServer: https://prime.plane.so`
9494
- `ingress.enabled: <true | false>`
@@ -115,15 +115,15 @@ helm repo add plane https://helm.plane.so/
115115
116116
| Setting | Default | Required | Description |
117117
| --------------------- | :-----------------: | :------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
118-
| planeVersion | v2.4.0 | Yes | Specifies the version of Plane to be deployed. Copy this from prime.plane.so. |
118+
| planeVersion | v2.6.3 | Yes | Specifies the version of Plane to be deployed. Copy this from prime.plane.so. |
119119
| 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. |
120120
121121
### Airgapped Settings
122122
123123
| Setting | Default | Required | Description |
124124
| ---------------------- | :-----: | :------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
125125
| airgapped.enabled | false | No | Enable airgapped mode for the Plane API. |
126-
| airgapped.s3Secrets | [] | No | List of Kubernetes Secrets containing CA certificates to install. Each entry requires `name` (Secret name) and `key` (filename in the Secret). Example: `kubectl -n plane create secret generic plane-s3-ca --from-file=s3-custom-ca.crt=/path/to/ca.crt`. Supports multiple certs (e.g. S3 + internal CA). Available in v2.4.0 and later. |
126+
| airgapped.s3Secrets | [] | No | List of Kubernetes Secrets containing CA certificates to install. Each entry requires `name` (Secret name) and `key` (filename in the Secret). Example: `kubectl -n plane create secret generic plane-s3-ca --from-file=s3-custom-ca.crt=/path/to/ca.crt`. Supports multiple certs (e.g. S3 + internal CA). Available in v2.6.3 and later. |
127127
| airgapped.s3SecretName | "" | No | **Deprecated** <br/> Name of a single Kubernetes Secret containing the S3 CA cert. Used only when `s3Secrets` is empty. Use `s3Secrets` instead. |
128128
| airgapped.s3SecretKey | "" | No | **Deprecated** <br/> Key (filename) of the cert file inside the Secret. Used only when `s3Secrets` is empty. Set together with `airgapped.s3SecretName`. Use `s3Secrets` instead. |
129129
@@ -137,7 +137,7 @@ Plane supports custom CA certificates for connecting to S3-compatible storage an
137137
#### Migrating to the new configuration
138138
139139
:::warning
140-
Requires Plane v2.4.0 or later.
140+
Requires Plane v2.6.3 or later.
141141
:::
142142
143143
The new `s3Secrets` configuration supports multiple CA certificates, useful if you need to trust certificates from different sources (e.g., S3 endpoint CA and internal PKI). If you only need a single certificate, migration is optional.

docs/self-hosting/methods/kubernetes.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Ensure you use use the latest Helm chart version.
3131
2. Set the following environment variables:
3232

3333
```bash
34-
PLANE_VERSION=v2.4.0
34+
PLANE_VERSION=v2.6.3
3535
```
3636

3737
```bash
@@ -86,7 +86,7 @@ helm repo add plane https://helm.plane.so/
8686
i. Run the script below to download the `values.yaml` file and edit using any editor like Vim or Nano.
8787
8888
Make sure you set the required environment variables listed below:
89-
- `planeVersion: v2.4.0`
89+
- `planeVersion: v2.6.3`
9090
- `license.licenseDomain: <The domain you have specified to host Plane>`
9191
- `license.licenseServer: https://prime.plane.so`
9292
- `ingress.enabled: <true | false>`
@@ -113,15 +113,15 @@ helm repo add plane https://helm.plane.so/
113113
114114
| Setting | Default | Required | Description |
115115
| --------------------- | :-----------------: | :------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
116-
| planeVersion | v2.4.0 | Yes | Specifies the version of Plane to be deployed. Copy this from prime.plane.so. |
116+
| planeVersion | v2.6.3 | Yes | Specifies the version of Plane to be deployed. Copy this from prime.plane.so. |
117117
| 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. |
118118
119119
### Airgapped Settings
120120
121121
| Setting | Default | Required | Description |
122122
| ---------------------- | :-----: | :------: | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
123123
| airgapped.enabled | false | No | Enable airgapped mode for the Plane API. |
124-
| airgapped.s3Secrets | [] | No | List of Kubernetes Secrets containing CA certificates to install. Each entry requires `name` (Secret name) and `key` (filename in the Secret). Example: `kubectl -n plane create secret generic plane-s3-ca --from-file=s3-custom-ca.crt=/path/to/ca.crt`. Supports multiple certs (e.g. S3 + internal CA). Available in v2.4.0 and later. |
124+
| airgapped.s3Secrets | [] | No | List of Kubernetes Secrets containing CA certificates to install. Each entry requires `name` (Secret name) and `key` (filename in the Secret). Example: `kubectl -n plane create secret generic plane-s3-ca --from-file=s3-custom-ca.crt=/path/to/ca.crt`. Supports multiple certs (e.g. S3 + internal CA). Available in v2.6.3 and later. |
125125
| airgapped.s3SecretName | "" | No | **Deprecated** <br/> Name of a single Kubernetes Secret containing the S3 CA cert. Used only when `s3Secrets` is empty. Use `s3Secrets` instead. |
126126
| airgapped.s3SecretKey | "" | No | **Deprecated** <br/> Key (filename) of the cert file inside the Secret. Used only when `s3Secrets` is empty. Set together with `airgapped.s3SecretName`. Use `s3Secrets` instead. |
127127
@@ -135,7 +135,7 @@ Plane supports custom CA certificates for connecting to S3-compatible storage an
135135
#### Migrating to the new configuration
136136
137137
:::warning
138-
Requires Plane v2.4.0 or later.
138+
Requires Plane v2.6.3 or later.
139139
:::
140140
141141
The new `s3Secrets` configuration supports multiple CA certificates, useful if you need to trust certificates from different sources (e.g., S3 endpoint CA and internal PKI). If you only need a single certificate, migration is optional.

docs/self-hosting/methods/podman-quadlets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Before we start, make sure you've got these covered:
4747

4848
```bash
4949
mkdir podman-quadlets
50-
curl -fsSL https://prime.plane.so/releases/v2.4.0/podman-quadlets.tar.gz -o podman-quadlets.tar.gz
50+
curl -fsSL https://prime.plane.so/releases/v2.6.3/podman-quadlets.tar.gz -o podman-quadlets.tar.gz
5151
tar -xvzf podman-quadlets.tar.gz -C podman-quadlets
5252
```
5353

0 commit comments

Comments
 (0)