English | 简体中文
curve-operator manages Curve cluster on Kuberentes. It make Curve a truly cloud-native distributed storage system.
- Kubernetes 1.19,1.20
The first step is to install the Curve Operator.
$ git clone https://github.com/opencurve/curve-operator.git
$ cd curve-operator
$ kubectl apply -f config/deploy/
verify the curve-operator on the Running
state in curve
namespace.
$ kubectl get pod -n curve
NAME READY STATUS RESTARTS AGE
curve-operator-69bc69c75d-jfsjg 1/1 Running 0 7s
Operator deploys Curve cluster based on declarative API. You can get and modify customized the cluster yaml file in config/sample.
CurveBS Stand-alone deployment
CurveBS three replicas deployment
CurveFS Stand-alone deployment
CurveFS three replicase deployment
Here we take the deployment of a three-node CurveBS
cluster as an example. The yaml file is cluster.yaml and you can learn more about how to modify this configuration file through the comments in it.
Type the command to create the cluster:
$ kubectl apply -f config/samples/cluster.yaml
list all pods in the curve
namespace:
$ kubectl -n curve get pod
NAME READY STATUS RESTARTS AGE
curve-chunkserver-curve-operator-node1-vdc-556fc99467-5nx9q 1/1 Running 0 5m45s
curve-chunkserver-curve-operator-node2-vdc-7cf89768f9-hmcrs 1/1 Running 0 5m45s
curve-chunkserver-curve-operator-node3-vdc-f77dd85dc-z5bws 1/1 Running 0 5m45s
curve-etcd-a-d5bbfb755-lzgrm 1/1 Running 0 41m
curve-etcd-b-66c5b54f75-6nnnt 1/1 Running 0 41m
curve-etcd-c-86b7964f87-cj8zk 1/1 Running 0 41m
curve-mds-a-7b5989bddd-ln2sm 1/1 Running 0 40m
curve-mds-b-56d8f58645-gv6pd 1/1 Running 0 40m
curve-mds-c-997c7fd-vt5hw 1/1 Running 0 40m
gen-logical-pool-rzhlz 0/1 Completed 0 5m15s
gen-physical-pool-chnw8 0/1 Completed 0 5m45s
prepare-chunkfile-curve-operator-node1-vdc-znb66 0/1 Completed 0 40m
prepare-chunkfile-curve-operator-node2-vdc-6gf2z 0/1 Completed 0 40m
prepare-chunkfile-curve-operator-node3-vdc-2bkxm 0/1 Completed 0 40m
read-config-k272k 0/1 Completed 0 41m
Tips: The chunkserver pods may not start immediately, because the disk needs to be formatted in the background(
prepare-chunkfile
jobs), so it may take a while to see the chunkserver pod. The waiting time is determined according to the number and percentage of configured disks, and it may be a long time.
To verify that the cluster is in healthy state, enter one curve-chunkserver
pod and type curve_ops_tools status
command to check.
$ kubectl exec -it <any one chunkserver pod> -- bash
$ curve_ops_tool status
Cluster status:
cluster is healthy
total copysets: 100, unhealthy copysets: 0, unhealthy_ratio: 0%
physical pool number: 1, logical pool number: 1
Space info:
physical: total = 1178GB, used = 6GB(0.56%), left = 1171GB(99.44%)
logical: total = 392GB, used = 41GB(10.44%, can be recycled = 0GB(0.00%)), left = 351GB(89.56%), created file size = 60GB(15.28%)
Client status:
nebd-server: version-1.2.5+2c4861ca: 1
...
The cluster deployment completed and successfully if you see cluster is healthy
prompt.
Create a PVC that to use curvebs as pod storage.
you can deploy and get more details from curve-csi project that dock curvebs
cluster or curvefs-csi project that dock curvefs
cluster.
Remove curve cluster deployed already and clean up data on host.
$ kubectl -n curve delete curvecluster my-cluster
Verify the cluster CR has been deleted before continuing to the next step.
$ kubectl -n curve get curvecluster
$ kubectl delete -f config/deploy/
The final cleanup step requires deleting files on each host in the cluster. All files under the hostDataDir
property specified in the cluster CRD will need to be deleted. Otherwise, inconsistent state will remain when a new cluster is started.
Connect to each machine and delete /curvebs
, or the path specified by the dataDirHostPath
and logDirHostPath
.
$ rm -rf /curvebs
We welcome help in any form, including but not limited to improving documentation, asking questions, fixing bugs, and adding features.
We have an online community meeting every two weeks which talk about what Curve
is doing and planning to do. You can view meeting minutes and agenda here Double Week Meetings.
You are required to comply with the CNCF Code of Conduct while participating in this project.
If you encounter any problems during use, please submit an Issue for feedback. You can also scan the WeChat QR code to join the technical exchange group.