You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Create a local kubernetes cluster and start a local registry by running
17
+
18
+
```sh
19
+
./scripts/dev/setup_kind_cluster.sh
20
+
```
21
+
22
+
2. Build and deploy the operator:
23
+
24
+
```sh
25
+
python ./scripts/dev/build_and_deploy_operator
26
+
```
27
+
28
+
Note: this will build and push the operator at `repo_url/mongodb-kubernetes-operator`, where `repo_url` is extracted from the [dev config file](./contributing.md#developing-locally)
29
+
30
+
3. Change the [operator yaml file](../deploy/operator.yaml)`image` field to have the image you just built
31
+
32
+
4. You can now deploy your resources following the [docs](../docs/README.md)
33
+
34
+
35
+
## Troubleshooting
36
+
If you run into an issue in step 1, you can try the following steps as workaround:
0 commit comments