Set up basic RBAC rules for etcd operator:
$ example/rbac/create_role.sh$ kubectl create -f example/crdCreate a deployment for etcd operator:
$ kubectl create -f example/deployment.yamlNote that the etcd clusters managed by etcd operator will NOT be deleted even if the operator is uninstalled.
This is an intentional design to prevent accidental operator failure from killing all the etcd clusters.
To delete all clusters, delete all cluster CR objects before uninstalling the operator.
Clean up etcd operator:
kubectl delete -f example/deployment.yaml
kubectl delete endpoints etcd-operator
kubectl delete -f example/crd
kubectl delete clusterrole etcd-operator
kubectl delete clusterrolebinding etcd-operator