Quick start
Docker Compose or Helm for Kubernetes
Config Builder
Customise the local deployment according to your needs:
Make sure to have Docker 27 or above. If you get an error saying the docker compose command is not recognised, your Docker version is too old.
Docker Compose
Make sure Docker and Docker Compose are installed on your system.
clone the repo:
git clone https://github.com/intuitem/ciso-assistant-community.gitrun the preparation script and follow the instructions:
./docker-compose.sh
You can also find other variants for different setups as a starting point for your specific needs:
Helm chart
Make sure the Helm binary is installed and switch to your cluster context. The chart is published to a GitHub OCI registry — no helm repo add needed.
Pull the default values:
Edit
custom.yamlfor your environment. At minimum, look at:global.domain— the hostname your instance will serve on.global.tlsandingress.tls.*— enable TLS.backend.config.djangoSecretKey— rotate from the default.backend.config.databaseType(sqlite,pgsql, orexternalPgsql) and the matchingpostgresql.*/externalPgsql.*block.
Create a namespace:
kubectl create ns ciso-assistantInstall:
helm install ciso-assistant-release oci://ghcr.io/intuitem/helm-charts/ce/ciso-assistant -f custom.yaml -n ciso-assistant
See Helm Chart for the full procedure (image tag pinning, values reference, and operational notes).
Last updated
Was this helpful?