From 232ba3970283bf162ba5ae7cc4036f9dfe5bb462 Mon Sep 17 00:00:00 2001 From: Yash Raj Singh <98258627+yrs147@users.noreply.github.com> Date: Mon, 23 Jan 2023 22:20:15 +0530 Subject: [PATCH 1/2] Added Golang Command to install Krel Was facing an issue regarding Krel Installation on windows and I think that the given installation steps might not work for some users, so added the Golang command to simplify the installation of krel tool. --- docs/krel/README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/krel/README.md b/docs/krel/README.md index cdda3ca7cd4..71df03cecc6 100644 --- a/docs/krel/README.md +++ b/docs/krel/README.md @@ -15,11 +15,18 @@ Kubernetes Releases. This includes manually executed tasks like generating the R ## Installation -Compile krel by running the `compile-release-tools` script from the root of this repo: +Either Compile krel by running the `compile-release-tools` script from the root of this repo: ```shell ./compile-release-tools krel ``` +Or + +Run the following command in the terminal : + +``` +go install k8s.io/release/cmd/krel@latest +``` ## Usage: From 154f978fe2f0856c29a8b6b13963b61e42060ca0 Mon Sep 17 00:00:00 2001 From: Yash Raj Singh <98258627+yrs147@users.noreply.github.com> Date: Mon, 23 Jan 2023 23:20:53 +0530 Subject: [PATCH 2/2] Update docs/krel/README.md Removed Extra space Co-authored-by: Nabarun Pal <10010419+palnabarun@users.noreply.github.com> --- docs/krel/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/krel/README.md b/docs/krel/README.md index 71df03cecc6..6ce5b6eb934 100644 --- a/docs/krel/README.md +++ b/docs/krel/README.md @@ -22,7 +22,7 @@ Either Compile krel by running the `compile-release-tools` script from the root ``` Or -Run the following command in the terminal : +Run the following command in the terminal: ``` go install k8s.io/release/cmd/krel@latest