skip to Main Content

Postgresql – How does CloudnativePG encrypt data

# Example of PostgreSQL cluster apiVersion: postgresql.cnpg.io/v1 kind: Cluster metadata: name: test-db-cluster spec: instances: 1 imageName: ghcr.io/cloudnative-pg/postgresql:16.1 backup: barmanObjectStore: wal: compression: gzip encryption: AES256 data: compression: gzip encryption: AES256 --- I have here as encryption AES256, but how does postgres…

VIEW QUESTION
Back To Top
Search