In this unit you will learn how to install Ingrid using Kubernetes.
Prerequisite
Add the Ingrid Repo to your helm
helm repo add ingrid --username <username> --password <password> https://registry.gravitir.io/chartrepo/ingrid
helm repo update
NOTE: Contact Gravitir for a username and password to access our Helm / Image Registry
Pull the core Chart for ingrid.
Because the core Chart uses subcharts, it can not be included in other Charts.
Create a Project Directory and fetch and untar the Chart within
helm pull ingrid/ingrid --untar
cd ingrid
helm dependencies build
Tweak the values.yaml File to match your needs.
At least, tweak the following settings:
ingrid-core-hive:
registry:
username: xxx
password: xxx
ingrid-core-api:
ingress:
host: your.ingress.url
annotations: []
ingrid-core-dashboard:
api:
host: your.ingress.url
ingress:
host: your.ingress.url
annotations: []
Create a namespace as needed
kubectl create namespace ingrid
Deploy the Ingrid core into that namespace
helm install core . -n ingrid