Skip to content

Commit

Permalink
Postgres version update and minio client image add in values file
Browse files Browse the repository at this point in the history
  • Loading branch information
akshat5302 committed Oct 1, 2024
1 parent 70c7664 commit a0b42f4
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 8 deletions.
2 changes: 1 addition & 1 deletion charts/plane-ce/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 6 additions & 1 deletion charts/plane-ce/questions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/plane-ce/templates/workloads/minio.stateful.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion charts/plane-ce/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ redis:

postgres:
local_setup: true
image: postgres:15.5-alpine
image: postgres:15.7-alpine
servicePort: 5432
cliConnectPort: ""
storageClass: longhorn
Expand All @@ -59,6 +59,7 @@ rabbitmq:

minio:
image: minio/minio:latest
image_mc: minio/mc:latest
local_setup: true
pullPolicy: IfNotPresent
root_password: password
Expand Down
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.0.12
version: 1.0.13
appVersion: "1.3.1"

home: https://plane.so/
Expand Down
7 changes: 6 additions & 1 deletion charts/plane-enterprise/questions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion charts/plane-enterprise/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit a0b42f4

Please sign in to comment.