-
Notifications
You must be signed in to change notification settings - Fork 741
doc: op guide for install, uninstall etcd operator #855
Conversation
Once kubernetes supports deployment hook (kubernetes/kubernetes#14512), we can make use of that as well. |
README.md
Outdated
@@ -50,6 +50,11 @@ NAME DESCRIPTION VERSION(S) | |||
cluster.etcd.coreos.com Managed etcd clusters v1beta1 | |||
``` | |||
|
|||
When deleting etcd operator deployment, delete its leader election endpoint as well: |
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.
i do not think this is a good place. it is not discoverable.
Probably it is time for us to create the initial op-guide with our first section:
- uninstall etcd operator
we mention how to delete the operator, how to remove the endpoint, and tell users they also need to manually remove all etcd clusters managed by etcd operator manually (or remove all the TPRs before delete the operator.).
fixed |
doc/user/op_guide.md
Outdated
$ kubectl delete endpoints etcd-operator | ||
``` | ||
|
||
Note that the etcd clusters managed by etcd operator will **NOT** be deleted if the operator fails or is uninstalled. |
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.
removes the fail part.
doc/user/op_guide.md
Outdated
``` | ||
|
||
Note that the etcd clusters managed by etcd operator will **NOT** be deleted if the operator fails or is uninstalled. | ||
This is an intentional design to prevent accidental operator failure from killing all the etcd clusters. |
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.
move this to the top under uninstall.
fixed |
LGTM |
fix #735
[skip ci]