Skip to content

Commit 2c851fb

Browse files
authored
fix: adjust uploads path regex to support trailing slashes (#57)
* fix: adjust uploads path regex to support trailing slashes * fix: removed regex for uploads path * revert: ce changes and chart version * add: graphql path in ingress * chore: changed ee Chart Version
1 parent fca0d15 commit 2c851fb

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

charts/plane-ce/templates/config-secrets/app-env.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ metadata:
66
name: {{ .Release.Name }}-app-secrets
77
data:
88
SECRET_KEY: {{ .Values.env.secret_key | default "60gp0byfz2dvffa45cxl20p1scy9xbpf6d8c5y0geejgkyp1b5" | b64enc | quote }}
9-
9+
1010
---
1111

1212
apiVersion: v1

charts/plane-enterprise/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: Meet Plane. An Enterprise software development tool to manage issue
55

66
type: application
77

8-
version: 1.0.12
8+
version: 1.1.0
99
appVersion: "1.3.1"
1010

1111
home: https://plane.so/

charts/plane-enterprise/templates/ingress.yaml

+8-1
Original file line numberDiff line numberDiff line change
@@ -59,13 +59,20 @@ spec:
5959
name: {{ .Release.Name }}-live
6060
path: /live/
6161
pathType: Prefix
62+
- backend:
63+
service:
64+
port:
65+
number: 8000
66+
name: {{ .Release.Name }}-api
67+
path: /graphql/
68+
pathType: Prefix
6269
{{- if and .Values.services.minio.local_setup .Values.env.docstore_bucket }}
6370
- backend:
6471
service:
6572
port:
6673
number: 9000
6774
name: {{ .Release.Name }}-minio
68-
path: /{{ .Values.env.docstore_bucket }}/
75+
path: /{{ .Values.env.docstore_bucket }}
6976
pathType: Prefix
7077
{{- end }}
7178

0 commit comments

Comments
 (0)