Helm chart repository for ITOps - Kubernetes-native IT Operations Platform.
helm repo add itops https://charts.mlops.hu
helm repo update
| Chart | Description |
|---|---|
| itops | ITOps Platform - Core API + UI + bundled PostgreSQL & Redis |
| itops-agent | ITOps Agent - Kubernetes operator for service discovery & SLA monitoring |
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
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.
helm show values itops/itops or helm show values itops/itops-agent