Skip to content

Commit

Permalink
run ccm in a container
Browse files Browse the repository at this point in the history
  • Loading branch information
aojea committed Mar 3, 2024
1 parent 1dd6d98 commit 7c0c084
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,14 @@ cd cloud-provider-kind && make
sudo mv .bin//cloud-provider-kind /usr/local/bin/cloud-provider-kind
```

Another alternative is to run it as a container, but this will require to mount
the docker socket inside the container:

```sh
docker build . -t aojea/cloud-provider-kind:v0.1
docker run --rm --network host -v /var/run/docker.sock:/var/run/docker.sock aojea/cloud-provider-kind:v0.1
```

## How to use it

Run a KIND cluster:
Expand Down

0 comments on commit 7c0c084

Please sign in to comment.