charts

ITOps Helm Charts

Helm chart repository for ITOps - Kubernetes-native IT Operations Platform.

Usage

helm repo add itops https://charts.mlops.hu
helm repo update

Available Charts

Chart Description
itops ITOps Platform - Core API + UI + bundled PostgreSQL & Redis
itops-agent ITOps Agent - Kubernetes operator for service discovery & SLA monitoring

Quick Start

1. Deploy the Platform

helm install itops itops/itops -n itops --create-namespace

Works out of the box - deploys Core API, UI dashboard, PostgreSQL, and Redis. Default login: admin / admin.

To expose externally:

helm install itops itops/itops -n itops --create-namespace \
  --set ingress.hosts[0].host=api.yourdomain.com \
  --set ingress.tls[0].hosts[0]=api.yourdomain.com \
  --set uiIngress.hosts[0].host=app.yourdomain.com \
  --set uiIngress.tls[0].hosts[0]=app.yourdomain.com

2. Connect Your Clusters

Install the agent on each Kubernetes cluster you want to monitor:

helm install itops-agent itops/itops-agent \
  --set node.id="myorg/platform/prod/cluster1" \
  --set itops.url="https://api.yourdomain.com" \
  --set itops.apiKey.value="YOUR_OPERATOR_API_KEY" \
  -n itops --create-namespace

The OPERATOR_API_KEY is set in the platform chart under secretEnv.ITOPS_SECURITY_OPERATOR_API_KEY.

Documentation