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
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: 1.3.2
version: 1.3.3
appVersion: "1.13.0"

home: https://plane.so/
Expand Down
12 changes: 2 additions & 10 deletions charts/plane-enterprise/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,21 +86,13 @@
```

## Available customizations

<!-- ### Docker registry

| Setting | Default | Required | Description |
|---|:---:|:---:|---|
| dockerRegistry.enabled | false | | Plane uses a private Docker registry which needs authenticated login. This must be set to `true` to install Plane Enterprise. |
| dockerRegistry.registry | registry.plane.tools| Yes | The host that will serve the required Docker images; Don't change this. |
| dockerRegistry.loginid | | Yes | Sets the `loginid` for the Docker registry. This is the same as the REG_USER_ID value on prime. plane.so |
| dockerRegistry.password | | Yes | Sets the `password` for the Docker registry. This is the same as the REG_PASSWORD value on prime.plane.so|
-->

### License

| Setting | Default | Required | Description |
|---|:---:|:---:|---|
| planeVersion | v1.13.0 | Yes | Specifies the version of Plane to be deployed. Copy this from prime.plane.so. |
| airgapped.enabled | false | No | Specifies the airgapped mode the Plane API runs in. |
| 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. |

### Postgres
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 @@ -62,6 +62,10 @@ data:
LIVE_BASE_URL: "http://{{ .Release.Name }}-live.{{ .Release.Namespace }}.svc.cluster.local:3000/"
LIVE_BASE_PATH: "/live"

{{- if .Values.airgapped.enabled }}
IS_AIRGAPPED: "1"
{{- end }}

{{- if eq .Values.env.cors_allowed_origins "*"}}
CORS_ALLOWED_ORIGINS: "*"
{{- else if .Values.env.cors_allowed_origins }}
Expand Down
3 changes: 3 additions & 0 deletions charts/plane-enterprise/templates/config-secrets/monitor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ data:
DEPLOY_PLATFORM: "KUBERNETES"
API_URL: "http://{{ .Release.Name }}-api.{{ .Release.Namespace }}.svc.cluster.local:8000/"
API_HOSTNAME: "http://{{ .Release.Name }}-api.{{ .Release.Namespace }}.svc.cluster.local:8000/"
{{- if .Values.airgapped.enabled }}
IS_AIRGAPPED: "1"
{{- end }}
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,12 @@ spec:
name: {{ .Release.Name }}-monitor
stdin: true
tty: true
{{- if .Values.airgapped.enabled }}
command:
- prime-monitor
args:
- start-airgapped
{{- end }}
resources:
requests:
memory: {{ .Values.services.monitor.memoryRequest | default "50Mi" | 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 @@ -10,6 +10,9 @@ license:
licenseServer: https://prime.plane.so
licenseDomain: 'plane.example.com'

airgapped:
enabled: false

ingress:
enabled: true
minioHost: ''
Expand Down