diff --git a/README.md b/README.md index bd60eb0..e3a7cbe 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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: @@ -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) @@ -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) \ No newline at end of file +```bash +source <(bink completion bash) +```