Skip to content

Commit

Permalink
Fix load docker image doc (#96)
Browse files Browse the repository at this point in the history
On kind version 0.22.0, with this command:
`kind load docker-image ghcr.io/aenix-io/etcd-operator:latest`, Kind
uses defualt cluster name, but before we created cluster with `--name
etcd-operator-kind`
  • Loading branch information
ilya-hontarau authored Mar 29, 2024
1 parent 2f64d81 commit 755f630
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions HOW-TO-START-DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
4. Install cert-manager (it creates certificate k8s secrets). Refer to the [docs](https://cert-manager.io/docs/installation/helm/#4-install-cert-manager).
5. Build docker image *controller:latest* `make docker-build`.
6. Retag image to upload to kind cluster with correct name `docker tag controller:latest ghcr.io/aenix-io/etcd-operator:latest`.
7. Load image to kind cluster `kind load docker-image ghcr.io/aenix-io/etcd-operator:latest`.
7. Load image to kind cluster `kind load docker-image --name etcd-operator-kind ghcr.io/aenix-io/etcd-operator:latest`.
8. Install CRDs `make install`.
9. Deploy operator, RBAC, webhook certs `make deploy`.

To deploy your code changes
1. Rebuild the image `make docker-build`.
2. Retag image to upload to kind cluster with correct name `docker tag controller:latest ghcr.io/aenix-io/etcd-operator:latest`.
3. Load image to kind cluster `kind load docker-image ghcr.io/aenix-io/etcd-operator:latest`.
3. Load image to kind cluster `kind load docker-image --name etcd-operator-kind ghcr.io/aenix-io/etcd-operator:latest`.
4. Redeploy yaml manifests if necessary `make deploy`.
5. Restart etcd-operator `kubectl rollout restart -n etcd-operator-system deploy/etcd-operator-controller-manager`.

Expand Down

0 comments on commit 755f630

Please sign in to comment.