Skip to content

Minor fixes post RC2 #377

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 4 commits into from
May 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
14 changes: 7 additions & 7 deletions contrib/pg_tde/documentation/docs/apt.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,31 +21,31 @@ Check the [list of supported platforms](install.md#__tabbed_1_1) before continui
Install them with the following command:

```{.bash data-prompt="$"}
$ sudo apt-get install -y wget gnupg2 curl lsb-release
sudo apt-get install -y wget gnupg2 curl lsb-release
```

2. Fetch the `percona-release` package

```{.bash data-prompt="$"}
$ sudo wget https://repo.percona.com/apt/percona-release_latest.generic_all.deb
sudo wget https://repo.percona.com/apt/percona-release_latest.generic_all.deb
```

3. Install `percona-release`

```{.bash data-prompt="$"}
$ sudo dpkg -i percona-release_latest.generic_all.deb
sudo dpkg -i percona-release_latest.generic_all.deb
```

4. Enable the Percona Distribution for PostgreSQL repository

```{.bash data-prompt="$"}
$ sudo percona-release enable-only ppg-{{pgversion17}}
sudo percona-release enable-only ppg-{{pgversion17}}
```

6. Update the local cache

```bash
sudo apt-get update
```{.bash data-prompt="$"}
sudo apt-get update
```

## Install pg_tde {.power-number}
Expand All @@ -67,7 +67,7 @@ Check the [list of supported platforms](install.md#__tabbed_1_1) before continui
After all [preconditions](#preconditions) are met, run the following command to install `pg_tde`:

```{.bash data-prompt="$"}
$ sudo apt-get install -y percona-postgresql-17
sudo apt-get install -y percona-postgresql-17
```

## Next steps
Expand Down
2 changes: 1 addition & 1 deletion contrib/pg_tde/documentation/docs/index/tde-encrypts.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* **User data** in tables using the extension, including associated TOAST data. The table metadata (column names, data types, etc.) is not encrypted.
* **Temporary tables** created during the query execution, for data tables created using the extension.
* **Write-Ahead Log (WAL) data** for the entire database cluster. This includes WAL data in encrypted and non-encrypted tables.
* **Indexes** associated encrypted tables.
* **Indexes** on encrypted tables.
* **Logical replication data** for encrypted tables (ensures encrypted content is preserved across replicas).

[Table Access Methods and TDE](table-access-method.md){.md-button}
6 changes: 3 additions & 3 deletions contrib/pg_tde/documentation/docs/yum.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ You need the `percona-release` repository management tool that enables the desir
1. Install `percona-release`:

```{.bash data-prompt="$"}
$ sudo yum -y install https://repo.percona.com/yum/percona-release-latest.noarch.rpm
sudo yum -y install https://repo.percona.com/yum/percona-release-latest.noarch.rpm
```

2. Enable the repository.

```{.bash data-prompt="$"}
$ sudo percona-release enable-only ppg-{{pgversion17}}
sudo percona-release enable-only ppg-17.5
```

## Install pg_tde {.power-number}
Expand All @@ -62,7 +62,7 @@ You need the `percona-release` repository management tool that enables the desir
Run the following command to install `pg_tde`:

```{.bash data-prompt="$"}
$ sudo yum -y install percona-postgresql17 percona-postgresql17-contrib
sudo yum -y install percona-postgresql17-server percona-postgresql17-contrib
```

## Next steps
Expand Down
2 changes: 1 addition & 1 deletion contrib/pg_tde/documentation/variables.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#Variables used throughout the docs

release: 'RC2'
pgversion17: '17.5.1'
pgversion17: '17.5'
tdebranch: TDE_REL_17_STABLE

date:
Expand Down