Installing Helm

For instructions on downloading and installing Helm for your operating system, see Installing Helm in the Helm documentation.

This topic provides example instructions that install Helm on Linux.

  1. Run the following cURL command to download the installer script, get-helm.sh, from GitHub:
    curl -fsSL -o get_helm.sh https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3

    The script includes documentation so that you can review what it does.

  2. Run the following command to set permissions for get_helm.sh:
    chmod 700 get_helm.sh
  3. Run the following command to install Helm:
    ./get_helm.sh

    The command downloads the latest Helm tarball for your operating system and installs it. For example:

    Helm v3.4.0 is available. Changing from version v3.2.4.
    Downloading https://get.helm.sh/helm-v3.4.0-linux-amd64.tar.gz
    Verifying checksum... Done.
    Preparing to install helm into /usr/local/bin
    helm installed into /usr/local/bin/helm

Helm can now be used to deploy AnzoGraph. See Deploying AnzoGraph with Helm for instructions.

Related Topics