Skip to content
Closed
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: 3.0.0
version: 3.0.1
appVersion: "3.0.0"

home: https://plane.so/
Expand Down
8 changes: 8 additions & 0 deletions charts/plane-enterprise/questions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -970,6 +970,14 @@ questions:
label: "CORS Allowed Origins"
type: string
default: ""
- variable: env.pi_envs.ai_usage_agent_max_tokens_budget
label: "AI Usage Agent Max Tokens Budget"
type: string
default: ""
- variable: env.pi_envs.ai_usage_enforcement_enabled
label: "AI Usage Enforcement Enabled"
type: boolean
default: true
- variable: env.pi_envs.celery.vector_sync_enabled
label: "Vector Sync Enabled"
type: boolean
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,3 +111,4 @@ data:

WEBHOOK_ALLOWED_IPS: {{ .Values.env.webhook_allowed_ips | default "" | quote }}
WEBHOOK_ALLOWED_HOSTS: {{ .Values.env.webhook_allowed_hosts | default "" | quote }}
AI_USAGE_AGENT_MAX_TOKENS_BUDGET: {{ .Values.env.pi_envs.ai_usage_agent_max_tokens_budget | default "" | quote }}
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ data:
BR_AWS_REGION: {{ .Values.services.pi.ai_providers.embedding_model.aws_region | default "us-east-1" | quote }}
{{- end }}

AI_USAGE_AGENT_MAX_TOKENS_BUDGET: {{ .Values.env.pi_envs.ai_usage_agent_max_tokens_budget | default "" | quote }}
AI_USAGE_ENFORCEMENT_ENABLED: {{ .Values.env.pi_envs.ai_usage_enforcement_enabled | ternary "1" "0" | quote }}

CELERY_VECTOR_SYNC_ENABLED: {{ .Values.env.pi_envs.celery.vector_sync_enabled | ternary "1" "0" | quote }}
CELERY_VECTOR_SYNC_INTERVAL: {{ .Values.env.pi_envs.celery.vector_sync_interval | default 3 | quote }}
CELERY_WORKSPACE_PLAN_SYNC_ENABLED: {{ .Values.env.pi_envs.celery.workspace_plan_sync_enabled | ternary "1" "0" | quote }}
Expand Down
3 changes: 3 additions & 0 deletions charts/plane-enterprise/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,9 @@ env:
internal_secret: 'tyfvfqvBJAgpm9bzvf3r4urJer0Ehfdubk'
log_level: 'DEBUG'

ai_usage_agent_max_tokens_budget: ''
ai_usage_enforcement_enabled: true

celery:
vector_sync_enabled: false
vector_sync_interval: 3
Expand Down