From 63f0704270d74c2c05d3c4986304b6aae2e7e3e7 Mon Sep 17 00:00:00 2001 From: Aditya Konarde Date: Thu, 18 Oct 2018 17:54:02 +0530 Subject: [PATCH] [Doc] Add note about helm binary requirement `make run-local-shift` fails if the helm binary isn't available This would fix: https://github.com/operator-framework/operator-lifecycle-manager/issues/488 --- Documentation/install/install.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/install/install.md b/Documentation/install/install.md index f67c1dddbc4..07b8607bec7 100644 --- a/Documentation/install/install.md +++ b/Documentation/install/install.md @@ -31,6 +31,9 @@ You can verify that the OLM components have been successfully deployed by runnin ## Run locally with minishift This command starts minishift, builds the OLM containers locally with the minishift-provided docker, and uses the local configuration in [local-values-shift.yaml](local-values-shift.yaml) to build localized deployment resources for OLM. + +Note that this step requires the `helm` binary, which doesn't come with minishift by default, to be present in your PATH. It can be downloaded from the [helm releases page](https://github.com/helm/helm/releases) + ``` make run-local-shift ```