Skip to content

Commit

Permalink
added demo video and fixed typos (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianbaier committed Feb 14, 2019
1 parent 61f6009 commit a8ebef6
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions docs/Backups.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# Backup Jobs

Kudo has the ability to capture the backup and restoration process for database applications.
KUDO has the ability to capture the backup and restoration process for database applications.

## Demo

Watch the explained demo video of the steps beneath [here](https://youtu.be/e_xUVS_bB2g?t=1433).

## MySQL

Create an instance of MySQL using the provded Framework
Create an instance of MySQL using the provided Framework

```bash
$ kubectl apply -f samples/config/mysql.yaml
$ kubectl apply -f config/samples/mysql.yaml
framework.kudo.k8s.io/mysql created
frameworkversion.kudo.k8s.io/mysql-57 created
instance.kudo.k8s.io/mysql created
Expand Down Expand Up @@ -37,7 +41,7 @@ kubectl exec -it $MYSQL_POD -- mysql -ppassword -e "select * from example;" kud
kubectl kudo start -n mysql -p backup
```

## Delete data from the datbase
## Delete data from the database

```bash
kubectl exec -it $MYSQL_POD -- mysql -ppassword -e "delete from example;" kudo
Expand All @@ -54,4 +58,4 @@ kubectl kudo start -n mysql -p restore

```bash
kubectl exec -it $MYSQL_POD -- mysql -ppassword -e "select * from example;" kudo
```
```

0 comments on commit a8ebef6

Please sign in to comment.