File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ run: manifests generate fmt vet ## Run a controller from your host.
160
160
.PHONY : docker-build
161
161
# docker build -t ${IMG} . --build-arg arch=$(ARCH) --build-arg platform=$(OS)
162
162
docker-build : # # Build docker image with the manager.
163
- docker build -t ${IMG} .
163
+ docker build -t ${IMG} .
164
164
165
165
.PHONY : docker-push
166
166
docker-push : # # Push docker image with the manager.
Original file line number Diff line number Diff line change @@ -39,4 +39,11 @@ required components to operate an IPFS cluster.
39
39
40
40
To deploy the operator in this repository into the cluster, you can run ` hack/run-in-kind.sh ` which
41
41
will build the source code and inject it into the cluster.
42
- If you make subsequent changes, you will need to re-run ` hack/run-in-kind.sh ` in order to redeploy local changes.
42
+ If you make subsequent changes, you will need to re-run ` hack/run-in-kind.sh ` and kill the previous
43
+ operator manager by running ` kubectl delete pod -A -n ipfs-operator-system ` in order to redploy the updated image.
44
+
45
+ ### Testing Local Changes
46
+
47
+ If you're developing the operator and would like to test your changes locally, you can do this by
48
+ running the kuttl end-to-end tests with ` make test-e2e ` after redploying the operator.
49
+
You can’t perform that action at this time.
0 commit comments