Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 847 Bytes

contribution.md

File metadata and controls

32 lines (25 loc) · 847 Bytes

Contribution

Thanks for taking the time to contribute to metabase-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/metabase-operator.git
cd metabase-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_metabase.yaml