|
11 | 11 | Copy the format of constants below, paste it on Terminal to start setting environment variables, set values for each variable, and hit ENTER or RETURN. |
12 | 12 |
|
13 | 13 | ```bash |
14 | | - PLANE_VERSION=v1.9.2 # or the last released version |
| 14 | + PLANE_VERSION=v1.10.0 # or the last released version |
15 | 15 | DOMAIN_NAME=<subdomain.domain.tld or domain.tld> |
16 | 16 | ``` |
17 | 17 |
|
|
65 | 65 | ``` |
66 | 66 |
|
67 | 67 | Make sure you set the minimum required values as below. |
68 | | - - `planeVersion: v1.9.2 <or the last released version>` |
| 68 | + - `planeVersion: v1.10.0 <or the last released version>` |
69 | 69 | - `license.licenseDomain: <The domain you have specified to host Plane>` |
70 | 70 | - `ingress.enabled: <true | false>` |
71 | 71 | - `ingress.ingressClass: <nginx or any other ingress class configured in your cluster>` |
|
100 | 100 |
|
101 | 101 | | Setting | Default | Required | Description | |
102 | 102 | |---|:---:|:---:|---| |
103 | | -| planeVersion | v1.9.2 | Yes | Specifies the version of Plane to be deployed. Copy this from prime.plane.so. | |
| 103 | +| planeVersion | v1.10.0 | Yes | Specifies the version of Plane to be deployed. Copy this from prime.plane.so. | |
104 | 104 | | 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. | |
105 | 105 |
|
106 | 106 | ### Postgres |
|
285 | 285 | | services.beatworker.replicas | 1 | Yes | Kubernetes helps you with scaling up/down the deployments. You can run 1 or more pods for each deployment. This key helps you setting up number of replicas you want to run for this deployment. It must be >=1 | |
286 | 286 | | services.beatworker.memoryLimit | 1000Mi | | Every deployment in kubernetes can be set to use maximum memory they are allowed to use. This key sets the memory limit for this deployment to use.| |
287 | 287 | | services.beatworker.cpuLimit | 500m | | Every deployment in kubernetes can be set to use maximum cpu they are allowed to use. This key sets the cpu limit for this deployment to use.| |
288 | | - |
| 288 | +
|
| 289 | +### Email Service Deployment |
| 290 | +
|
| 291 | +| Setting | Default | Required | Description | |
| 292 | +|---|:---:|:---:|---| |
| 293 | +| services.email_service.enabled | false | | Set to `true` to enable the email service deployment | |
| 294 | +| services.email_service.replicas | 1 | | Number of replicas for the email service deployment | |
| 295 | +| services.email_service.memory_limit | 1000Mi | | Memory limit for the email service deployment | |
| 296 | +| services.email_service.cpu_limit | 500m | | CPU limit for the email service deployment | |
| 297 | +| services.email_service.image | artifacts.plane.so/makeplane/email-commercial | | Docker image for the email service deployment | |
| 298 | +| services.email_service.pullPolicy | Always | | Image pull policy for the email service deployment | |
| 299 | +| env.email_service_envs.smtp_domain | | Yes | The SMTP Domain to be used with email service | |
| 300 | +
|
| 301 | +Note: When the email service is enabled, the cert-issuer will be automatically created to handle TLS certificates for the email service. |
| 302 | +
|
289 | 303 | ### Ingress and SSL Setup |
290 | 304 |
|
291 | 305 | | Setting | Default | Required | Description | |
|
0 commit comments