Skip to content

Commit 735f537

Browse files
committed
fix(postgresql-cluster): plans describe typo
1 parent 510b272 commit 735f537

9 files changed

Lines changed: 20 additions & 7 deletions

File tree

addons/index.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
apiVersion: v1
22
entries:
3+
cloudbeaver:
4+
- version: 23
5+
description: "Cloud Database Manager."
36
mysql-cluster:
47
- version: 8.0
58
description: "The world's most popular open source database cluster."

addons/postgresql-cluster/15/chart/postgresql-cluster/values.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,11 @@ preInitScript: |
8282
track_commit_timestamp: "off"
8383
archive_mode: "on"
8484
archive_timeout: 300s
85+
{{- if .Values.walG.enabled }}
8586
archive_command: sh /opt/drycc/postgresql/walbackup.sh %p
87+
{{- else }}
88+
archive_command: /bin/true
89+
{{- end }}
8690
# timescaledb.license: 'timescale'
8791
shared_preload_libraries: 'auto_explain,pg_stat_statements'
8892
log_destination: 'csvlog'
@@ -245,7 +249,7 @@ metrics:
245249
memory: 512Mi
246250
walG:
247251
# Specifies whether Wal-G should be enabled
248-
enabled: true
252+
enabled: false
249253
# Cron schedule for doing base backups
250254
scheduleCronJob: "*/5 * * * *"
251255
# Amount of base backups to retain

addons/postgresql-cluster/15/meta.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,10 @@ allow_parameters:
2323
description: "Whether to enable metrics. default true"
2424
- name: "walG.enabled"
2525
description: "Whether to use S3 for backup your data. default true . ps: Make sure there is a available S3 "
26+
- name: "walG.s3.awsAccessKeyID"
27+
description: "S3 awsAccessKeyID"
28+
- name: "walG.s3.awsSecretAccessKey"
29+
description: "S3 awsSecretAccessKey"
30+
- name: "walG.s3.walGS3Prefix"
31+
description: "S3 walGS3Prefix : etc . s3://bucket001"
2632
archive: false
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "standard-100"
22
id: c44160a6-5ec4-49e5-af1e-a1c1676871cf
3-
description: "Mysql Cluster standard-100 plan: Disk 100Gi ,vCPUs 4 , RAM 16G , DB MAX Connection 2000"
3+
description: "PostgreSQL Cluster standard-100 plan: Disk 100Gi ,vCPUs 4 , RAM 16G , DB MAX Connection 2000"
44
displayName: "standard-100"
55
bindable: true
66
maximum_polling_duration: 1800
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "standard-20"
22
id: edf8bdfe-b1dc-4f41-b042-801153794df7
3-
description: "Mysql Cluster standard-20 plan: Disk 20Gi ,vCPUs 2 , RAM 4G , DB MAX Connection 1000"
3+
description: "PostgreSQL Cluster standard-20 plan: Disk 20Gi ,vCPUs 2 , RAM 4G , DB MAX Connection 1000"
44
displayName: "standard-20"
55
bindable: true
66
maximum_polling_duration: 1800
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "standard-200"
22
id: a2160ac2-6c35-4162-b8a2-8dfb2e01816f
3-
description: "Mysql Cluster standard-200 plan: Disk 200Gi ,vCPUs 8 , RAM 32G , DB MAX Connection 2000"
3+
description: "PostgreSQL Cluster standard-200 plan: Disk 200Gi ,vCPUs 8 , RAM 32G , DB MAX Connection 2000"
44
displayName: "standard-200"
55
bindable: true
66
maximum_polling_duration: 1800
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "standard-400"
22
id: 16bfd3a8-1080-4731-93d0-bd90e6ba6dad
3-
description: "Mysql Cluster standard-400 plan: Disk 400Gi ,vCPUs 16 , RAM 64G , DB MAX Connection 2000"
3+
description: "PostgreSQL Cluster standard-400 plan: Disk 400Gi ,vCPUs 16 , RAM 64G , DB MAX Connection 2000"
44
displayName: "standard-400"
55
bindable: true
66
maximum_polling_duration: 1800
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "standard-50"
22
id: 0542f411-4e7b-46af-966c-c9989e54873c
3-
description: "Mysql Cluster standard-50 plan: Disk 50Gi ,vCPUs 2 , RAM 8G , DB MAX Connection 2000"
3+
description: "PostgreSQL standard-50 plan: Disk 50Gi ,vCPUs 2 , RAM 8G , DB MAX Connection 2000"
44
displayName: "standard-50"
55
bindable: true
66
maximum_polling_duration: 1800
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: "standard-800"
22
id: 60f37e20-e69e-4f6f-9cce-e43caec34963
3-
description: "Mysql Cluster standard-800 plan: Disk 800Gi ,vCPUs 32 , RAM 128G , DB MAX Connection 2000"
3+
description: "PostgreSQL Cluster standard-800 plan: Disk 800Gi ,vCPUs 32 , RAM 128G , DB MAX Connection 2000"
44
displayName: "standard-800"
55
bindable: true
66
maximum_polling_duration: 1800

0 commit comments

Comments
 (0)