Skip to content
This repository was archived by the owner on Oct 28, 2024. It is now read-only.

Setting kind name as CAPN #72

Merged
merged 1 commit into from
May 23, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cd cluster-api-provider-nested
### Create `kind` cluster

```shell
kind create cluster
kind create cluster --name=capn
```

### Install `cert-manager`
Expand Down Expand Up @@ -51,8 +51,8 @@ cd ..

```shell
PULL_POLICY=Never TAG=dev make docker-build release-manifests
kind load docker-image gcr.io/cluster-api-nested-controller-amd64:dev
kind load docker-image gcr.io/nested-controlplane-controller-amd64:dev
kind load docker-image gcr.io/cluster-api-nested-controller-amd64:dev --name=capn
kind load docker-image gcr.io/nested-controlplane-controller-amd64:dev --name=capn
```

### Deploy CAPN
Expand Down Expand Up @@ -107,3 +107,9 @@ export HOSTALIASES=~/.hosts
```shell
kubectl --kubeconfig kubeconfig get all -A
```

### Clean Up

```shell
kind delete cluster --name=capn
```