Skip to content

Commit f645a52

Browse files
authored
Merge pull request #7033 from EnterpriseDB/automatic_docs_update/repo_EnterpriseDB/cloud-native-postgres/ref_refs/tags/v1.28.0-rc2
2 parents 482722c + b7a4841 commit f645a52

33 files changed

+214
-189
lines changed

product_docs/docs/postgres_for_kubernetes/1/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ directoryDefaults:
77
version: "1.27.1"
88
displayBanner: |
99
We're preparing the next release of {{name.ln}}, and a release candidate is available.
10-
For more information, see <a href="/docs/postgres_for_kubernetes/preview/preview_version/">the v1.28.0-rc1 documentation</a>
10+
For more information, see <a href="/docs/postgres_for_kubernetes/preview/preview_version/">the v1.28.0-rc2 documentation</a>
1111
navigation:
1212
- rel_notes
1313
- '!commercial_support.mdx'

product_docs/docs/postgres_for_kubernetes/1/preview_version.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ are not backwards compatible and could be removed entirely.
3838

3939
## Current Preview Version
4040

41-
The current preview version is **1.28.0-rc1**.
41+
The current preview version is **1.28.0-rc2**.
4242

4343
For more information on the current preview version and how to test, please view the links below:
4444

45-
- [Announcement](/postgres_for_kubernetes/preview/rel_notes/1_28_0-rc1_rel_notes)
45+
- [Announcement](/postgres_for_kubernetes/preview/rel_notes/1_28_0-rc2_rel_notes)
4646
- [Documentation](/postgres_for_kubernetes/preview/)

product_docs/docs/postgres_for_kubernetes/preview/backup.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ as they can simply rely on the WAL archive to synchronize across long
8585
distances, extending disaster recovery goals across different regions.
8686

8787
When you [configure a WAL archive](wal_archiving.md), {{name.ln}} provides
88-
out-of-the-box an [RPO](before_you_start.md#rpo) &lt;= 5 minutes for disaster
88+
out-of-the-box an [RPO](before_you_start.md#rpo) 5 minutes for disaster
8989
recovery, even across regions.
9090

9191
!!! Important

product_docs/docs/postgres_for_kubernetes/preview/before_you_start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Before You Start'
2+
title: 'Before you start'
33
originalFilePath: 'src/before_you_start.md'
44
---
55

product_docs/docs/postgres_for_kubernetes/preview/cluster_conf.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Instance pod configuration'
2+
title: 'Instance Pod configuration'
33
originalFilePath: 'src/cluster_conf.md'
44
---
55

product_docs/docs/postgres_for_kubernetes/preview/cnp_i.mdx

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,32 @@ spec:
166166
You can provide your own certificate bundles, but the recommended method is
167167
to use [Cert-manager](https://cert-manager.io).
168168

169+
#### Customizing the Certificate DNS Name
170+
171+
By default, {{name.ln}} uses the Service name as the server name for TLS
172+
verification when connecting to the plugin. If your environment requires the
173+
certificate to have a different DNS name (e.g., `barman-cloud.svc`), you can
174+
customize it using the `k8s.enterprisedb.io/pluginServerName` annotation:
175+
176+
```yaml
177+
apiVersion: v1
178+
kind: Service
179+
metadata:
180+
annotations:
181+
k8s.enterprisedb.io/pluginClientSecret: cnpg-i-plugin-example-client-tls
182+
k8s.enterprisedb.io/pluginServerSecret: cnpg-i-plugin-example-server-tls
183+
k8s.enterprisedb.io/pluginPort: "9090"
184+
k8s.enterprisedb.io/pluginServerName: barman-cloud.svc
185+
name: barman-cloud
186+
namespace: postgresql-operator-system
187+
spec:
188+
[...]
189+
```
190+
191+
This allows the operator to verify the plugin's certificate against the
192+
specified DNS name instead of the default Service name. The server certificate
193+
must include this DNS name in its Subject Alternative Names (SAN).
194+
169195
## Using a plugin
170196

171197
To enable a plugin, configure the `.spec.plugins` section in your `Cluster`

product_docs/docs/postgres_for_kubernetes/preview/connection_pooling.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'Connection pooling'
2+
title: 'Connection Pooling'
33
originalFilePath: 'src/connection_pooling.md'
44
---
55

product_docs/docs/postgres_for_kubernetes/preview/declarative_database_management.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'PostgreSQL Database Management'
2+
title: 'PostgreSQL Database management'
33
originalFilePath: 'src/declarative_database_management.md'
44
---
55

product_docs/docs/postgres_for_kubernetes/preview/declarative_role_management.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: 'PostgreSQL Role Management'
2+
title: 'PostgreSQL Role management'
33
originalFilePath: 'src/declarative_role_management.md'
44
---
55

product_docs/docs/postgres_for_kubernetes/preview/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: The {{name.ln}} operator is a fork based on CloudNativePG™ which
44
originalFilePath: src/index.md
55
indexCards: none
66
directoryDefaults:
7-
version: "1.28.0-rc1"
7+
version: "1.28.0-rc2"
88
displayBanner: |
99
This documentation covers the upcoming release of
1010
{{name.ln}}; you may want to read the docs for
@@ -166,7 +166,7 @@ version for 12-18 months before upgrading.
166166

167167
{{name.ln}} works with both PostgreSQL, EDB Postgres Extended and EDB Postgres
168168
Advanced server, and is available under the
169-
[EDB Limited Use License](https://www.enterprisedb.com/limited-use-license).
169+
[EDB End User License Agreement](https://www.enterprisedb.com/legal/EDB-Eula).
170170

171171
You can [evaluate {{name.ln}} for free](evaluation.md) as part of a trial subscription.
172172
You need a valid EDB subscription to use {{name.ln}} in production.

0 commit comments

Comments
 (0)