From 90e722f84711b020678a50dd3531e51a54d8f150 Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Tue, 23 Jun 2026 08:45:46 +0200 Subject: [PATCH 1/5] Remove FOSSA badge The other bootc repositories don't have the FOSSA badge to be aligned let's remove the badge. Revert of: https://github.com/bootc-dev/bink/pull/64 Signed-off-by: Alice Frosi --- README.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/README.md b/README.md index bd60eb0..b0ab113 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. @@ -122,7 +120,3 @@ bink cluster stop # Stop and also remove persistent data (SSH keys, kubeconfig) bink cluster stop --remove-data ``` - - -## 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 From 65b6fa897f8bc45f1b098a4585a1aa202e61f8fd Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Tue, 23 Jun 2026 08:48:26 +0200 Subject: [PATCH 2/5] Remove reference to the container setup We have already documented how to have a containerized setup for bink, and it is even tested in the CI. Signed-off-by: Alice Frosi --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index b0ab113..cd080d5 100644 --- a/README.md +++ b/README.md @@ -19,9 +19,6 @@ Bink uses the Podman client API. Make sure you have a Podman socket (e.g. ```bash go install ./cmd/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: From 670ddfa1d2f4c5fe49cf3919029f71bbb7c4f3ea Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Tue, 23 Jun 2026 08:50:06 +0200 Subject: [PATCH 3/5] Update how to build bink Use the make command instead of building directly with go. Signed-off-by: Alice Frosi --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd080d5..d25cd63 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Bink uses the Podman client API. Make sure you have a Podman socket (e.g. ## Installation ```bash -go install ./cmd/bink +make build-bink ``` ## Running via Container From 68b3e68bb4a93c3b47387d472ec3894d2cb108d6 Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Tue, 23 Jun 2026 08:53:10 +0200 Subject: [PATCH 4/5] Document how to source bink Update README with the instructions how to source bink api expose Signed-off-by: Alice Frosi --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d25cd63..3a69b4a 100644 --- a/README.md +++ b/README.md @@ -90,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) From abad6f3bdadbcb4f7b8a516e06ceaf94bb2fac35 Mon Sep 17 00:00:00 2001 From: Alice Frosi Date: Tue, 23 Jun 2026 08:56:33 +0200 Subject: [PATCH 5/5] Document bink auto-completion Update README with bink auto-completion. Signed-off-by: Alice Frosi --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 3a69b4a..e3a7cbe 100644 --- a/README.md +++ b/README.md @@ -116,3 +116,9 @@ bink cluster stop # Stop and also remove persistent data (SSH keys, kubeconfig) bink cluster stop --remove-data ``` + +## Enable bink auto-completion + +```bash +source <(bink completion bash) +```