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
2 changes: 1 addition & 1 deletion docs/self-hosting/govern/high-availability.md
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ The following capabilities aren't natively provided by the chart and need to be
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.

```yaml
planeVersion: v2.6.0
planeVersion: v2.6.3

license:
licenseServer: https://prime.plane.so
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Since airgapped instances can't pull updates from the internet, updating the ver
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.

:::info
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.
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.
:::

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.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Since airgapped clusters can't pull updates from the internet, upgrading require
```

:::info
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.
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.
:::

4. Once the Helm chart and `values.yaml` file are updated, redeploy the Helm release in your Kubernetes cluster to complete the update.
Expand Down
34 changes: 17 additions & 17 deletions docs/self-hosting/methods/clone-docker-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ curl -sL "https://github.com/google/go-containerregistry/releases/latest/downloa
The following Plane Commercial images need to be transferred to your private registry:

```
artifacts.plane.so/makeplane/admin-commercial:${APP_RELEASE_VERSION}
artifacts.plane.so/makeplane/web-commercial:${APP_RELEASE_VERSION}
artifacts.plane.so/makeplane/space-commercial:${APP_RELEASE_VERSION}
artifacts.plane.so/makeplane/live-commercial:${APP_RELEASE_VERSION}
artifacts.plane.so/makeplane/monitor-commercial:${APP_RELEASE_VERSION}
artifacts.plane.so/makeplane/backend-commercial:${APP_RELEASE_VERSION}
artifacts.plane.so/makeplane/iframely:v1.2.0
artifacts.plane.so/makeplane/silo-commercial:${APP_RELEASE_VERSION}
artifacts.plane.so/makeplane/email-commercial:${APP_RELEASE_VERSION}
makeplane/admin-commercial:${APP_RELEASE_VERSION}
makeplane/web-commercial:${APP_RELEASE_VERSION}
makeplane/space-commercial:${APP_RELEASE_VERSION}
makeplane/live-commercial:${APP_RELEASE_VERSION}
makeplane/monitor-commercial:${APP_RELEASE_VERSION}
makeplane/backend-commercial:${APP_RELEASE_VERSION}
makeplane/iframely:v1.2.0
makeplane/silo-commercial:${APP_RELEASE_VERSION}
makeplane/email-commercial:${APP_RELEASE_VERSION}
```

::: warning
Expand All @@ -76,7 +76,7 @@ Set your version and destination registry before copying images.

```bash
# Set your Plane version
export APP_RELEASE_VERSION="v2.4.0" # Replace with your desired version
export APP_RELEASE_VERSION="v2.6.3" # Replace with your desired version

# Set your destination registry
export DESTINATION_REGISTRY="your-registry.io/your-namespace"
Expand Down Expand Up @@ -145,7 +145,7 @@ You can copy images individually or use the provided script to copy all images a

```bash
crane copy \
artifacts.plane.so/makeplane/backend-commercial:${APP_RELEASE_VERSION} \
makeplane/backend-commercial:${APP_RELEASE_VERSION} \
${DESTINATION_REGISTRY}/backend-commercial:${APP_RELEASE_VERSION}
```

Expand All @@ -154,18 +154,18 @@ crane copy \
```bash
crane copy \
--platform linux/amd64 \
artifacts.plane.so/makeplane/backend-commercial:${APP_RELEASE_VERSION} \
makeplane/backend-commercial:${APP_RELEASE_VERSION} \
${DESTINATION_REGISTRY}/backend-commercial:${APP_RELEASE_VERSION}
```

**Verify source image before copying:**

```bash
# Check if source image exists
crane manifest artifacts.plane.so/makeplane/backend-commercial:${APP_RELEASE_VERSION}
crane manifest makeplane/backend-commercial:${APP_RELEASE_VERSION}

# List all available tags
crane ls artifacts.plane.so/makeplane/backend-commercial
crane ls makeplane/backend-commercial
```

**Verify image after copying:**
Expand All @@ -188,7 +188,7 @@ Create a file named `copy-plane-images.sh`:
set -e

# Configuration
APP_RELEASE_VERSION="${APP_RELEASE_VERSION:-v2.4.0}"
APP_RELEASE_VERSION="${APP_RELEASE_VERSION:-v2.6.3}"
DESTINATION_REGISTRY="${DESTINATION_REGISTRY}"

if [ -z "$DESTINATION_REGISTRY" ]; then
Expand All @@ -198,7 +198,7 @@ if [ -z "$DESTINATION_REGISTRY" ]; then
fi

# Source registry
SOURCE_REGISTRY="artifacts.plane.so/makeplane"
SOURCE_REGISTRY="makeplane"

# Image list
declare -a IMAGES=(
Expand Down Expand Up @@ -293,7 +293,7 @@ Verify your credentials are correct and that you have push permissions to the re
- Verify the source image exists:

```bash
crane ls artifacts.plane.so/makeplane/backend-commercial
crane ls makeplane/backend-commercial
```

- Check that you're using the correct version tag
Expand Down
6 changes: 3 additions & 3 deletions docs/self-hosting/methods/docker-aio.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The following ports are exposed:
1. Download the image with:

```bash
docker pull artifacts.plane.so/makeplane/plane-aio-commercial:stable
docker pull makeplane/plane-aio-commercial:stable
```

2. Run the following command to deploy the Plane AIO container. Make sure to replace all placeholder values (e.g., `your-domain.com`, `user:pass`) with your actual configuration.
Expand All @@ -74,7 +74,7 @@ The following ports are exposed:
-e AWS_ACCESS_KEY_ID=your-access-key \
-e AWS_SECRET_ACCESS_KEY=your-secret-key \
-e AWS_S3_BUCKET_NAME=your-bucket \
artifacts.plane.so/makeplane/plane-aio-commercial:stable
makeplane/plane-aio-commercial:stable
```

If you're running on an IP address, use this example:
Expand All @@ -96,7 +96,7 @@ The following ports are exposed:
-e AWS_S3_BUCKET_NAME=plane-app \
-e AWS_S3_ENDPOINT_URL=http://${MYIP}:19000 \
-e FILE_SIZE_LIMIT=10485760 \
artifacts.plane.so/makeplane/plane-aio-commercial:stable
makeplane/plane-aio-commercial:stable
```

3. Once it's running, you can access the Plane application on the domain you provided during the deployment.
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.4.0`) |
| `version` | Yes | — | Release tag (e.g., `v2.6.3`) |
| `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.4.0" -o plane.zip
curl "https://prime.plane.so/api/v2/setup/?version=v2.6.3" -o plane.zip
unzip plane.zip
```

**Airgapped setup (AMD64)**

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

**Airgapped setup (ARM64)**

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

Replace `v2.4.0` with the version you need. See the [releases page](https://plane.so/changelog?category=self-hosted) for available versions.
Replace `v2.6.3` 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