Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 838 Bytes

contribution.md

File metadata and controls

31 lines (25 loc) · 838 Bytes

Contribution

Thanks for taking the time to contribute to immudb-operator.

How to make PR

You can create a PR into main when your feature is ready. We will review it within 2 days.

Local development with minikube

  1. To try a new feature, first create a minikube cluster.
minikube start
  1. Clone this repository.
git clone git@github.com:unagex/immudb-operator.git
cd immudb-operator
  1. Make your changes in the code.
  2. Run the binary against the minikube cluster with the following command. There is no need to build the docker image.
make install run

You should see the following log: image

  1. The operator is now running on minikube, you can create the custom resource and see how the operator handles it.
kubectl apply -f config/samples/v1_immudb.yaml