Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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.4.1
version: 2.4.2
appVersion: "2.5.4"
home: https://plane.so/
icon: https://plane.so/favicon/favicon-32x32.png
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,12 @@ stringData:
AWS_REGION: {{ .Values.env.aws_region | default "" | quote }}
AWS_S3_ENDPOINT_URL: {{ .Values.env.aws_s3_endpoint_url | quote }}
{{- end }}

STORAGE_PROVIDER: {{ .Values.env.storage_provider | default "s3" | quote }}
SIGNED_URL_EXPIRATION: {{ .Values.env.signed_url_expiration | default 3600 | quote }}
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated
GCS_BUCKET_NAME: {{ .Values.env.gcs_bucket_name | default "" | quote }}
GCS_PROJECT_ID: {{ .Values.env.gcs_project_id | default "" | quote }}
GCS_CREDENTIALS_JSON: {{ .Values.env.gcs_credentials_json | default "" | quote }}
GCS_CREDENTIALS_PATH: {{ .Values.env.gcs_credentials_path | default "" | quote }}
Comment thread
coderabbitai[bot] marked this conversation as resolved.
{{- end }}
---
10 changes: 10 additions & 0 deletions charts/plane-enterprise/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -472,6 +472,16 @@ env:
aws_region: ''
aws_s3_endpoint_url: ''

# STORAGE PROVIDER SELECTION (s3 or gcs)
storage_provider: 's3'
signed_url_expiration: 3600

# GCS (REQUIRED IF storage_provider IS 'gcs')
gcs_bucket_name: ''
gcs_project_id: ''
gcs_credentials_json: ''
gcs_credentials_path: ''

use_storage_proxy: false
allow_all_attachment_types: false
enable_drf_spectacular: false
Expand Down