-
Notifications
You must be signed in to change notification settings - Fork 184
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
docs: merge installation docs #8499
base: main
Are you sure you want to change the base?
Conversation
@@ -16,26 +16,57 @@ Uninstallation order: | |||
1. Delete your cluster if you have created a cluster. | |||
|
|||
```bash | |||
kbcli cluster delete <name> | |||
kubebctl delete cluster <clustername> -n namespace |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
kubebctl => kubectl
3. 以 etcd 为例,安装引擎。使用 `--version` 指定版本。 | ||
|
||
```bash | ||
helm install etcd kubeblocks/etcd --namespace kb-system --create-namespace --version x.y.z |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Recommend using a more specific name (e.g. helm install kb-etcd-addon ...
), because etcd
is too general, it's easier to be conflicted and misunderstood.
5. (可选)您可以执行以下命令卸载引擎。如果您已使用该引擎创建集群,请先删除集群。 | ||
|
||
```bash | ||
helm uninstall etcd --namespace kb-system |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto
* 启用引擎。 | ||
|
||
```bash | ||
kbcli addon enable qdrant |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems redundant, this doc mainly uses etcd as an example.
No description provided.