⛴️Deploy Toucan in Air-Gapped Environment
In this section, we will deploy Toucan in an air-gapped environment using Helm Charts. We'll assume this configuration:
Traffic is only exposed internally:
The machine can only be contacted through private networks (VPC or VPN).
The machine cannot be reached from the internet and is stricly blocked by the firewall.
A Private DNS is configured to forward
toucan.example.comto the machine IP.
This guide assumes a strict air-gapped environment:
At first, you have a networked environment. You have access to the internet and can download files to put on a USB stick.
Then, you deploy the Toucan Stack on your air-gapped environment.
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
Description and additional requirements
This guide does NOT cover the deployment of Kubernetes in an Air-Gapped environment. If you are interested, we recommend you to read the k3s - Air-Gap Install guide. We recommend using the Private Registry method.
In this guide, we plan to follow that method:
In a networked environment, you have access to the internet and will download files.
In an air-gapped environment, you have no access to the internet and will need to put these files on Kubernetes:
Helm Charts will be hosted on the deployment server containing the tools for installing the Toucan Stack.
The Docker images will be hosted on a local registry.
The deployment will use that local registry to pull the images.
Therefore, you will need:
A storage to transfer files from the networked environment to the air-gapped environment. Recommended size is 10GB.
After uploading the container images in the local registry, container layers will be uncompressed. The registry will requires at least the double.
Preparations in the networked environment
1. Download the Private Registry
If you are using minikube, k3s, or another Kubernetes distribution, it's very possible there is already a private registry, or a way to load container images directly on the container runtime. You should check the documentation of your Kubernetes distribution.
If not, in this guide, we'll install registry as a private registry.
Download the container image:
2. Download Toucan-Stack
Download the Helm Chart
Download the container images:
You should have every files required for the air-gapped installation!
Installation in the air-gapped environment
1. Deploy the Private Registry
Since there is no registry to host the container registry image (chicken-egg problem), we need to deploy a private registry manually.
Transfer the registry container image file directly on the Kubernetes node.
If you are in a multi-node setup, you should do this for all the nodes. Since the registry requires a volume, it is better to stick the registry to a single node using
nodeSelectorsand use alocal-path/hostPathvolume.Import the image in the container runtime:
Deploy the registry using Kubectl:
2. Transfer the images to the Private Registry
Edit the
/etc/docker/daemon.jsonto indicates that<node-0 ip>:32000is not secured by TLS:And run:
Using the images you've pulled from earlier steps, tag them to the private registry:
3. Deploy Toucan Stack
Deploy the Helm charts
Since we are using Helm, we can patch the necessary values to inject the credentials and secrets. We also need to expose the service to the external network and secure it with TLS.
Create the values file, which will override the default values.
(optional) For strict air-gapped environments, assuming you have transferred the container images to your air-gapped container registry, add these lines to
values.override.yamloverride the registry:Add this line to select your storage provisioner:
(Optional) Override the volume size:
Configure TLS for the Toucan Stack and deploy the routes:
Create these files:
Deploy the certificates with:
Now, add a new listener to the gateway:
Re-deploy the gateway with:
Check the status of the gateway with:
Now, add a new route to the gateway:
Create these files:
Deploy the certificates with:
Expose the Toucan Stack by adding these lines:
At this point, your
values.override.yamlshould looks like (minus the volume size overrides):
Deploy the Toucan Stack:
To get the Admin password, run the following command:
You should be able to access the Toucan Stack at https://toucan.example.com and login with the admin credentials. Enter
admin@example.comfor the username and the password you got from the previous step.
Last updated
Was this helpful?