/cprobe-helm-chart

Primary LanguageSmartyGNU Affero General Public License v3.0AGPL-3.0

Cprobe Helm Chart

Features

This Helm Chart includes all the components of Cprobe for a complete experience.

  • Cprobe core plugins:
    • MySQL
    • Redis
    • Kafka
    • MongoDB
  • Management & monitoring components:
    • Prometheus
    • Grafana
    • Helm Chart Repository

Prerequisites

  • Install the follow packages: git, kubectl, helm, helm-docs.

How to install

Access a Kubernetes cluster.

Add a chart helm repository with follow commands:

git clone https://github.com/cprobe/helm-chart.git

cd helm-chart

helm install cprobe ./charts/cprobe -n NAMESPACE

Test the installation with command:

helm install cprobe cprobe -f values.yaml -n NAMESPACE --debug --dry-run

Get the pods lists by running this commands:

kubectl get pods -A | grep 'cprobe' -n NAMESPACE

Get the application by running this command:

helm list -n NAMESPACE

How to uninstall

Remove application with command.

helm uninstall cprobe -n NAMESPACE