From 440ac663afc79bbd33d9c5bb27b08845f43be904 Mon Sep 17 00:00:00 2001 From: Jonas Kaninda Date: Mon, 9 Sep 2024 07:11:06 +0200 Subject: [PATCH] docs: update Kubernetes deployments --- docs/how-tos/backup-to-s3.md | 2 +- docs/how-tos/backup-to-ssh.md | 2 +- docs/how-tos/deploy-on-kubernetes.md | 2 -- docs/index.md | 8 ++++++-- 4 files changed, 8 insertions(+), 6 deletions(-) diff --git a/docs/how-tos/backup-to-s3.md b/docs/how-tos/backup-to-s3.md index 7e48b11..a3d78da 100644 --- a/docs/how-tos/backup-to-s3.md +++ b/docs/how-tos/backup-to-s3.md @@ -104,7 +104,7 @@ spec: command: - /bin/sh - -c - - pg-bkup backup -s s3 --path /custom_path + - backup -s s3 --path /custom_path env: - name: DB_PORT value: "5432" diff --git a/docs/how-tos/backup-to-ssh.md b/docs/how-tos/backup-to-ssh.md index 4135d46..f68f294 100644 --- a/docs/how-tos/backup-to-ssh.md +++ b/docs/how-tos/backup-to-ssh.md @@ -114,7 +114,7 @@ spec: command: - /bin/sh - -c - - pg-bkup backup -s ssh --path /custom_path + - backup -s ssh env: - name: DB_PORT value: "5432" diff --git a/docs/how-tos/deploy-on-kubernetes.md b/docs/how-tos/deploy-on-kubernetes.md index 244873d..3bf5be0 100644 --- a/docs/how-tos/deploy-on-kubernetes.md +++ b/docs/how-tos/deploy-on-kubernetes.md @@ -83,7 +83,6 @@ spec: command: - /bin/sh - -c - - bkup - backup --storage ssh --disable-compression resources: limits: @@ -138,7 +137,6 @@ spec: command: - /bin/sh - -c - - bkup - restore --storage ssh --file store_20231219_022941.sql.gz resources: limits: diff --git a/docs/index.md b/docs/index.md index 5ad1355..b30b396 100644 --- a/docs/index.md +++ b/docs/index.md @@ -7,7 +7,9 @@ nav_order: 1 # About pg-bkup {:.no_toc} PostreSQL Backup is a Docker container image that can be used to backup and restore Postgres database. It supports local storage, AWS S3 or any S3 Alternatives for Object Storage, and SSH compatible storage. -It also supports __encrypting__ your backups using GPG. +It also supports database __encryption__ using GPG. + + We are open to receiving stars, PRs, and issues! @@ -19,7 +21,9 @@ We are open to receiving stars, PRs, and issues! The [jkaninda/pg-bkup](https://hub.docker.com/r/jkaninda/pg-bkup) Docker image can be deployed on Docker, Docker Swarm and Kubernetes. It handles __recurring__ backups of postgres database on Docker and can be deployed as __CronJob on Kubernetes__ using local, AWS S3 or SSH compatible storage. -It also supports __encrypting__ your backups using GPG. +It also supports database __encryption__ using GPG. + + {: .note } Code and documentation for `v1` version on [this branch][v1-branch].