-
Notifications
You must be signed in to change notification settings - Fork 31
release: Plane-EE v3.1.0 #276
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
1556320
30ac77a
dfa566f
8f61938
f7a672e
da96e4f
cbb7d5a
2217593
cb315ae
7685fbc
a76f629
1b1a28a
4dfd37a
c0ce857
0c6ed12
97a7496
0129605
cdf1177
2d2b4a9
2224970
f4f011b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,6 +14,13 @@ stringData: | |
| {{- else }} | ||
| REDIS_URL: {{ .Values.env.remote_redis_url | default "" | quote }} | ||
| {{- end }} | ||
| {{- if .Values.services.rabbitmq.local_setup }} | ||
| AMQP_URL: "amqp://{{ .Values.services.rabbitmq.default_user }}:{{ .Values.services.rabbitmq.default_password }}@{{ .Release.Name }}-rabbitmq.{{ .Release.Namespace }}.svc.{{ .Values.env.default_cluster_domain | default "cluster.local" }}/" | ||
| {{- else if .Values.services.rabbitmq.external_rabbitmq_url }} | ||
| AMQP_URL: {{ .Values.services.rabbitmq.external_rabbitmq_url | quote }} | ||
| {{- else }} | ||
| AMQP_URL: "" | ||
| {{- end }} | ||
|
Comment on lines
+17
to
+23
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🗄️ Data Integrity & Integration | 🟡 Minor | ⚡ Quick win 🧩 Analysis chain🏁 Script executed: #!/bin/bash
set -euo pipefail
# Inspect whether the RabbitMQ Service consumes the public servicePort value.
fd -e yaml -e yml . charts/plane-enterprise/templates |
xargs rg -n -C 4 'services\.rabbitmq\.servicePort|rabbitmq.*servicePort|port:|targetPort:'Repository: makeplane/helm-charts Length of output: 38940 Include When 🤖 Prompt for AI Agents |
||
| {{- end }} | ||
| --- | ||
| apiVersion: v1 | ||
|
|
@@ -41,4 +48,13 @@ data: | |
| {{- else }} | ||
| IFRAMELY_URL: http://{{ .Release.Name }}-iframely.{{ .Release.Namespace }}.svc.{{ .Values.env.default_cluster_domain | default "cluster.local" }}:8061/ | ||
| {{- end }} | ||
|
|
||
| {{- if or .Values.ssl.tls_secret_name (and .Values.ssl.createIssuer .Values.ssl.generateCerts) }} | ||
| EXPORT_DOWNLOAD_BASE_URL: {{ .Values.env.export_download_base_url | default (printf "https://%s" .Values.license.licenseDomain) | quote }} | ||
| {{- else }} | ||
| EXPORT_DOWNLOAD_BASE_URL: {{ .Values.env.export_download_base_url | default (printf "http://%s" .Values.license.licenseDomain) | quote }} | ||
| {{- end }} | ||
|
|
||
| EXPORT_QUEUE_NAME: {{ .Values.env.export_queue_name | default "plane-exports" | quote }} | ||
|
|
||
| --- | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
|
|
||
| {{- if .Values.services.live_exporter.enabled }} | ||
| apiVersion: apps/v1 | ||
| kind: Deployment | ||
| metadata: | ||
| namespace: {{ .Release.Namespace }} | ||
| name: {{ .Release.Name }}-live-exporter-wl | ||
| {{- include "plane.labelsAndAnnotations" (dict "context" $ "values" .Values.services.live_exporter) }} | ||
| spec: | ||
| replicas: {{ .Values.services.live_exporter.replicas | default 1 }} | ||
| selector: | ||
| matchLabels: | ||
| app.name: {{ .Release.Namespace }}-{{ .Release.Name }}-live-exporter | ||
| template: | ||
| metadata: | ||
| namespace: {{ .Release.Namespace }} | ||
| labels: | ||
| app.name: {{ .Release.Namespace }}-{{ .Release.Name }}-live-exporter | ||
| {{- include "plane.commonLabels" $ | nindent 8 }} | ||
| annotations: | ||
| timestamp: {{ now | quote }} | ||
| spec: | ||
| {{- include "plane.podScheduling" .Values.services.live_exporter }} | ||
| {{- include "plane.podSecurityContext" . }} | ||
| containers: | ||
| - name: {{ .Release.Name }}-live-exporter | ||
| {{- include "plane.containerSecurityContext" . }} | ||
| imagePullPolicy: {{ .Values.services.live_exporter.pullPolicy | default "Always" }} | ||
| image: {{ .Values.services.live_exporter.image | default "makeplane/live-commercial" }}:{{ .Values.planeVersion }} | ||
| stdin: true | ||
| tty: true | ||
| resources: | ||
| requests: | ||
| memory: {{ .Values.services.live_exporter.memoryRequest | default "50Mi" | quote }} | ||
| cpu: {{ .Values.services.live_exporter.cpuRequest | default "50m" | quote }} | ||
| limits: | ||
| memory: {{ .Values.services.live_exporter.memoryLimit | default "2000Mi" | quote }} | ||
| cpu: {{ .Values.services.live_exporter.cpuLimit | default "1000m" | quote }} | ||
| envFrom: | ||
| - configMapRef: | ||
| name: {{ .Release.Name }}-live-vars | ||
| optional: false | ||
| - secretRef: | ||
| name: {{ if not (empty .Values.external_secrets.live_env_existingSecret) }}{{ .Values.external_secrets.live_env_existingSecret }}{{ else }}{{ .Release.Name }}-live-secrets{{ end }} | ||
| optional: false | ||
| env: | ||
| - name: LIVE_MODE | ||
| value: "exporter" | ||
| {{- if .Values.extraEnv }} | ||
| {{- toYaml .Values.extraEnv | nindent 10 }} | ||
| {{- end }} | ||
| serviceAccount: {{ .Release.Name }}-srv-account | ||
| serviceAccountName: {{ .Release.Name }}-srv-account | ||
| {{- end }} |
Uh oh!
There was an error while loading. Please reload this page.