diff --git a/charts/plane-ce/Chart.yaml b/charts/plane-ce/Chart.yaml index 44e3faf..3189c93 100644 --- a/charts/plane-ce/Chart.yaml +++ b/charts/plane-ce/Chart.yaml @@ -5,7 +5,7 @@ description: Meet Plane. An open-source software development tool to manage issu type: application -version: 1.0.24 +version: 1.0.25 appVersion: "0.22.0" home: https://plane.so diff --git a/charts/plane-ce/questions.yml b/charts/plane-ce/questions.yml index 00d5ad1..70ea88c 100644 --- a/charts/plane-ce/questions.yml +++ b/charts/plane-ce/questions.yml @@ -248,7 +248,7 @@ questions: - variable: postgres.image label: "Docker Image" type: string - default: "postgres:15.5-alpine" + default: "postgres:15.7-alpine" show_if: "postgres.local_setup=true" - variable: postgres.servicePort label: Service Port @@ -366,6 +366,11 @@ questions: type: string default: "minio/minio:latest" show_if: "minio.local_setup=true" + - variable: minio.image_mc + label: "MinIO Client Docker Image" + type: string + default: "minio/mc:latest" + show_if: "minio.local_setup=true" - variable: minio.root_user label: "Root User" type: string diff --git a/charts/plane-ce/templates/workloads/minio.stateful.yaml b/charts/plane-ce/templates/workloads/minio.stateful.yaml index e32b4df..a8fad51 100644 --- a/charts/plane-ce/templates/workloads/minio.stateful.yaml +++ b/charts/plane-ce/templates/workloads/minio.stateful.yaml @@ -115,7 +115,7 @@ spec: - secretRef: name: {{ .Release.Name }}-doc-store-secrets optional: false - image: minio/mc + image: {{ .Values.minio.image_mc }} imagePullPolicy: {{ .Values.minio.pullPolicy }} name: {{ .Release.Name }}-minio-bucket serviceAccount: {{ .Release.Name }}-srv-account diff --git a/charts/plane-ce/values.yaml b/charts/plane-ce/values.yaml index c3d5430..53b9543 100644 --- a/charts/plane-ce/values.yaml +++ b/charts/plane-ce/values.yaml @@ -36,7 +36,7 @@ redis: postgres: local_setup: true - image: postgres:15.5-alpine + image: postgres:15.7-alpine servicePort: 5432 cliConnectPort: "" storageClass: longhorn @@ -59,6 +59,7 @@ rabbitmq: minio: image: minio/minio:latest + image_mc: minio/mc:latest local_setup: true pullPolicy: IfNotPresent root_password: password diff --git a/charts/plane-enterprise/Chart.yaml b/charts/plane-enterprise/Chart.yaml index aafd434..2b5eb71 100644 --- a/charts/plane-enterprise/Chart.yaml +++ b/charts/plane-enterprise/Chart.yaml @@ -5,7 +5,7 @@ description: Meet Plane. An Enterprise software development tool to manage issue type: application -version: 1.0.12 +version: 1.0.13 appVersion: "1.3.1" home: https://plane.so/ diff --git a/charts/plane-enterprise/questions.yml b/charts/plane-enterprise/questions.yml index 3a687ca..e16bfd6 100644 --- a/charts/plane-enterprise/questions.yml +++ b/charts/plane-enterprise/questions.yml @@ -285,7 +285,7 @@ questions: - variable: services.postgres.image label: "Docker Image" type: string - default: "registry.plane.tools/plane/postgres:15.5-alpine" + default: "registry.plane.tools/plane/postgres:15.7-alpine" show_if: "services.postgres.local_setup=true" - variable: services.postgres.servicePort label: Service Port @@ -384,6 +384,11 @@ questions: type: string default: "registry.plane.tools/plane/minio:latest" show_if: "services.minio.local_setup=true" + - variable: services.minio.image_mc + label: "MinIO Client Docker Image" + type: string + default: "registry.plane.tools/plane/mc:latest" + show_if: "services.minio.local_setup=true" - variable: services.minio.root_user label: "Root User" type: string diff --git a/charts/plane-enterprise/templates/workloads/minio.stateful.yaml b/charts/plane-enterprise/templates/workloads/minio.stateful.yaml index 6092d6a..9fe13e2 100644 --- a/charts/plane-enterprise/templates/workloads/minio.stateful.yaml +++ b/charts/plane-enterprise/templates/workloads/minio.stateful.yaml @@ -115,7 +115,7 @@ spec: - secretRef: name: {{ .Release.Name }}-doc-store-secrets optional: false - image: minio/mc + image: {{ .Values.services.minio.image_mc }} imagePullPolicy: Always name: {{ .Release.Name }}-minio-bucket serviceAccount: {{ .Release.Name }}-srv-account diff --git a/charts/plane-enterprise/values.yaml b/charts/plane-enterprise/values.yaml index 9359282..648ffe8 100644 --- a/charts/plane-enterprise/values.yaml +++ b/charts/plane-enterprise/values.yaml @@ -37,7 +37,7 @@ services: postgres: local_setup: true - image: registry.plane.tools/plane/postgres:15.5-alpine + image: registry.plane.tools/plane/postgres:15.7-alpine servicePort: 5432 cliConnectPort: '' volumeSize: 2Gi @@ -57,6 +57,7 @@ services: minio: local_setup: true image: registry.plane.tools/plane/minio:latest + image_mc: registry.plane.tools/plane/mc:latest volumeSize: 3Gi root_user: admin root_password: password