diff --git a/cli_reference/helm-cli/getting-started-with-helm-on-openshift-container-platform.adoc b/cli_reference/helm-cli/getting-started-with-helm-on-openshift-container-platform.adoc index 9909d4e50c..a05fcacbd6 100644 --- a/cli_reference/helm-cli/getting-started-with-helm-on-openshift-container-platform.adoc +++ b/cli_reference/helm-cli/getting-started-with-helm-on-openshift-container-platform.adoc @@ -1,12 +1,12 @@ [id="getting-started-with-helm-on-openshift"] -= Getting started with Helm on {product-title} += Getting started with Helm 3 on {product-title} include::modules/common-attributes.adoc[] :context: getting-started-with-helm-on-openshift toc::[] -:FeatureName: Helm for {product-title} +:FeatureName: Helm 3 for {product-title} include::modules/technology-preview.adoc[leveloffset=+1] include::modules/helm-understanding-helm.adoc[leveloffset=+1] diff --git a/modules/helm-installing-helm.adoc b/modules/helm-installing-helm.adoc index 462b7e86d8..af162703ea 100644 --- a/modules/helm-installing-helm.adoc +++ b/modules/helm-installing-helm.adoc @@ -8,17 +8,62 @@ .Prerequisites * You have installed Go, version 1.13 or higher. -.Procedure -. To install Helm, download the Helm binary and install Helm with the `make` command: +== On Linux + +. Download the Helm binary and add it to your path: + ---- -$ curl https://mirror.openshift.com/pub/openshift-v4/clients/helm/latest -$ GO111MODULE=on make +# curl -L https://mirror.openshift.com/pub/openshift-v4/clients/helm/latest/helm-linux-amd64 -o /usr/local/bin/helm +---- + +. Make the binary file executable: ++ +---- +# chmod +x /usr/local/bin/helm ---- . Check the installed version: + ---- $ helm version -version.BuildInfo{Version:"v3.0+unreleased", GitCommit:"a41f66e7be615d8602898e4478dec70e5f60e23c", GitTreeState:"clean", GoVersion:"go1.13.1"} ----- \ No newline at end of file +version.BuildInfo{Version:"v3.0", GitCommit:"b31719aab7963acf4887a1c1e6d5e53378e34d93", GitTreeState:"clean", GoVersion:"go1.13.4"} +---- + +== On Windows 7/8 + +. Download the latest link:https://mirror.openshift.com/pub/openshift-v4/clients/helm/latest/helm-windows-amd64.exe[`.exe` file] and put in a directory of your preference. +. Right click *Start* and click *Control Panel*. +. Select *System and Security* and then click *System*. +. From the menu on the left, select *Advanced systems settings* and click *Environment Variables* at the bottom. +. Select *Path* from the *Variable* section and click *Edit*. +. Click *New* and type the path to the folder with the `.exe` file into the field or click *Browse* and select the directory, and click *OK*. + +== On Windows 10 + +. Download the latest link:https://mirror.openshift.com/pub/openshift-v4/clients/helm/latest/helm-windows-amd64.exe[`.exe` file] and put in a directory of your preference. +. Click *Search* and type `env` or `environment`. +. Select *Edit environment variables for your account*. +. Select *Path* from the *Variable* section and click *Edit*. +. Click *New* and type the path to the directory with the exe file into the field or click *Browse* and select the directory, and click *OK*. + + +== On MacOS +. Download the Helm binary and add it to your path: ++ +---- +# curl -L https://mirror.openshift.com/pub/openshift-v4/clients/helm/latest/helm-darwin-amd64 -o /usr/local/bin/helm +---- + + +. Make the binary file executable: ++ +---- +# chmod +x /usr/local/bin/helm +---- + +. Check the installed version: ++ +---- +$ helm version +version.BuildInfo{Version:"v3.0", GitCommit:"b31719aab7963acf4887a1c1e6d5e53378e34d93", GitTreeState:"clean", GoVersion:"go1.13.4"} +----