Skip to content

Commit 4ea5f20

Browse files
committed
Merge branch 'preview' of github.com:makeplane/developer-docs into integrations-selfhosted
2 parents d393d87 + 378f950 commit 4ea5f20

File tree

3 files changed

+15
-6
lines changed

3 files changed

+15
-6
lines changed

api-reference/issue/list-issues.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ api: GET /api/v1/workspaces/{workspace-slug}/projects/{project_id}/issues/
77
### Path parameters
88

99
<ParamField path="workspace-slug" type="string" required></ParamField>
10-
11-
<ParamField path="project_id" type="string" required></ParamField>
10+
<ParamField path="project_id" type="string" required></ParamField>
11+
<ParamField query="fields" type="string" required></ParamField>
12+
<ParamField query="expand" type="string" required></ParamField>

self-hosting/govern/database-and-storage.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ The Prime CLI lets you easily configure your Commercial Edition instance, provid
2525

2626
<Warning>
2727
Don’t use a database on your local machine. If you use `localhost` in the URL, it won’t work. Make sure to use a database hosted on a network-accessible server.
28+
29+
Avoid using special characters in your PostgreSQL password.
2830
</Warning>
2931

3032
- `External Redis URL`
@@ -95,6 +97,12 @@ To configure external Postgres, Redis, and S3 storage for the Plane Community Ed
9597
DATABASE_URL= # Leave this empty if you're providing values for the variables above. If you choose to use the DATABASE_URL, you can leave all the other database-related variables empty.
9698
```
9799

100+
<Warning>
101+
Don’t use a database on your local machine. If you use `localhost` in the URL, it won’t work. Make sure to use a database hosted on a network-accessible server.
102+
103+
Avoid using special characters in your PostgreSQL password.
104+
</Warning>
105+
98106
3. In the **REDIS SETTINGS** section, update the variables to connect to your external Redis instance:
99107
```bash
100108
# REDIS SETTINGS

self-hosting/methods/kubernetes.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ Plane One and Plane Pro are enabled on this edition, so the Free plan on this ed
2020
1. Open terminal or any other command-line app that has access to Kubernetes tools on your local system.
2121
2. Set the following environment variables:
2222
```bash
23-
PLANE_VERSION=v1.6.0
23+
PLANE_VERSION=v1.8.0
2424
```
2525
```bash
2626
DOMAIN_NAME=<subdomain.domain.tld or domain.tld>
2727
```
2828

2929
<Warning>
30-
When configuring the PLANE_VERSION environment variable, **do not** set it to `stable`. Always specify the latest version number (e.g., `1.6.0`). Using `stable` can lead to unexpected issues.
30+
When configuring the PLANE_VERSION environment variable, **do not** set it to `stable`. Always specify the latest version number (e.g., `1.8.0`). Using `stable` can lead to unexpected issues.
3131
</Warning>
3232

3333
3. Add the Plane helm chart repo.
@@ -77,7 +77,7 @@ Plane One and Plane Pro are enabled on this edition, so the Free plan on this ed
7777
```
7878

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

108108
| Setting | Default | Required | Description |
109109
|---|:---:|:---:|---|
110-
| planeVersion | v1.6.0 | Yes | Specifies the version of Plane to be deployed. Copy this from `prime.plane.so.` |
110+
| planeVersion | v1.8.0 | Yes | Specifies the version of Plane to be deployed. Copy this from `prime.plane.so.` |
111111
| 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. |
112112
| 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. |
113113

0 commit comments

Comments
 (0)