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

type: application

version: 1.1.8
appVersion: "1.8.3"
version: 1.1.9
appVersion: "1.9.0"

home: https://plane.so/
icon: https://plane.so/favicon/favicon-32x32.png
Expand Down
27 changes: 14 additions & 13 deletions charts/plane-enterprise/README.md

Large diffs are not rendered by default.

28 changes: 16 additions & 12 deletions charts/plane-enterprise/questions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,45 +20,45 @@ questions:
- variable: planeVersion
label: Plane Version (Docker Image Tag)
type: string
default: v1.8.3
default: v1.9.0
required: true
group: "Docker Registry"
subquestions:
- variable: services.web.image
label: Frontend Docker Image
type: string
required: true
default: "registry.plane.tools/plane/web-enterprise"
default: "artifacts.plane.so/makeplane/web-commercial"
- variable: services.space.image
label: Space Docker Image
type: string
required: true
default: "registry.plane.tools/plane/space-enterprise"
default: "artifacts.plane.so/makeplane/space-commercial"
- variable: services.admin.image
label: Admin Docker Image
type: string
required: true
default: "registry.plane.tools/plane/admin-enterprise"
default: "artifacts.plane.so/makeplane/admin-commercial"
- variable: services.live.image
label: Live Docker Image
type: string
required: true
default: "registry.plane.tools/plane/live-enterprise"
default: "artifacts.plane.so/makeplane/live-commercial"
- variable: services.monitor.image
label: Monitor Docker Image
type: string
required: true
default: "registry.plane.tools/plane/monitor-enterprise"
default: "artifacts.plane.so/makeplane/monitor-commercial"
- variable: services.silo.image
label: Silo Docker Image
type: string
required: true
default: "registry.plane.tools/plane/silo-enterprise"
default: "artifacts.plane.so/makeplane/silo-commercial"
- variable: services.api.image
label: Backend Docker Image
type: string
required: true
default: "registry.plane.tools/plane/backend-enterprise"
default: "artifacts.plane.so/makeplane/backend-commercial"
description: "Used by API, Worker, Beat-Worker"
- variable: env.storageClass
label: "Storage Class for Persistent Volume Claims"
Expand Down Expand Up @@ -193,6 +193,10 @@ questions:
- variable: env.live_sentry_traces_sample_rate
label: "Sentry Traces Sample Rate"
type: string
- variable: env.live_server_secret_key
label: "Live Server Secret Key"
type: string
default: "htbqvBJAgpm9bzvf3r4urJer0ENReatceh"

- variable: services.silo.enabled
label: "Install Silo Service"
Expand Down Expand Up @@ -420,7 +424,7 @@ questions:
- variable: services.redis.image
label: "Docker Image"
type: string
default: "registry.plane.tools/plane/valkey:7.2.5-alpine"
default: "valkey/valkey:7.2.5-alpine"
show_if: "services.redis.local_setup=true"
- variable: services.redis.pullPolicy
label: "Redis Pull Policy"
Expand Down Expand Up @@ -461,7 +465,7 @@ questions:
- variable: services.postgres.image
label: "Docker Image"
type: string
default: "registry.plane.tools/plane/postgres:15.7-alpine"
default: "postgres:15.7-alpine"
show_if: "services.postgres.local_setup=true"
- variable: services.postgres.pullPolicy
label: "Postgres Pull Policy"
Expand Down Expand Up @@ -571,7 +575,7 @@ questions:
- variable: services.minio.image
label: "Docker Image"
type: string
default: "registry.plane.tools/plane/minio:latest"
default: "minio/minio:latest"
show_if: "services.minio.local_setup=true"
- variable: services.minio.pullPolicy
label: "Minio Pull Policy"
Expand Down Expand Up @@ -704,7 +708,7 @@ questions:
label: "Custom TLS Secret Name"
type: string
default: ""
group: "Ingress"
group: "Ingress"
show_if: "ssl.createIssuer=false"

- variable: external_secrets.rabbitmq_existingSecret
Expand Down
4 changes: 4 additions & 0 deletions charts/plane-enterprise/templates/config-secrets/app-env.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ metadata:
name: {{ .Release.Name }}-app-secrets
stringData:
SECRET_KEY: {{ .Values.env.secret_key | default "60gp0byfz2dvffa45cxl20p1scy9xbpf6d8c5y0geejgkyp1b5" | quote }}
LIVE_SERVER_SECRET_KEY: {{ .Values.env.live_server_secret_key | default "htbqvBJAgpm9bzvf3r4urJer0ENReatceh" | quote }}

{{- if .Values.services.redis.local_setup }}
REDIS_URL: "redis://{{ .Release.Name }}-redis.{{ .Release.Namespace }}.svc.cluster.local:6379/"
Expand Down Expand Up @@ -56,6 +57,9 @@ data:

