23 lines
491 B
Markdown
23 lines
491 B
Markdown
|
# SeaweedFS Operator
|
||
|
|
||
|
## Installation
|
||
|
|
||
|
## Development
|
||
|
|
||
|
Follow the instructions in https://sdk.operatorframework.io/docs/golang/quickstart/
|
||
|
|
||
|
```
|
||
|
$ git clone https://github.com/seaweedfs/seaweedfs-operator
|
||
|
$ cd seaweedfs-operator
|
||
|
|
||
|
# register the CRD with the Kubernetes
|
||
|
$ make install
|
||
|
|
||
|
# run the operator locally outside the Kubernetes cluster
|
||
|
$ make run ENABLE_WEBHOOKS=false
|
||
|
|
||
|
# From another terminal in the same directory
|
||
|
$ kubectl apply -f config/samples/objectstore_v100_master.yaml
|
||
|
|
||
|
```
|