8000 Prepare general docs for GA release by Andriciuc · Pull Request #434 · percona/postgres · GitHub
[go: up one dir, main page]

Skip to content

Prepare general docs for GA release #434

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Jun 30, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
updated intro and site name
Updated the introduction with the proper extension name, updated the intro to reflect this. Removed important note about not meant for production and added the No upgrade warning from previous versions (like RC2) to GA.

Added the warning note before installation begins too.

Updated site name to full name.
  • Loading branch information
Andriciuc committed Jun 16, 2025
commit 22076f9f3f6006fdc1d2720934eb46a7a88329a2
9 changes: 5 additions & 4 deletions contrib/pg_tde/documentation/docs/index.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# pg_tde Documentation
# Percona Transparent Data Encryption for PostgreSQL documentation

`pg_tde` is the open source, community driven and futureproof PostgreSQL extension that provides Transparent Data Encryption (TDE) to protect data at rest. `pg_tde` ensures that the data stored on disk is encrypted, and that no one can read it without the proper encryption keys, even if they gain access to the physical storage media.
Percona Transparent Data Encryption for PostgreSQL (`pg_tde`) is an open-source, community driven and futureproof PostgreSQL extension that provides Transparent Data Encryption (TDE) to protect data at rest. `pg_tde` ensures that the data stored on disk is encrypted, and that no one can read it without the proper encryption keys, even if they gain access to the physical storage media.

!!! important
This is the {{release}} version of the extension and **it is not meant for production use yet**. We encourage you to use it in testing environments and [provide your feedback](https://forums.percona.com/c/postgresql/pg-tde-transparent-data-encryption-tde/82).
!!! warning "No upgrade path from RC to GA"
There is no safe upgrade path from the previous versions (such as Release Candidate 2) to the General Availability (GA) version of `pg_tde`.
We recommend starting with a **clean installation** for GA deployments. Avoid using RC environments in production.

[Overview](index/index.md){.md-button}
[Get Started](install.md){.md-button}
Expand Down
6 changes: 3 additions & 3 deletions contrib/pg_tde/documentation/docs/install.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Install pg_tde

<!-- !!! warning "No upgrade path from RC to GA"
There is no safe upgrade path from the Release Candidate 2 (RC2) to the General Availability (GA) version of `pg_tde`.
We recommend starting with a **clean installation** for GA deployments. Avoid using RC environments in production. -->
!!! warning "No upgrade path from RC to GA"
There is no safe upgrade path from the previous versions (such as Release Candidate 2) to the General Availability (GA) version of `pg_tde`.
We recommend starting with a **clean installation** for GA deployments. Avoid using RC environments in production.

To install `pg_tde`, use one of the following methods:

Expand Down
2 changes: 1 addition & 1 deletion contrib/pg_tde/documentation/mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# MkDocs general configuration

site_name: pg_tde documentation
site_name: Percona Transparent Data Encryption for PostgreSQL
site_description: Documentation
site_author: Percona LLC
copyright: >
Expand Down
0