WEB_URL: "http://{{ .Values.license.licenseDomain }}"

LIVE_BASE_URL: "http://{{ .Release.Name }}-live.{{ .Release.Namespace }}.svc.cluster.local:3000/"
LIVE_BASE_PATH: "/live"

{{- if eq .Values.env.cors_allowed_origins "*"}}
CORS_ALLOWED_ORIGINS: "*"
{{- else if .Values.env.cors_allowed_origins }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ metadata:
namespace: {{ .Release.Namespace }}
name: {{ .Release.Name }}-live-secrets
stringData:
LIVE_SERVER_SECRET_KEY: {{ .Values.env.live_server_secret_key | default "htbqvBJAgpm9bzvf3r4urJer0ENReatceh" | quote }}
{{- if .Values.services.redis.local_setup }}
REDIS_URL: "redis://{{ .Release.Name }}-redis.{{ .Release.Namespace }}.svc.cluster.local:6379/"
{{- else }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
containers:
- name: {{ .Release.Name }}-admin
imagePullPolicy: {{ .Values.services.admin.pullPolicy | default "Always" }}
image: {{ .Values.services.admin.image | default "registry.plane.tools/plane/admin-enterprise" }}:{{ .Values.planeVersion }}
image: {{ .Values.services.admin.image | default "artifacts.plane.so/makeplane/admin-commercial" }}:{{ .Values.planeVersion }}
stdin: true
tty: true
resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
containers:
- name: {{ .Release.Name }}-api
imagePullPolicy: {{ .Values.services.api.pullPolicy | default "Always" }}
image: {{ .Values.services.api.image | default "registry.plane.tools/plane/backend-enterprise" }}:{{ .Values.planeVersion }}
image: {{ .Values.services.api.image | default "artifacts.plane.so/makeplane/backend-commercial" }}:{{ .Values.planeVersion }}
stdin: true
tty: true
resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
containers:
- name: {{ .Release.Name }}-beat-worker
imagePullPolicy: {{ .Values.services.api.pullPolicy | default "Always" }}
image: {{ .Values.services.api.image | default "registry.plane.tools/plane/backend-enterprise" }}:{{ .Values.planeVersion }}
image: {{ .Values.services.api.image | default "artifacts.plane.so/makeplane/backend-commercial" }}:{{ .Values.planeVersion }}
stdin: true
tty: true
resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
containers:
- name: {{ .Release.Name }}-live
imagePullPolicy: {{ .Values.services.live.pullPolicy | default "Always" }}
image: {{ .Values.services.live.image | default "makeplane/live-enterprise" }}:{{ .Values.planeVersion }}
image: {{ .Values.services.live.image | default "artifacts.plane.so/makeplane/live-commercial" }}:{{ .Values.planeVersion }}
stdin: true
tty: true
resources:
Expand All @@ -54,7 +54,7 @@ spec:
command:
- node
args:
- live/dist/server.js
- live/dist/start.js
envFrom:
- configMapRef:
name: {{ .Release.Name }}-live-vars
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: {{ .Release.Name }}-api-migrate
image: {{ .Values.services.api.image | default "registry.plane.tools/plane/backend-enterprise" }}:{{ .Values.planeVersion }}
image: {{ .Values.services.api.image | default "artifacts.plane.so/makeplane/backend-commercial" }}:{{ .Values.planeVersion }}
command:
- ./bin/docker-entrypoint-migrator.sh
imagePullPolicy: {{ .Values.services.api.pullPolicy | default "Always" }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ spec:
timestamp: {{ now | quote }}
spec:
containers:
- image: {{ .Values.services.monitor.image | default "registry.plane.tools/plane/monitor-enterprise" }}:{{ .Values.planeVersion }}
- image: {{ .Values.services.monitor.image | default "artifacts.plane.so/makeplane/monitor-commercial" }}:{{ .Values.planeVersion }}
imagePullPolicy: {{ .Values.services.monitor.pullPolicy | default "Always" }}
name: {{ .Release.Name }}-monitor
stdin: true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ spec:
containers:
- name: {{ .Release.Name }}-silo
imagePullPolicy: Always
image: {{ .Values.services.silo.image | default "registry.plane.tools/plane/silo-enterprise" }}:{{ .Values.planeVersion }}
image: {{ .Values.services.silo.image | default "artifacts.plane.so/makeplane/silo-commercial" }}:{{ .Values.planeVersion }}
stdin: true
tty: true
resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
containers:
- name: {{ .Release.Name }}-space
imagePullPolicy: {{ .Values.services.space.pullPolicy | default "Always" }}
image: {{ .Values.services.space.image | default "registry.plane.tools/plane/space-enterprise" }}:{{ .Values.planeVersion }}
image: {{ .Values.services.space.image | default "artifacts.plane.so/makeplane/space-commercial" }}:{{ .Values.planeVersion }}
stdin: true
tty: true
resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ spec:
containers:
- name: {{ .Release.Name }}-web
imagePullPolicy: {{ .Values.services.web.pullPolicy | default "Always" }}
image: {{ .Values.services.web.image | default "registry.plane.tools/plane/web-enterprise" }}:{{ .Values.planeVersion }}
image: {{ .Values.services.web.image | default "artifacts.plane.so/makeplane/web-commercial" }}:{{ .Values.planeVersion }}
stdin: true
tty: true
resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ spec:
containers:
- name: {{ .Release.Name }}-worker
imagePullPolicy: {{ .Values.services.api.pullPolicy | default "Always" }}
image: {{ .Values.services.api.image | default "registry.plane.tools/plane/backend-enterprise" }}:{{ .Values.planeVersion }}
image: {{ .Values.services.api.image | default "artifacts.plane.so/makeplane/backend-commercial" }}:{{ .Values.planeVersion }}
stdin: true
tty: true
resources:
Expand Down
25 changes: 13 additions & 12 deletions charts/plane-enterprise/values.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
planeVersion: v1.8.3
planeVersion: v1.9.0

dockerRegistry:
enabled: false
registry: registry.plane.tools
registry: 'index.docker.io/v1/'
loginid: ''
password: ''

Expand Down Expand Up @@ -30,15 +30,15 @@ ssl:
services:
redis:
local_setup: true
image: registry.plane.tools/plane/valkey:7.2.5-alpine
image: valkey/valkey:7.2.5-alpine
servicePort: 6379
volumeSize: 500Mi
pullPolicy: IfNotPresent
assign_cluster_ip: false

postgres:
local_setup: true
image: registry.plane.tools/plane/postgres:15.7-alpine
image: postgres:15.7-alpine
servicePort: 5432
volumeSize: 2Gi
pullPolicy: IfNotPresent
Expand All @@ -58,7 +58,7 @@ services:

minio:
local_setup: true
image: registry.plane.tools/plane/minio:latest
image: minio/minio:latest
image_mc: minio/mc:latest
volumeSize: 3Gi
pullPolicy: IfNotPresent
Expand All @@ -72,14 +72,14 @@ services:
replicas: 1
memoryLimit: 1000Mi
cpuLimit: 500m
image: registry.plane.tools/plane/web-enterprise
image: artifacts.plane.so/makeplane/web-commercial
pullPolicy: Always
assign_cluster_ip: false

monitor:
memoryLimit: 1000Mi
cpuLimit: 500m
image: registry.plane.tools/plane/monitor-enterprise
image: artifacts.plane.so/makeplane/monitor-commercial
pullPolicy: Always
volumeSize: 100Mi
assign_cluster_ip: false
Expand All @@ -88,31 +88,31 @@ services:
replicas: 1
memoryLimit: 1000Mi
cpuLimit: 500m
image: registry.plane.tools/plane/space-enterprise
image: artifacts.plane.so/makeplane/space-commercial
pullPolicy: Always
assign_cluster_ip: false

admin:
replicas: 1
memoryLimit: 1000Mi
cpuLimit: 500m
image: registry.plane.tools/plane/admin-enterprise
image: artifacts.plane.so/makeplane/admin-commercial
pullPolicy: Always
assign_cluster_ip: false

live:
replicas: 1
memoryLimit: 1000Mi
cpuLimit: 500m
image: registry.plane.tools/plane/live-enterprise
image: artifacts.plane.so/makeplane/live-commercial
pullPolicy: Always
assign_cluster_ip: false

api:
replicas: 1
memoryLimit: 1000Mi
cpuLimit: 500m
image: registry.plane.tools/plane/backend-enterprise
image: artifacts.plane.so/makeplane/backend-commercial
pullPolicy: Always
assign_cluster_ip: false

Expand All @@ -131,7 +131,7 @@ services:
replicas: 1
memoryLimit: 1000Mi
cpuLimit: 500m
image: registry.plane.tools/plane/silo-enterprise
image: artifacts.plane.so/makeplane/silo-commercial
pullPolicy: Always
assign_cluster_ip: false
connectors:
Expand Down Expand Up @@ -194,6 +194,7 @@ env:
live_sentry_dsn: ""
live_sentry_environment: ""
live_sentry_traces_sample_rate: ""
live_server_secret_key: "htbqvBJAgpm9bzvf3r4urJer0ENReatceh"

silo_envs:
sentry_dsn: ''
Expand Down