Merge pull request #67 from jkaninda/docs

docs: update Kubernetes deployments
This commit is contained in:
2024-09-09 07:11:49 +02:00
committed by GitHub
4 changed files with 8 additions and 6 deletions

View File

@@ -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"

View File

@@ -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"

View File

@@ -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:

View File

@@ -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].