From b064042f9d5b3a02974f27928a5dd7708bc7a627 Mon Sep 17 00:00:00 2001 From: Tamal Saha Date: Tue, 2 Jun 2026 21:43:34 +0600 Subject: [PATCH] Document Business Continuity and Disaster Recovery Adds a Features table row and an in-depth page describing how KubeStash supports this capability. --- .../index.md | 25 +++++++++++++++++++ .../what-is-kubestash/overview/index.md | 1 + 2 files changed, 26 insertions(+) create mode 100644 docs/concepts/capabilities/business-continuity-disaster-recovery/index.md diff --git a/docs/concepts/capabilities/business-continuity-disaster-recovery/index.md b/docs/concepts/capabilities/business-continuity-disaster-recovery/index.md new file mode 100644 index 0000000..fc6dd57 --- /dev/null +++ b/docs/concepts/capabilities/business-continuity-disaster-recovery/index.md @@ -0,0 +1,25 @@ +--- +title: Business Continuity and Disaster Recovery +description: Business Continuity Plan (BCP) and Disaster Recovery (DR) with online DR readiness. +menu: + docs_{{ .version }}: + identifier: capabilities-business-continuity-disaster-recovery + name: Business Continuity and Disaster Recovery + parent: capabilities + weight: 30 +product_name: kubestash +menu_name: docs_{{ .version }} +section_menu_id: concepts +--- + +# Business Continuity and Disaster Recovery + +KubeStash provides a complete Business Continuity Plan (BCP) and Disaster Recovery (DR) solution with online DR readiness for Kubernetes workloads and databases. `BackupBlueprint` standardizes how every workload is protected, `RetentionPolicy` enforces the long-term retention windows that BCP frameworks require, and `BackupVerifier` proves recoverability on a schedule. A `RestoreSession` can target a separate cluster, so the DR site is online and ready to be promoted at any time. Combined with engine-level high availability from KubeDB, the result is an always-ready DR posture with defined RPO and RTO. + +## Related concepts + +- [BackupConfiguration](../../crds/backupconfiguration/) +- [BackupBlueprint](../../crds/backupblueprint/) +- [RestoreSession](../../crds/restoresession/) +- [RetentionPolicy](../../crds/retentionpolicy/) +- [BackupVerifier](../../crds/backupverifier/) diff --git a/docs/concepts/what-is-kubestash/overview/index.md b/docs/concepts/what-is-kubestash/overview/index.md index 745dac1..0399c33 100644 --- a/docs/concepts/what-is-kubestash/overview/index.md +++ b/docs/concepts/what-is-kubestash/overview/index.md @@ -37,3 +37,4 @@ section_menu_id: concepts | Auto Backup | Share backup configuration across workloads using templates. Enable backup for a target application via annotation. | | Point-In-Time Recovery (PITR) | Restore a set of files from a time in the past. | | Role Based Access Control (RBAC) | | +| Business Continuity and Disaster Recovery | BCP and DR posture with online DR readiness. Cross-cluster RestoreSession, BackupBlueprint, RetentionPolicy, and BackupVerifier together keep the DR site continuously ready to take over. |