Compare commits
1 Commits
libation-0
...
postgres-c
Author | SHA1 | Date | |
---|---|---|---|
cd91a16c75 |
@@ -1,6 +1,6 @@
|
|||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: postgres-cluster
|
name: postgres-cluster
|
||||||
version: 2.5.0
|
version: 3.0.0
|
||||||
description: Chart for cloudnative-pg cluster
|
description: Chart for cloudnative-pg cluster
|
||||||
keywords:
|
keywords:
|
||||||
- database
|
- database
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
backup:
|
backup:
|
||||||
retentionPolicy: {{ .Values.backup.retentionPolicy }}
|
retentionPolicy: {{ .Values.backup.retentionPolicy }}
|
||||||
barmanObjectStore:
|
barmanObjectStore:
|
||||||
destinationPath: "s3://{{ .Values.backup.endpointBucket }}/{{ .Values.kubernetesClusterName }}/{{ include "cluster.backupName" . }}"
|
destinationPath: {{ .Values.backup.destinationPath }}
|
||||||
endpointURL: {{ .Values.backup.endpointURL }}
|
endpointURL: {{ .Values.backup.endpointURL }}
|
||||||
{{- if .Values.backup.endpointCA }}
|
{{- if .Values.backup.endpointCA }}
|
||||||
endpointCA:
|
endpointCA:
|
||||||
|
@@ -63,7 +63,7 @@ externalClusters:
|
|||||||
- name: {{ include "cluster.recoveryServerName" . }}
|
- name: {{ include "cluster.recoveryServerName" . }}
|
||||||
barmanObjectStore:
|
barmanObjectStore:
|
||||||
serverName: {{ include "cluster.recoveryServerName" . }}
|
serverName: {{ include "cluster.recoveryServerName" . }}
|
||||||
destinationPath: "s3://{{ .Values.recovery.endpointBucket }}/{{ .Values.kubernetesClusterName }}/postgresql/{{ include "cluster.recoveryInstanceName" . }}"
|
destinationPath: {{ .Values.recovery.destinationPath }}
|
||||||
endpointURL: {{ .Values.recovery.endpointURL }}
|
endpointURL: {{ .Values.recovery.endpointURL }}
|
||||||
{{- with .Values.recovery.endpointCA }}
|
{{- with .Values.recovery.endpointCA }}
|
||||||
endpointCA:
|
endpointCA:
|
||||||
|
@@ -15,9 +15,6 @@ type: postgresql
|
|||||||
# * `replica` - Create database as a replica from another CNPG cluster
|
# * `replica` - Create database as a replica from another CNPG cluster
|
||||||
mode: standalone
|
mode: standalone
|
||||||
|
|
||||||
# Generates bucket name and path for recovery and backup, creates: <endpointBucket>/<clusterName>/postgresql/{{ .Release.Name }}
|
|
||||||
kubernetesClusterName: ""
|
|
||||||
|
|
||||||
cluster:
|
cluster:
|
||||||
instances: 3
|
instances: 3
|
||||||
|
|
||||||
@@ -84,7 +81,8 @@ cluster:
|
|||||||
# BootstrapInitDB is the configuration of the bootstrap process when initdb is used.
|
# BootstrapInitDB is the configuration of the bootstrap process when initdb is used.
|
||||||
# See: https://cloudnative-pg.io/documentation/current/bootstrap/
|
# See: https://cloudnative-pg.io/documentation/current/bootstrap/
|
||||||
# See: https://cloudnative-pg.io/documentation/current/cloudnative-pg.v1/#postgresql-cnpg-io-v1-bootstrapinitdb
|
# See: https://cloudnative-pg.io/documentation/current/cloudnative-pg.v1/#postgresql-cnpg-io-v1-bootstrapinitdb
|
||||||
initdb: {}
|
initdb:
|
||||||
|
{}
|
||||||
# database: app
|
# database: app
|
||||||
# owner: app
|
# owner: app
|
||||||
# secret: "" # Name of the secret containing the initial credentials for the owner of the user database. If empty a new secret will be created from scratch
|
# secret: "" # Name of the secret containing the initial credentials for the owner of the user database. If empty a new secret will be created from scratch
|
||||||
@@ -96,10 +94,9 @@ recovery:
|
|||||||
pitrTarget:
|
pitrTarget:
|
||||||
time: ""
|
time: ""
|
||||||
|
|
||||||
# Overrides the provider specific default endpoint. Defaults to:
|
# S3 https endpoint and the s3:// path
|
||||||
# S3: https://s3.<region>.amazonaws.com"
|
|
||||||
endpointURL: ""
|
endpointURL: ""
|
||||||
endpointBucket: ""
|
destinationPath: ""
|
||||||
|
|
||||||
# Specifies secret that contains a CA bundle to validate a privately signed certificate, should contain the key ca-bundle.crt
|
# Specifies secret that contains a CA bundle to validate a privately signed certificate, should contain the key ca-bundle.crt
|
||||||
endpointCA: ""
|
endpointCA: ""
|
||||||
@@ -160,9 +157,11 @@ replica:
|
|||||||
backup:
|
backup:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
|
||||||
# Overrides the provider specific default endpoint
|
# S3 endpoint starting with "https://"
|
||||||
endpointURL: ""
|
endpointURL: ""
|
||||||
endpointBucket: ""
|
|
||||||
|
# S3 path starting with "s3://"
|
||||||
|
destinationPath: ""
|
||||||
|
|
||||||
# Specifies secret that contains a CA bundle to validate a privately signed certificate, should contain the key ca-bundle.crt
|
# Specifies secret that contains a CA bundle to validate a privately signed certificate, should contain the key ca-bundle.crt
|
||||||
endpointCA: ""
|
endpointCA: ""
|
||||||
|
Reference in New Issue
Block a user