From 014cbf754f84e47ac10869449772b87a4dc23b1a Mon Sep 17 00:00:00 2001 From: Damian Kula Date: Sun, 19 Jun 2022 18:23:23 +0200 Subject: [PATCH] Adds info about installation via built in Go package manger (#116) --- Readme.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Readme.md b/Readme.md index 1b32a2a..99cb35a 100644 --- a/Readme.md +++ b/Readme.md @@ -57,6 +57,16 @@ $ brew install kubeconform You can also download the latest version from the [release page](https://github.com/yannh/kubeconform/releases). +Another way of installation is via Golang's package manager: + +```bash +# With a specific version tag +$ go install github.com/yannh/kubeconform/cmd/kubeconform@v0.4.13 + +# Latest version +$ go install github.com/yannh/kubeconform/cmd/kubeconform@latest +``` + ### Usage ```