Skip to content
Open
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 charts/plane-enterprise/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Meet Plane. An Enterprise software development tool to manage issue

type: application

version: 2.5.1
version: 2.5.2
appVersion: "2.6.2"

home: https://plane.so/
Expand Down
1 change: 1 addition & 0 deletions charts/plane-enterprise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,7 @@ securityContext:
| env.sentry_environment | | | (optional) API service deployment comes with some of the preconfigured integration. Sentry is one among those. Here user can set the Sentry environment name (as configured in Sentry) for this integration. |
| env.api_key_rate_limit | 60/minute | | (optional) User can set the maximum number of requests the API can handle in a given time frame. |
| env.web_url | | | (optional) Custom Web URL for the application. If not set, it will be auto-generated based on the license domain and SSL settings |
| env.drawio_embed_url | "" | | (optional) Self-hosted drawio endpoint for the Wiki editor's diagram extension (`DRAWIO_EMBED_URL`). Leave empty to use the diagrams.net cloud. |
| services.api.assign_cluster_ip | false | | Set it to `true` if you want to assign `ClusterIP` to the service |
| services.api.nodeSelector | {} | | This key allows you to set the node selector for the deployment of `api`. This is useful when you want to run the deployment on specific nodes in your Kubernetes cluster. |
| services.api.tolerations | [] | | This key allows you to set the tolerations for the deployment of `api`. This is useful when you want to run the deployment on nodes with specific taints in your Kubernetes cluster. |
Expand Down
5 changes: 5 additions & 0 deletions charts/plane-enterprise/questions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,11 @@ questions:
label: "Web URL"
type: string
default: ""
- variable: env.drawio_embed_url
label: "Drawio Embed URL"
description: "Self-hosted drawio endpoint for the Wiki editor's diagram extension. Leave empty to use the diagrams.net cloud."
type: string
default: ""
- variable: services.worker.replicas
label: "Default Replica Count"
type: int
Expand Down
2 changes: 2 additions & 0 deletions charts/plane-enterprise/templates/config-secrets/app-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ data:
ENABLE_READ_REPLICA: {{ .Values.services.postgres.read_replica.enabled | default false | ternary "1" "0" | quote }}
INTAKE_EMAIL_DOMAIN: {{ .Values.env.email_service_envs.smtp_domain | default "" | quote }}

DRAWIO_EMBED_URL: {{ .Values.env.drawio_embed_url | default "" | quote }}

SENTRY_DSN: {{ .Values.env.sentry_dsn | default "" | quote}}
SENTRY_ENVIRONMENT: {{ .Values.env.sentry_environment | default "" | quote}}
DEBUG: "0"
Expand Down
4 changes: 4 additions & 0 deletions charts/plane-enterprise/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -526,6 +526,10 @@ env:
allow_all_attachment_types: false
enable_drf_spectacular: false

# Self-hosted drawio endpoint for the Wiki editor's diagram extension.
# Leave empty to use the diagrams.net cloud.
drawio_embed_url: ''

#OPENSEARCH ENVS
opensearch_remote_url: ''
opensearch_remote_username: ''
Expand Down