This repository contains Helm charts for the Metadata collector project.
Helm must be installed to use the charts.
helm repo add metis-data https://metis-data.github.io/helm-charts/
helm repo update
helm install metis-mmc metis-data/metis-md-collector \
--set METIS_API_KEY=DHuUr5UXrg1jP0ZuB8Sl35t970UpQ5eFr75SD0xb \
--set DB_CONNECTION_STRINGS=postgresql://postgres:postgres@localhost:5432/platform;
This command will install metis collector in your Kubernetes cluster.
helm install metis-mmc metis-data/metis-md-collector -f my-values.yml --namespace metis --create-namespace
Example:
helm install --dry-run --debug metis-mmc metis-data/metis-md-collector \
--set apiKey=DHuUr5UXrg1jl370UpQ5eFr75SD0xb \
--set dbConnectionStrings=postgresql://postgres:postgres@localhost:5432/platform;
If you had already added this repo earlier, run helm repo update
to retrieve
the latest versions of the packages.
You can then run helm search repo teletrace
to see the charts.
DB_CONNECTION_STRINGS
: your database connection details e.g ‘postgres://user:password@host:port/database’API_KEY
: Metis Api Key generated at Metishelm delete metis-mmc --namespace metis
In this tutorial, you learned how to install Metis collector using Helm chart. Helm chart simplifies the installation and management of Metis collector in a Kubernetes cluster. You can customize the installation by modifying the values in the Helm chart. With Metis collector installed, you can now use it to get better observability and reports of your databases.
Update chart version here: charts/metis-md-collector/Chart.yaml
Package helm and update index:
cd ./helm-charts/charts
helm package metis-md-collector
helm repo index . --url https://metis-data.github.io/helm-charts/ --merge index.yaml