Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 10.backup-restore-using-operator.md #2589

Merged
merged 1 commit into from
Feb 15, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion docs-2.0/nebula-operator/10.backup-restore-using-operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,19 @@

- Nebula Operator 版本 >= 1.4.0。
- Kubernetes 上部署的企业版 NebulaGraph 集群正在运行。
- 在创建集群的 YAML 中,设置了`spec.enableBR`为`true`。详细信息参见[]()。
- 在创建集群的 YAML 中,设置了`spec.enableBR`为`true`。

```
// 集群 YAML 文件示例部分内容。
apiVersion: apps.nebula-graph.io/v1alpha1
kind: NebulaCluster
metadata:
name: nebula
spec:
enableBR: true // 设置为 true 时,启用备份和恢复功能。
...
```

- 只支持使用 S3 协议的存储服务(例如 AWS S3,Minio 等)备份和恢复数据。
- 集群中有足够的计算资源以恢复数据。

Expand Down