Skip to content

Commit c5bbf81

Browse files
authored
Merge branch 'develop' into DOCS-1247-PGD-6.0-Docs
2 parents df385ff + c05b687 commit c5bbf81

File tree

110 files changed

+9729
-1412
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+9729
-1412
lines changed

.github/workflows/deploy-main.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,18 @@ jobs:
4141
if: ${{ !cancelled() }}
4242
runs-on: ubuntu-22.04
4343
steps:
44+
- name: publish release notes
45+
if: success()
46+
continue-on-error: true
47+
env:
48+
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49+
run: |
50+
draft_tag=`gh release list --repo EnterpriseDB/docs --limit 1 --json "isDraft,tagName" --jq '.[] | select(.isDraft) | .tagName'`
51+
if [[ -n "$draft_tag" ]]; then
52+
echo "Publishing draft release for: $draft_tag"
53+
gh release edit "$draft_tag" --repo EnterpriseDB/docs --draft=false
54+
fi
55+
4456
- uses: act10ns/slack@v2
4557
with:
4658
status: ${{ needs.deploy-to-netlify.result }}

.github/workflows/tools-events.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,19 @@ jobs:
3535
"deleted": ${{ github.event.deleted || false }}
3636
},
3737
"action": "${{ github.event.action }}",
38-
"number": "${{ github.event.number }}",
38+
"pull_request": {
39+
"url": "${{ github.event.pull_request && github.event.pull_request.url || '' }}",
40+
"number": "${{ github.event.pull_request && github.event.number || '' }}",
41+
"state": "${{ github.event.pull_request && github.event.pull_request.state || '' }}",
42+
"title": ${{ github.event.pull_request && toJSON(github.event.pull_request.title) || '""' }},
43+
"body": ${{ github.event.pull_request && toJSON(github.event.pull_request.body) || '""' }},
44+
"draft": ${{ github.event.pull_request && github.event.pull_request.draft || false }},
45+
"merged": ${{ github.event.pull_request && github.event.pull_request.merged || false }},
46+
"labels": ${{ github.event.pull_request && toJSON(github.event.pull_request.labels) || '[]' }}
47+
},
3948
"release": {
4049
"tag_name": ${{ github.event.release && toJSON(github.event.release.tag_name) || '""' }},
4150
"id": "${{ github.event.release && github.event.release.id || '' }}",
42-
"tag": ${{ github.event.release && toJSON(github.event.release.tag_name) || '""' }},
4351
"name": ${{ github.event.release && toJSON(github.event.release.name) || '""' }},
4452
"body": ${{ github.event.release && toJSON(github.event.release.body) || '""' }},
4553
"draft": ${{ github.event.release && github.event.release.draft || false }}

advocacy_docs/pg_extensions/otel/installing.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ Before you begin the installation process:
2626

2727
To set up the repository, go to [EDB repositories](https://www.enterprisedb.com/repos-downloads) and follow the instructions provided there.
2828

29+
If you are using RHEL 9, you also need to install the EPEL repository:
30+
```shell
31+
sudo dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm
32+
```
33+
2934

3035
### Install the package
3136

advocacy_docs/pg_extensions/pg_tuner/configuring.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ The following custom GUCs control the EDB Postgres Tuner `work_mem` tuning behav
4343

4444
- `edb_pg_tuner.buffer_size` — Maximum query count for tracking statistics. The default is 5000.
4545

46+
- `edb_pg_tuner.container_memory_limit_file_path` — Specifies the path to the file that contains the memory limit set by the container runtime, such as Docker or Kubernetes. This file is read by `edb_pg_tuner` to determine the maximum amount of memory available to the database process when running inside a container. Based on this limit, the tuner can generate optimised PostgreSQL configuration recommendations that are container-aware. The file is at `/sys/fs/cgroup/memory/memory.limit_in_bytes` by default.
47+
4648
## Recommended GUCs
4749

4850
EDB Postgres Tuner can recommend the following GUCs. The `static` category provides fixed recommendation settings. The `dynamic` category uses specific algorithms to suggest a better setting according to your workload or hardware resources.
Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
11
---
2-
title: CloudNativePG
2+
title: CloudNativePG
33
navTitle: CloudNativePG
44
navRootedTo: /edb-postgres-ai/platforms-and-tools/kubernetes
5-
description: EDB supports CloudNativePG.
5+
description: EDB supports CloudNativePG.
66
directoryDefaults:
77
iconName: logos/KubernetesMono
88
product: CloudNativePG
99

1010
---
1111

12-
CloudNativePG is the Kubernetes operator that covers the full lifecycle of a highly available Postgres database cluster with a primary/standby architecture, using native streaming replication.
12+
CloudNativePG is the Kubernetes operator that covers the full lifecycle of a highly available Postgres database cluster with a primary/standby architecture, using native streaming replication.
1313

1414
!!! Note
15-
Looking for CloudNativePG documentation? Head over to [cloudnative-pg.io/docs/](https://cloudnative-pg.io/docs/).
15+
Looking for CloudNativePG documentation? Head over to [cloudnative-pg.io/docs/](https://cloudnative-pg.io/docs/).
1616

17-
CloudNativePG was originally built by EDB, then released open source under Apache License 2.0 and submitted for CNCF Sandbox in April 2022. The source code repository is in [Github](https://github.com/cloudnative-pg/cloudnative-pg).
17+
CloudNativePG was originally built by EDB, then released open source under Apache License 2.0 and submitted for CNCF Sandbox in April 2022. The source code repository is in [Github](https://github.com/cloudnative-pg/cloudnative-pg).
1818

1919
Key features available include:
20+
2021
- Kubernetes API integration for high availability
2122
- Self-healing through failover and automated recreation of replicas
2223
- Capacity management with scale up/down capabilities
2324
- Planned switchovers for scheduled maintenance
2425
- Read-only and read-write Kubernetes services definitions
2526
- Rolling updates for Postgres minor versions and operator upgrades
2627
- Continuous backup and point-in-time recovery
27-
28-

package-lock.json

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

product_docs/docs/epas/17/database_administration/01_configuration_parameters/03_configuration_parameters_by_functionality/01_top_performance_related_parameters/08_max_wal_size.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ redirects:
1818

1919
**Required authorization to activate:** EDB Postgres Advanced Server service account
2020

21-
`max_wal_size` specifies the maximum size for the WAL to reach between automatic WAL checkpoints. This is a soft limit. WAL size can exceed `max_wal_size` under special circumstances, such as when under a heavy load, with a failing archive_command, or with a high `wal_keep_segments` setting.
21+
`max_wal_size` specifies the maximum size for the WAL to reach between automatic WAL checkpoints. This is a soft limit. WAL size can exceed `max_wal_size` under special circumstances, such as when under a heavy load, with a failing archive_command, or with a high `wal_keep_size` setting.
2222

2323
Increasing this parameter can increase the amount of time needed for crash recovery. You can set this parameter in the `postgresql.conf` file or on the server command line.

product_docs/docs/pem/10/pem_rel_notes/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ navTitle: Release notes
44
description: Release notes for Postgres Enterprise Manager 10.0 and later
55
indexCards: none
66
navigation:
7-
- pem_10.0.0_rel_notes
87
- pem_10.1.0_rel_notes
8+
- pem_10.0.0_rel_notes
99
originalFilePath: product_docs/docs/pem/10/pem_rel_notes/src/meta.yml
1010
editTarget: originalFilePath
1111
---
@@ -16,5 +16,5 @@ The Postgres Enterprise Manager documentation describes the latest version of Po
1616

1717
| Postgres Enterprise Manager version | Release Date |
1818
|---|---|
19-
| [10.0.0](./pem_10.0.0_rel_notes) | 24th Mar 2025 |
2019
| [10.1.0](./pem_10.1.0_rel_notes) | 15th May 2025 |
20+
| [10.0.0](./pem_10.0.0_rel_notes) | 24th Mar 2025 |

product_docs/docs/postgres_distributed_for_kubernetes/1/index.mdx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: EDB CloudNativePG Global Cluster
3-
description: EDB CloudNativePG Global Cluster is a Kubernetes operator designed to deploy and manage EDB Postgres Distributed clusters running in private, public, hybrid, or multi-cloud environments.
2+
title: EDB Postgres® AI for CloudNativePG Global Cluster
3+
description: EDB Postgres® AI for CloudNativePG Global Cluster is a Kubernetes operator designed to deploy and manage EDB Postgres Distributed clusters running in private, public, hybrid, or multi-cloud environments.
44
originalFilePath: src/index.md
55
indexCards: none
66
navigation:
@@ -41,13 +41,12 @@ directoryDefaults:
4141
iconName: logos/KubernetesMono
4242
displayBanner: >-
4343
We're in the process of migrating the documentation from the previous EDB
44-
Postgres Distributed for Kubernetes name to the new EDB CloudNativePG Global
45-
Cluster name. You may see references to both names in this documentation.
44+
Postgres Distributed for Kubernetes name to the new EDB Postgres® AI for CloudNativePG™ Global Cluster name. You may see references to both names in this documentation.
4645
pdf: true
4746

4847
---
4948

50-
EDB Postgres Distributed for Kubernetes (`PGD4K`) is an
49+
EDB Postgres® AI for CloudNativePG™ Global Cluster (also `CNPG-GC` or `PGD4K`) is an
5150
operator designed to manage EDB Postgres Distributed (PGD) workloads on
5251
Kubernetes, with traffic routed by PGD Proxy.
5352

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
---
2-
title: ''
2+
title: Troubleshooting
3+
navTitle: Troubleshooting
34
originalFilePath: 'src/troubleshooting.md'
45
---
6+
7+
!!! Note
8+
Content for this page is in development.
9+
!!!

0 commit comments

Comments
 (0)