Getting Started on Kubernetes (BETA)
This documentation outlines how to use HEAVY.AI’s Helm Chart within a Kubernetes environment. It assumes the user is a network administrator within your organization and is an experienced Kubernetes administrator. This is not a beginner guide and does not instruct on Kubernetes installation or administration. It is quite possible you will require additional manifest files for your environment.
Overview
The HEAVY.AI Helm Chart is a template of how to configure deployment of the HEAVY.AI platform. The following files need to be updated/created to reflect the customer’s deployment environment.
values.yml<customer_created>-pv.yml<customer_created>-pvc.yml
Once the files are updated/created, follow the installation instructions below to install the Helm Chart into your Kubernetes environment.
Where to get the Helm Chart?
The Helm Chart is located in the HEAVY.AI github repository. It can be found here: https://releases.heavy.ai/ee/helm/heavyai-1.0.0.tgz
What’s included?
How to install?
- Before installing, create a PV/PVC that the deployment will use. Save these files in the regular PVC/PV location used in the customer’s environment. Reference the
README.pdffile found in the Helm Chart under templates and the example PV/PVC manifests in themiscfolder in the helm chart. The PVC name is then provided to thehelm installcommand. - In your current directory; copy the
values.ymlfile from the HEAVY.AI Helm Chart and customize for your needs. - Run the
helm installcommand with the desired deployment name and Helm Chart.-
When using a
values.ymlfile:$ helm install heavyai --values values.yml heavyaihelmchart-1.0.0.tgz -
When not using a values.yml file:
If you only need to change a value or two from the default values.yml file you can use —
setinstead of a custom values.yml file. For example:$ helm install heavyai --set pvcName=MyPVCName heavyaihelmchart-1.0.0.tgz
-
How to uninstall?
To uninstall the helm installed HEAVY.AI instance:
$ helm uninstall heavyai
The PVC and PV space defined for the HEAVY.AI instance is not removed. The retained space must be manually deleted.