From fe51211404d855339fafa37e528d391638c0765b Mon Sep 17 00:00:00 2001 From: poyaz Date: Sat, 23 Mar 2024 13:12:03 +0330 Subject: [PATCH] [FIX] Removing unnecessary snipped tag (tag: ) Signed-off-by: poyaz --- .../ROOT/pages/how-tos/application-aware-backups.adoc | 8 -------- 1 file changed, 8 deletions(-) diff --git a/docs/modules/ROOT/pages/how-tos/application-aware-backups.adoc b/docs/modules/ROOT/pages/how-tos/application-aware-backups.adoc index 12ac23c33..e6a8fec82 100644 --- a/docs/modules/ROOT/pages/how-tos/application-aware-backups.adoc +++ b/docs/modules/ROOT/pages/how-tos/application-aware-backups.adoc @@ -7,14 +7,12 @@ Define an annotation on a Pod: [source,yaml] ---- - template: metadata: labels: app: mariadb annotations: k8up.io/backupcommand: mysqldump -uroot -psecure --all-databases - ---- With this annotation the Operator will trigger that command inside the the container and capture the stdout to a backup. @@ -39,7 +37,6 @@ The parameter `-- clean` ensures all tables including data are purged before, so [source,yaml] ---- - template: metadata: labels: @@ -52,7 +49,6 @@ template: - name: postgres image: docker.io/bitnami/postgresql:11 ... - ---- == MongoDB @@ -62,7 +58,6 @@ It's able to dump all the database contents into a https://www.mongodb.com/blog/ [source,yaml] ---- - template: metadata: labels: @@ -75,7 +70,6 @@ template: - name: mongodb image: quay.io/bitnami/mongodb:4.4.11-debian-10-r12 ... - ---- The proprietary binary archive can only be read by the https://www.mongodb.com/try/download/database-tools[MongoDB Database Tools]. @@ -106,7 +100,6 @@ Using `k8up.io/backupcommand-container` annotation You can specify the container [source,yaml] ---- - template: metadata: labels: @@ -122,5 +115,4 @@ template: - name: postgres - name: prometheus-exporter ... - ----