From f0aed3a00133af65c0598727b6b573f9280244c4 Mon Sep 17 00:00:00 2001 From: akshat5302 Date: Mon, 30 Sep 2024 18:16:39 +0530 Subject: [PATCH] Postgres version update and minio client image add in values file --- charts/plane-ce/Chart.yaml | 2 +- charts/plane-ce/questions.yml | 5 +++++ charts/plane-ce/templates/workloads/minio.stateful.yaml | 2 +- charts/plane-ce/values.yaml | 3 ++- charts/plane-enterprise/Chart.yaml | 2 +- charts/plane-enterprise/questions.yml | 5 +++++ .../plane-enterprise/templates/workloads/minio.stateful.yaml | 2 +- charts/plane-enterprise/values.yaml | 3 ++- 8 files changed, 18 insertions(+), 6 deletions(-) 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..fdc02e1 100644 --- a/charts/plane-ce/questions.yml +++ b/charts/plane-ce/questions.yml @@ -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 d636b92..7f4d42e 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.0" home: https://plane.so/ diff --git a/charts/plane-enterprise/questions.yml b/charts/plane-enterprise/questions.yml index b0ac1d9..50f357b 100644 --- a/charts/plane-enterprise/questions.yml +++ b/charts/plane-enterprise/questions.yml @@ -389,6 +389,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: "minio/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..5b72112 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: minio/mc:latest volumeSize: 3Gi root_user: admin root_password: password