๐Quick-Start Guide
Our self-hosted solution is currently in alpha and available to a limited group of customers. Features and setup options are subject to change. Interested in early access? Reach out to your Customer Success Manager to learn more, or contact [email protected].
Current limitations:
Migration between v2 and v3 is not stable.
SAML2 is not supported at the moment. We recommend using SSO via OIDC instead.
If you notice unexpected behavior, do not hesitate to contact us through predefined channels:
Slack (available during the alpha period)
Your Customer Success Manager.
This topic includes instructions for installing and running Toucan on Kubernetes using Helm Charts.
Helm is an open-source command line tool used for managing Kubernetes applications. It is a graduate project in the CNCF Landscape.
Before you begin
To install Toucan using Helm, ensure you have completed the following:
Install a Kubernetes server on your machine (or use a managed Kubernetes). For information about installing Kubernetes, refer to Install Kubernetes.
Install the latest stable version of Helm. For information on installing Helm, refer to Install Helm.
Install the latest stable version of kubectl. For information on installing kubectl, refer to Install kubectl.
Have access to the Toucan Toco's Quay registry. If you don't have access, contact us using our mail address: [email protected].
Have a Curity Community Edition license. You can sign up for one here.
Install cert-manager on the Kubernetes Cluster to generate TLS certificates. For information on installing cert-manager, refer to Install cert-manager.
An Ingress controller setup on the Kubernetes Cluster. For information on installing an Ingress controller, refer to Install an Ingress controller. We'll assume you are using the Nginx Ingress controller.
A DNS set up for the Toucan Toco's domain which points to your Ingress controller Load Balancer IP. For this example, we will use
demo.toucantoco.testas the main domain, andauth-demo.toucantoco.testas the authentication domain.
Install Toucan using Helm
Overview

You can simply consider the "Toucan Stack" Helm Chart as a single package.
To customize the chart, Helm can overrides the default values file by specifying additional values files. You can read more about it in the official Helm documentation.
NOTE: This guide helps you deploy a simple "one-shot" "all-in-one" Toucan Stack, which might not be suitable for production.
We heavily recommend in using an external PostgreSQL database as the one embedded might not be suitable for production:
Please follow the following guide to connect to your external database: Toucan - External Database
If you still wish to deploy PostgreSQL inside Kubernetes, we recommend using CloudNativePG:
Supports failover and multiple standbys replicas.
Supports backups and restores.
Supports migrating data from another PostgreSQL instance.
Supports audit log, monitoring...
Login to the Toucan Toco's Quay registry
To sign in to the Quay registry with Helm, run the following command:
Install Toucan
After you have set up Helm, you can start to deploy Toucan on your Kubernetes cluster.
When you deploy the Toucan Stack Helm charts, use a separate namespace instead of relying on the default namespace. The default namespace might already have other applications running, which can lead to conflicts and other potential issues.
When you create a new namespace in Kubernetes, you can better organize, allocate, and manage cluster resources. For more information, refer to Namespaces.
To create a namespace, run the following command:
Send your Quay credentials to Kubernetes by running the following command:
Replace <username> and <password> with your credentials.
Send your Curity credentials to Kubernetes by running the following command:
Replace <License> with your Curity license, extracted from the json. It should start with ey....
Assuming the DNS is properly configured, and the URLs https//demo.toucantoco.test and https://auth-demo.toucantoco.test are accessible publicly, we'll use cert-manager to generate TLS certificates.
Deploy Toucan by running the following command:
To get the Admin password, run the following command:
Navigate to https://demo.toucantoco.test in your browser to access Toucan.
Login with the Admin credentials. Enter [email protected] for the username. For the password, use the one you got from the previous step.
What's next?
Now that you have a working Toucan deployment, you might be interested in configuring this environment for production use. Feel free to check out:
โ๏ธConfigure email notificationsโ๏ธConfigure HTTPS๐Configure OIDC authenticationโ๏ธTuning resourcesโ๏ธConfigure persistenceLast updated
Was this helpful?

