Installation

The Hydrosphere platform can be installed in the following orchestrator's:

Docker installation

To install Hydrosphere using docker-compose, you should have the following prerequisites installed on your machine.

Install from releases

  1. Download the latest released_version release from the releases pagearrow-up-right:

export HYDROSPHERE_RELEASE=__released_version__
wget -O hydro-serving-${HYDROSPHERE_RELEASE}.tar.gz https://github.com/Hydrospheredata/hydro-serving/archive/${HYDROSPHERE_RELEASE}.tar.gz
  1. Unpack the tar ball:

tar -xvf hydro-serving-${HYDROSPHERE_RELEASE}.tar.gz
  1. Set up an environment:

cd hydro-serving-${HYDROSPHERE_RELEASE}
docker-compose up

Install from source

  1. Clone the serving repository:

  2. Set up an environment:

To check the installation, open http://localhost/arrow-up-right. By default, Hydrosphere UI is available at port 80.

Kubernetes installation

circle-exclamation

To install Hydrosphere on the Kubernetes cluster you should have the following prerequisites fulfilled.

Install from charts repository

  1. Add the Hydrosphere charts repository:

  2. Install the chart from repo to the cluster:

Install from source

  1. Clone the repository:

  2. Build dependencies:

  3. Install the chart:

After the chart has been installed, you have to expose the ui component outside of the cluster. For the sake of simplicity, we will just port-forward it locally.

To check the installation, open http://localhost:8080/arrow-up-right.

Last updated

Was this helpful?