From 4b90be88049996aa486df80f81c5672c32da3c8e Mon Sep 17 00:00:00 2001 From: Gianluca Stella Date: Tue, 12 May 2026 09:45:41 +0200 Subject: [PATCH 1/2] Add instructions to install with Homebrew --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d5eb7633..39573d27 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,14 @@ backplane-cli is a CLI tool to interact with [backplane api](https://github.com/ Go should be installed in your local system. We recommend using the latest stable Go version. For the minimum required version, see the `go` directive in [go.mod](go.mod) -### Option 1: Download from release +### MacOS + +```brew +brew install backplane-cli +``` + + +### Download from release Download the latest binary from the GitHub [releases](https://github.com/openshift/backplane-cli/releases) page. @@ -24,7 +31,7 @@ $ chmod +x ocm-backplane $ mv ocm-backplane $GOBIN ``` -### Option 2: Build from source +### Build from source First clone the repository somewhere in your `$PATH`. A common place would be within your `$GOPATH`. From 7158f592639b05742a2ede6edd269558e25ec4a3 Mon Sep 17 00:00:00 2001 From: Gianluca Stella Date: Thu, 25 Jun 2026 12:23:36 +0200 Subject: [PATCH 2/2] Update brew install instructions with new tap --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 39573d27..cbd7afe3 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,8 @@ Go should be installed in your local system. We recommend using the latest stabl ### MacOS ```brew -brew install backplane-cli +brew tap openshift-online/sre-tools +brew install openshift-online/sre-tools/backplane-cli ```