Skip to content

Commit

Permalink
Merge branch 'add-tls-sub-domain-param' into 90-finally-remove-psps-f…
Browse files Browse the repository at this point in the history
…rom-postgreslet-helm-chart
  • Loading branch information
eberlep committed Jun 19, 2024
2 parents c2ce0d9 + 7acc1d6 commit f264426
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/postgreslet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ version: 0.13.0-devel
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v0.13.1"
appVersion: "v0.14.0"
2 changes: 2 additions & 0 deletions charts/postgreslet/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@ data:
STANDBY_CLUSTERS_SOURCE_RANGES: {{ .Values.postgreslet.standbyClustersSourceRanges | quote }}
STORAGE_CLASS: {{ .Values.postgreslet.storageClass | quote }}
TENANT: {{ .Values.postgreslet.tenant | quote }}
TLS_CLUSTER_ISSUER: {{ .Values.postgreslet.tlsClusterIssuer | quote }}
TLS_SUB_DOMAIN: {{ .Values.postgreslet.tlsSubDomain | quote }}
kind: ConfigMap
metadata:
name: {{ include "postgreslet.fullname" . }}
Expand Down
6 changes: 5 additions & 1 deletion charts/postgreslet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replicaCount: 1
image:
repository: r.metal-stack.io/postgreslet
pullPolicy: IfNotPresent
tag: "v0.13.1"
tag: "v0.14.0"

imagePullSecrets: []
nameOverride: ""
Expand Down Expand Up @@ -136,6 +136,10 @@ postgreslet:
enableRandomStorageEncrytionSecret: false
# enableBootsrtapStandbyFromS3 enables the bootstrapping of remote standby clusters via S3 instead of pgbasebackup
enableBootsrtapStandbyFromS3: true
# tlsClusterIssuer An existing cert-manager Cluster Issuer to use when requesting TLS certificates per database instance. The startup of the postgres pod will fail if an issuer is configured but not working.
tlsClusterIssuer: ""
# tlsSubDomain when enabled, uses the given subdomain (in combination with the postgres instance's UUID) as common name when requesting the certificate
tlsSubDomain: ""

# addRandomLabel adds a random label each time the deployment.yaml is rendered, forcing k8s to update that deployment.
# In combination with image.PullPolicy=Always, this effetifely forces a reload of the pod, even if the image tag stays the same.
Expand Down

0 comments on commit f264426

Please sign in to comment.