Carbonetes Analyzer
The Carbonetes Analyzer is created specifically, to function as Carbonetes Helm Chart.
Helm is a package manager for Kubernetes. It helps deploying applications easily in a cluster. Helm uses Charts as its packaging format. A chart is a collection of Kubernetes manifest files that can deploy a simple or complex applications.
Installation
First, you need to install Helm by following this guidelines.
After installing helm, add this helm repo by running the command below:
$ helm repo add carbonetes https://carbonetes.github.io/carbonetes-helm-chart/
Then install Carbonetes Analyzer using the command below:
$ helm install <release-name> carbonetes/carbonetes-analyzer --set carbonetesCreds.username="YOUR_USERNAME" --set carbonetesCreds.password="YOUR_PASSWORD"
Or via custom values.yaml:
$ helm install carbonetes-analyzer -f carbonetes-creds.yaml carbonetes/carbonetes-analyzer
carbonetes-creds.yaml must include the following values:
- carbonetesCreds:
- username: "YOUR_USERNAME"
- password: "YOUR_PASSWORD"