From 18f1d1ce5bb75b1063f1737b16a30885ee97fcb9 Mon Sep 17 00:00:00 2001 From: Tuna Date: Thu, 7 Dec 2017 10:52:03 +0700 Subject: [PATCH] add go get to README --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9bbec5fb23e..0eb2577a977 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Kubeapps assumes a working Kubernetes (v1.7+) with RBAC enabled and [`kubectl`]( > On GKE, you must either be an "Owner" or have the "Container Engine Admin" role in order to install Kubeapps. -The simplest way to try Kubeapps is to deploy it with the Kubeapps Installer on [minikube](https://github.com/kubernetes/minikube). Assuming you are deploying a binary installer on Linux, here are the commands to run: +The simplest way to try Kubeapps is to deploy it with the Kubeapps Installer on [minikube](https://github.com/kubernetes/minikube). Assuming you are deploying a binary installer on Linux, here are the commands to run: ``` curl -s https://api.github.com/repos/kubeapps/kubeapps/releases/latest | grep linux | grep browser_download_url | cut -d '"' -f 4 | wget -i - @@ -33,6 +33,16 @@ To remove Kubeapps from your cluster, simply run: kubeapps down ``` +## Installation + +Get the latest release of Kubeapps Installer on the [Github releases](https://github.com/kubeapps/kubeapps/releases) page. + +Alternatively, when you have configured a proper Go environment (refer to the first two steps of [Build from Source](#build-from-source) section), the latest Kubeapps Installer can be get-able from source: + +``` +go get github.com/kubeapps/kubeapps +``` + ## Build from Source The Kubeapps Installer is a CLI tool written in Go that will deploy the Kubeapps components into your cluster.