The helm chart installs cmdb in a Kubernetes cluster.
- Kubernetes 1.22+
- Helm 3.9+
Add Veops Helm repository
$ helm repo add veops https://veops.github.io/helm-charts
To install the chart with the release name my-cmdb
, run the following command:
$ helm install my-cmdb veops/cmdb
- Use existing mysql and redis
--set api.mysql.builtIn=false \
--set api.mysql.host=${your-mysql-host} \
--set api.mysql.port=${your-mysql-port} \
--set api.mysql.database=${your-mysql-database} \
--set api.mysql.user=${your-mysql-user} \
--set api.mysql.password=${your-mysql-password}
--set api.redis.builtIn=false \
--set api.redis.host=${your-mysql-host} \
--set api.redis.port=${your-mysql-port} \
--set api.redis.password=${your-mysql-password}