Skip to content
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
18 changes: 7 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# bink
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fbootc-dev%2Fbink.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Fbootc-dev%2Fbink?ref=badge_shield)


A CLI tool for creating Kubernetes dev clusters from bootc images.

Expand All @@ -19,11 +17,8 @@ Bink uses the Podman client API. Make sure you have a Podman socket (e.g.
## Installation

```bash
go install ./cmd/bink
make build-bink
```

(We're working on making bink run as a container as well!)

## Running via Container

Instead of building the binary locally, you can run bink directly from a container image:
Expand Down Expand Up @@ -95,9 +90,8 @@ The `bink-storage` volume persists container images across runs so they don't ne
# Create cluster with control plane
bink cluster start

# Access the cluster
bink api expose
export KUBECONFIG=$PWD/kubeconfig-podman
# Create and export KUBECONFIG
eval $(bink api expose)
kubectl get pods -A

# Add worker nodes (optional)
Expand All @@ -123,6 +117,8 @@ bink cluster stop
bink cluster stop --remove-data
```

## Enable bink auto-completion

## License
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Fbootc-dev%2Fbink.svg?type=large)](https://app.fossa.com/projects/git%2Bgithub.com%2Fbootc-dev%2Fbink?ref=badge_large)
```bash
source <(bink completion bash)
```
Loading