Skip to content

Commit f42d67e

Browse files
committed
docs
Signed-off-by: Oleg S <[email protected]>
1 parent 90cd361 commit f42d67e

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ run: manifests generate fmt vet ## Run a controller from your host.
160160
.PHONY: docker-build
161161
# docker build -t ${IMG} . --build-arg arch=$(ARCH) --build-arg platform=$(OS)
162162
docker-build: ## Build docker image with the manager.
163-
docker build -t ${IMG} .
163+
docker build -t ${IMG} .
164164

165165
.PHONY: docker-push
166166
docker-push: ## Push docker image with the manager.

README.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,11 @@ required components to operate an IPFS cluster.
3939

4040
To deploy the operator in this repository into the cluster, you can run `hack/run-in-kind.sh` which
4141
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+

0 commit comments

Comments
 (0)