Skip to content

Commit

Permalink
docs: update Kubernetes deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
jkaninda committed Sep 9, 2024
1 parent b3570d7 commit a7f7e57
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 15 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ It also supports __encrypting__ your backups using GPG.
The [jkaninda/mysql-bkup](https://hub.docker.com/r/jkaninda/mysql-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.

[![Build](https://github.com/jkaninda/mysql-bkup/actions/workflows/release.yml/badge.svg)](https://github.com/jkaninda/mysql-bkup/actions/workflows/release.yml)
[![Go Report](https://goreportcard.com/badge/github.com/jkaninda/mysql-bkup)](https://goreportcard.com/report/github.com/jkaninda/mysql-bkup)
Expand Down
2 changes: 1 addition & 1 deletion docs/how-tos/backup-to-s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ spec:
command:
- /bin/sh
- -c
- mysql-bkup backup -s s3 --path /custom_path
- backup -s s3 --path /custom_path
env:
- name: DB_PORT
value: "3306"
Expand Down
2 changes: 1 addition & 1 deletion docs/how-tos/backup-to-ssh.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ spec:
command:
- /bin/sh
- -c
- mysql-bkup backup -s ssh
- backup -s ssh
env:
- name: DB_PORT
value: "3306"
Expand Down
5 changes: 1 addition & 4 deletions docs/how-tos/deploy-on-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,7 @@ spec:
command:
- /bin/sh
- -c
- bkup
- backup
- --storage
- s3
- backup --storage s3
resources:
limits:
memory: "128Mi"
Expand Down
2 changes: 1 addition & 1 deletion docs/how-tos/restore-from-s3.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ spec:
command:
- /bin/sh
- -c
- bkup restore -s s3 --path /custom_path -f store_20231219_022941.sql.gz
- restore -s s3 --path /custom_path -f store_20231219_022941.sql.gz
env:
- name: DB_PORT
value: "3306"
Expand Down
2 changes: 1 addition & 1 deletion docs/how-tos/restore-from-ssh.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ spec:
command:
- /bin/sh
- -c
- bkup restore -s ssh -f store_20231219_022941.sql.gz
- restore -s ssh -f store_20231219_022941.sql.gz
env:
- name: DB_PORT
value: "3306"
Expand Down
5 changes: 3 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ nav_order: 1

# About mysql-bkup
{:.no_toc}
MySQL Backup is a Docker container image that can be used to backup and restore MySQL database. It supports local storage, AWS S3 or any S3 Alternatives for Object Storage, and SSH remote storage.
MySQL Backup is a Docker container image that can be used to backup, restore and migrate MySQL database. It supports local storage, AWS S3 or any S3 Alternatives for Object Storage, and SSH remote storage.
It also supports __encrypting__ your backups using GPG.

We are open to receiving stars, PRs, and issues!
Expand All @@ -19,7 +19,8 @@ We are open to receiving stars, PRs, and issues!
The [jkaninda/mysql-bkup](https://hub.docker.com/r/jkaninda/mysql-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].
Expand Down
5 changes: 1 addition & 4 deletions examples/k8s-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,7 @@ spec:
command:
- /bin/sh
- -c
- bkup
- backup
- --storage
- s3
- backup --storage s3
resources:
limits:
memory: "128Mi"
Expand Down

0 comments on commit a7f7e57

Please sign in to comment.