Helm Chart
instructions for Kubernetes installation with Helm Chart
GH OCI registry
Getting the values
helm show values oci://ghcr.io/intuitem/helm-charts/ce/ciso-assistant > custom.yaml
customize as you see fit
Install the chart
helm install ciso-assistant-release oci://ghcr.io/intuitem/helm-charts/ce/ciso-assistant -f custom.yaml
Legacy
Make sure to have Helm binary installed and switch to your cluster context.
add the helm repository
helm repo add intuitem https://intuitem.github.io/ca-helm-chart/
get the default values
helm show values intuitem/ciso-assistant > my-values.yaml
check and adjust them to your needs, specifically the
frontendOrigin
parametercreate a namesapce for your deployment
kubectl create ns ciso-assistant
install
helm install my-octopus intuitem/ciso-assistant -f my-values.yaml -n ciso-assistant
In case you are running it locally with a non reachable FQDN, you might want to consider adding tls internal
on the Caddy config for self-signed certificate.
Last updated
Was this helpful?