Skip to content

Commit

Permalink
Update 2023-08-25-kind-cheatsheet.md
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjiTrapp committed Apr 22, 2024
1 parent 7778481 commit 4a4dd74
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions _memories/2023-08-25-kind-cheatsheet.md
Expand Up @@ -102,6 +102,17 @@ nodes:
EOF
```

### Load a Docker Image from Local Registry into KinD Cluster

##### Step 1: Make sure to pull image local registry
Verify with `docker images`if your image is present otherwise pull it with `docker pull <imagename>`

##### Step 2: Load local Image into KinD registry

```bash
kind load docker-image <image_name> --name <name_of_the_kind_cluster>
```

### Add Local Registry

##### Step 1: Create local registry
Expand Down

0 comments on commit 4a4dd74

Please sign in to comment.