Distributed Installation to Azure AKS
This guide describes how to install the CodeCanvas application to a Kubernetes cluster hosted in AKS (Azure Kubernetes Service). It implies that the database services are hosted in Azure Database for PostgreSQL and the object storage in Azure Blob Storage.
Before installing CodeCanvas, complete the following prerequisites.
CodeCanvas requires a PostgreSQL database for the CodeCanvas application data.
Deploy an Azure Database for PostgreSQL server (versions 12.2–15.12 are supported). Ensure the server is accessible from the CodeCanvas application cluster.
Create a dedicated database for the CodeCanvas application.
Ensure that the database server is up and running before proceeding with the installation.
Create an Azure Blob Storage container to store user and application data. Use the Azure Blob Storage documentation for detailed steps. Use either Workload Identity or static credentials for access.
The CodeCanvas application cluster hosts the CodeCanvas application and related services. Learn more about the CodeCanvas architecture
Azure AKS cluster
Set up an Azure AKS cluster for the CodeCanvas application that meets the following requirements:
Requirement
Description
Helm
Version 3.8.0 or later
Kubernetes
Version 1.29 or later
Cluster nodes
At least four nodes with Linux OS (x86_64). Recommended min resources: 4 CPU cores and 8GB memory
Namespace
Create a dedicated namespace for the CodeCanvas application (replace
NAMESPACE_PLACEHOLDER
with your namespace name):kubectl create namespace NAMESPACE_PLACEHOLDER
Ingress controller
Install an Ingress controller compatible with your AKS setup. In this guide, we use the ingress-nginx controller.
warning
If you're using a different setup for DNS zones and TLS certificates management, you might need to adjust the
custom.values.yaml
file accordingly to your setup.
Domain name
Register a domain name for the CodeCanvas instance, e.g.,
codecanvas.example.com
.DNS zones
Install ExternalDNS in the CodeCanvas application cluster to manage DNS records.
TLS certificates
Install cert-manager in the CodeCanvas application cluster to manage TLS certificates issued by Let's Encrypt.
Subdomains
Configure subdomains for the CodeCanvas application components. The configuration in
custom.values.yaml
supposes the following DNS domain naming scheme:EXTERNAL_DOMAIN_PLACEHOLDER
– the main domain for the CodeCanvas application that serves the main administrative UI and REST API. For example,codecanvas.example.com
computeservice.EXTERNAL_DOMAIN_PLACEHOLDER
– the subdomain that serves thecompute-service
REST API. It is an internal domain customarily accessed only by dev environment pods.gateway.EXTERNAL_DOMAIN_PLACEHOLDER
– serves thegateway-relay
service (Relay server). It is an external domain accessed by user IDE clients.
To grant the CodeCanvas application access to Azure resources, such as Blob Storage, you should use Azure Workload Identity. This eliminates the need for static credentials.
Follow the steps in the Azure Workload Identity documentation to configure the managed identity and bind it to your AKS cluster.
Ensure the managed identity has the required permissions to access Azure Blob Storage. For example, assign the Storage Blob Data Contributor
role to the identity to grant it write permissions to the target storage account. Refer to the Azure storage authorization documentation for details.
CodeCanvas uses the SMTP server to send various emails to users, for example, invitation links during the user creation, email verification, and other notifications. If you want to enable this functionality, ensure you have an SMTP server accessible from the CodeCanvas application cluster.
Create a custom.values.yaml
file and copy the snippet below to it. You will replace placeholders with actual values in the next steps.
application:
{...}
application:
replicaCount: 2
serviceAccount:
name: "CODECANVAS_KSA_NAME"
annotations:
"azure.workload.identity/client-id": "AZURE_CLIENT_ID"
podLabels:
azure.workload.identity/use: "true"
ingress:
annotations:
"cert-manager.io/cluster-issuer": "CERT_MANAGER_NAME_PLACEHOLDER"
ingressClassName: "INGRESS_CLASS_PLACEHOLDER"
hostname: "EXTERNAL_DOMAIN_PLACEHOLDER"
computeHostname: "computeservice.EXTERNAL_DOMAIN_PLACEHOLDER"
tlsEnabled: true
config:
codecanvas:
bootstrap:
relay:
enabled: false
jump:
enabled: false
licenseAgreementAccepted: ACCEPTANCE_PLACEHOLDER # Set to true to accept the license agreement
secret:
objectStorage:
type: "azure"
existingSecretName: "codecanvas-objectstorage-secret-ext"
postgresql:
existingSecretName: "codecanvas-db-secret-ext"
codecanvas:
localAdministrator:
firstName: "Admin"
lastName: "Admin"
username: "ADMIN_USERNAME_PLACEHOLDER"
password: "ADMIN_PASSWORD_PLACEHOLDER"
email: "ADMIN_EMAIL_PLACEHOLDER"
masterSecret: "MASTER_SECRET_PLACEHOLDER"
jump:
enabled: false
relay:
enabled: false
During pre-installation, you configured Azure Workload Identity to link a managed identity with a Kubernetes service account. Now, apply this configuration: In custom.values.yaml
, replace AZURE_CLIENT_ID
with the client ID of your managed identity.
In custom.values.yaml
, replace EXTERNAL_DOMAIN_PLACEHOLDER
with the domain name you've registered for your CodeCanvas instance.
In custom.values.yaml
, replace CERT_MANAGER_NAME_PLACEHOLDER
with the name of cert-manager used in your cluster.
The CodeCanvas installation implies that you use an external PostgreSQL database. Though you can use any PostgreSQL database, we recommend using Amazon RDS.
Get the credentials for the database user that has permissions to create, read, update, and delete all entities in the schema.
A database secret is used to secure access to the PostgreSQL database.
Create a
codecanvas-db-secret.yaml
file and copy the snippet below to it.apiVersion: v1 kind: Secret type: Opaque metadata: name: codecanvas-db-secret-ext namespace: NAMESPACE_PLACEHOLDER stringData: DB_HOST: "CODECANVAS_DB_HOST_PLACEHOLDER" DB_NAME: "CODECANVAS_DB_NAME_PLACEHOLDER" DB_PASSWORD: "CODECANVAS_DB_PASSWORD_PLACEHOLDER" DB_PORT: "CODECANVAS_DB_PORT_PLACEHOLDER" DB_USERNAME: "CODECANVAS_DB_USERNAME_PLACEHOLDER"
Replace the following placeholders:
NAMESPACE_PLACEHOLDER
with your Kubernetes namespaceCODECANVAS_DB_PASSWORD_PLACEHOLDER
with a password for theCODECANVAS_DB_USERNAME_PLACEHOLDER
userCODECANVAS_DB_HOST_PLACEHOLDER
with the PostgreSQL hostnameCODECANVAS_DB_PORT_PLACEHOLDER
with the PostgreSQL port
Run:
kubectl apply -f codecanvas-db-secret.yaml
You can now delete the
codecanvas-db-secret.yaml
file or keep it based on your organization's secret management policies.
CodeCanvas installation implies that you use an external object storage. The instructions below apply to Azure Blob Storage.
The object-storage secret is used to secure access to the Azure Blob Storage.
Create an
object-storage-secret.yaml
file and copy the snippet below to it. The snippet implies that you use Workload Identity.apiVersion: v1 kind: Secret type: Opaque metadata: name: codecanvas-objectstorage-secret-ext namespace: NAMESPACE_PLACEHOLDER stringData: CODECANVAS_OBJECT_STORAGE_AZURE_ACCOUNT_NAME: "CODECANVAS_OBJECT_STORAGE_AZURE_ACCOUNT_NAME_PLACEHOLDER" CODECANVAS_OBJECT_STORAGE_AZURE_CONTAINER: "CODECANVAS_OBJECT_STORAGE_AZURE_CONTAINER_PLACEHOLDER" # (optional) uncomment if you use static credentials # CODECANVAS_OBJECT_STORAGE_AZURE_ACCOUNT_KEY: "CODECANVAS_OBJECT_STORAGE_AZURE_ACCOUNT_KEY_PLACEHOLDER"
Replace the following placeholders:
NAMESPACE_PLACEHOLDER
with your Kubernetes namespaceCODECANVAS_OBJECT_STORAGE_AZURE_ACCOUNT_NAME_PLACEHOLDER
with the name of the Azure Blob Storage accountCODECANVAS_OBJECT_STORAGE_AZURE_CONTAINER_PLACEHOLDER
with the name of the Azure Blob Storage containerCODECANVAS_OBJECT_STORAGE_AZURE_ACCOUNT_KEY_PLACEHOLDER
with the Azure account key (only if you use static credentials)
You can also redefine the endpoint of the Azure Blob Storage by adding
CODECANVAS_OBJECT_STORAGE_AZURE_ENDPOINT
. Learn moreRun:
kubectl apply -f object-storage-secret.yaml
You can now delete the
object-storage-secret.yaml
file or keep it based on your organization's secret management policies.
warning
Important! Keep the master secret in a secure place. If you lose the master secret, you will lose access to all user data.
The CodeCanvas application keeps user secrets (e.g., credentials to external services) in the database in an encrypted form. The master secret is used to encrypt and decrypt these data.
The master secret can be any Base64-encoded string. For example, you can generate a random string using openssl
.
Generate the master secret by running
openssl rand -base64 32
In
custom.values.yaml
, replaceMASTER_SECRET_PLACEHOLDER
with the generated value.
The system administrator account will be used for logging in to and configuring CodeCanvas after the installation. You can either provide credentials manually or let the system generate them automatically.
If you skip the instructions below, the default username will be admin
and a random password will be generated during installation (shown after the chart is deployed). Note that you still have to specify an email instead of ADMIN_EMAIL_PLACEHOLDER
.
In
custom.values.yaml
, replace:ADMIN_USERNAME_PLACEHOLDER
andADMIN_PASSWORD_PLACEHOLDER
with desired administrator credentials.ADMIN_EMAIL_PLACEHOLDER
with an email address for receiving administrator notifications from CodeCanvas.
In custom.values.yaml
, replace INGRESS_CLASS_PLACEHOLDER
with the Ingress class used for the CodeCanvas application cluster.
Suppose you've set up Workload Identity in the application cluster and prefer the service account name to be independent of the Helm release name. In that case, you may want to specify a particular name for the Kubernetes service account that the CodeCanvas Helm chart will create. To do this, in custom.values.yaml
, replace CODECANVAS_KSA_NAME
with the desired name.
By default, CodeCanvas runs worker containers in the --privileged
mode (the containers have root privileges on the host node). If you want to avoid this due to security reasons, install Sysbox Container Runtime as described here.
In custom.values.yaml
, replace ACCEPTANCE_PLACEHOLDER
with true
to explicitly accept the CodeCanvas license agreement.
Run:
helm upgrade -n NAMESPACE_PLACEHOLDER --wait --install \
-f custom.values.yaml \
codecanvas \
oci://public.registry.jetbrains.space/p/codecanvas/release-charts/codecanvas \
--version 2025.1.2
Here:
NAMESPACE_PLACEHOLDER
is your Kubernetes namespacecodecanvas
is the Helm release name. You can change it if needed.
After you install your CodeCanvas instance, verify the installation.
Run:
kubectl -n NAMESPACE_PLACEHOLDER get pods
All pods must be in the Running
state. On average, it takes about 2 minutes after deployment for a pod to become active.
If the pods are not Running
, try finding the cause by running:
kubectl -n NAMESPACE_PLACEHOLDER get event
and
kubectl -n NAMESPACE_PLACEHOLDER describe pod POD_NAME
The domain name must resolve to the Ingress load balancer. You can check this by running:
nslookup EXTERNAL_DOMAIN_PLACEHOLDER
nslookup gateway.EXTERNAL_DOMAIN_PLACEHOLDER
The output must not contain any errors.
Open your CodeCanvas instance in a browser. When logging in to CodeCanvas, use the administrator credentials provided during the installation.
Follow the instructions on how to activate your CodeCanvas instance.
A computing platform in CodeCanvas is a configuration entity that represents the infrastructure responsible for running dev environments. It consists of a dev environment cluster managed by a Kubernetes operator, a Relay server, and a Jump server. Learn more about the CodeCanvas architecture.
Note that your CodeCanvas installation can use multiple dev environment clusters, e.g., distributed across different regions. The requirements for all dev environment clusters are the same.
Azure AKS cluster
Set up an Azure AKS cluster for dev environments. The cluster should meet these requirements:
Requirement
Description
Helm
Version 3.8.0 or later
Kubernetes
Version 1.29 or later
Cluster nodes
Sufficient nodes to run dev environments, each with Linux OS (Ubuntu, x86_64), recommended min resources: 4 CPU cores and 8GB memory. See our recommendations below
- Key recommendations on cluster nodes
General node requirements
Linux OS (Ubuntu, x86_64), recommended minimum resources: 4 vCPUs and 8GB memory.
Configure autoscaling
Use autoscaling to adjust the number of nodes based on the load. Start with a minimum number of nodes that is enough to cover normal usage and allow autoscaling to add more nodes during peak usage. See our recommendations on autoscaling
Estimate the resources
Estimate normal and peak concurrent usage – the average and max number of concurrent environments. For example, if during peak activity, 20 developers use 2–3 dev environments each, your peak demand is 60 active environments.
Calculate total resource requirements: For example, if your typical dev environment is 4 vCPUs and 16GB memory, for 60 dev environments you will need 240 vCPUs and 960GB memory.
Important: Kubernetes requires a part of each node's resources for system tasks, such as
kubelet
,kube-proxy
, and others. You should reserve approximately 0.2 vCPU and 1–2GB memory per node for the system tasks. The exact values depend on the installation. To view the actual node resource usage, runkubectl describe node <node-name>
Choose a node allocation strategy
One Node – One Dev Environment
A single node (Azure VM) hosts only one dev environment (worker pod). In our example, you would need 60 separate nodes for 60 dev environments, for instance,
Standard D4s v3
(4 vCPUs, 16GB memory).(+) No overprovisioning: Each node is fully utilized by a single dev environment.
(+) Fault tolerance: Only one dev environment is affected if a node fails.
(-) Higher overhead: Kubernetes requires a part of each node's resources for system tasks. So, in our example, each dev environment will have 4 vCPUs and 16GB memory, but a developer will get only 3.8 vCPUs and 14–15GB memory. The rest (0.2 vCPU and 1–2GB memory) will be used by the Kubernetes system tasks with the resulting overhead of 60 * (0.2 vCPUs and 1–2GB) = 12 vCPUs and 60–120GB. You can solve this by using larger instances.
(-) Slower start times: The autoscaler must provision a new node for each new dev environment.
One Node – Multiple Dev Environments
A single node (Azure VM) hosts multiple dev environments (worker pods). In our example with 60 dev environments (240 vCPUs and 960GB memory in total), you could divide this load into 4–6 nodes, such as
Standard D64s v3
(64 vCPUs, 256GB memory) orStandard D32s v3
(32 vCPUs, 128GB memory).(-) Overprovisioning: Resources are wasted if fewer dev environments are running than a node can accommodate.
(-) Fault tolerance: If a node fails, multiple dev environments are affected.
(+) Lower overhead: Multiple dev environments share the same node, reducing the overhead from Kubernetes system tasks (0.2 vCPU and 1–2GB memory per node). In our example, with 4–6 nodes, the resulting overhead is 4–6 * (0.2 vCPUs and 1–2GB) = 0.8–1.2 vCPUs and 4–12GB memory. Compare it to the 12 vCPUs and 60–120GB overhead in the One Node – One Dev Environment strategy.
(+) Faster start times: If a node has available resources, new worker pods can start immediately without waiting for a new node to be provisioned.
(+) Potential cost savings: Using fewer, larger instances can be more cost-effective than using many smaller instances. However, this depends on how well you can predict resource usage and how efficiently you can pack dev environments onto nodes.
Choose Azure instance types
To compare and choose Azure instance types, use the official Azure VM sizes documentation.
Avoid burstable instance types, such as
B
-family. Instead, consider using compute-optimized or memory-optimized instance types, such asStandard D
orStandard E
family.
CSI driver
Install the Azure Disk CSI driver (
disk.csi.azure.com
) in the cluster. CodeCanvas uses this driver to manage persistent volumes and snapshots for dev environments. For installation instructions, refer to the Azure documentation. Learn more about CSI in CodeCanvasStorage class
Create a Kubernetes
StorageClass
for provisioning persistent volumes used by dev environments. You can use the recommended configuration below or define your own based on performance or cost preferences.The recommended configuration guarantees dev environment performance: it uses Azure
StandardSSD_LRS
managed disks.Your dev environment cluster can have multiple storage classes. When creating an instance type, you can choose from the available storage classes.
Create a
storage-class.yaml
file and copy the snippet below to it.apiVersion: storage.k8s.io/v1 kind: StorageClass metadata: name: codecanvas-storage # You can change this name provisioner: disk.csi.azure.com parameters: skuName: StandardSSD_LRS # Recommended: # StandardSSD_LRS (equivalent to 'managed-csi') # Premium_LRS (equivalent to 'managed-csi-premium') kind: Managed allowVolumeExpansion: true reclaimPolicy: Delete volumeBindingMode: Immediate
Apply the configuration to the cluster:
kubectl apply -f storage-class.yaml
Delete the
storage-class.yaml
file or keep it based on your organization's management policies.
Volume snapshot class
Create a Kubernetes
VolumeSnapshotClass
to enable snapshot support for persistent volumes used in dev environments. You can use our recommended volume snapshot class configuration below.Your dev environment cluster can have multiple volume snapshot classes. When creating an instance type, you can choose from the available classes.
Create a
snapshot-class.yaml
file and copy the snippet below to it.apiVersion: snapshot.storage.k8s.io/v1 kind: VolumeSnapshotClass metadata: name: codecanvas-volume-snapshot # You can change this name driver: disk.csi.azure.com deletionPolicy: Delete
Apply the configuration to the cluster:
kubectl apply -f snapshot-class.yaml
Delete the
snapshot-class.yaml
file or keep it based on your organization's management policies.
If you plan to use JetBrains IDEs in your CodeCanvas instance, you should configure at least one Relay server. It enables connections between the JetBrains client on a local machine and the remote IDE backend.
For the best user experience, the Relay server should be deployed closer to the dev environment cluster to minimize latency (e.g., in the dev environment cluster itself or in the same region).
Follow the instructions on how to install a Relay server.
If you want users to connect to dev environments via SSH (e.g., using VS Code remote development or terminal access), you need to set up a Jump server. Otherwise, this step is optional.
For the best user experience, the Jump server should be deployed closer to the dev environment cluster to minimize latency (e.g., in the dev environment cluster itself or in the same region).
Follow the instructions on how to install a Jump server.
Select Administration in the header navigation, then in the sidebar menu, select Computing Platforms.
Click New connection.
Give this connection a Name, specify other settings:
Kubernetes namespace – the Kubernetes namespace where the dev environments are running. The namespace may already exist, otherwise, it will be created during the connection.
Relay server and Jump server – the servers that you've created in the previous steps.
Here you can also modify the pod YAML template according to your needs. Learn more about this and other computing platform settings
Click Save to add the connection to the list. Note that the connection is not yet active.
Click the connection name to open its details.
The connection details page provides the snippet that you should use to install the CodeCanvas operator in the dev environment cluster. The operator communicates with the CodeCanvas application and starts/stops worker pods in the dev environment cluster.
To communicate with each other, the CodeCanvas application and the operator require a key pair. The public key is stored in CodeCanvas, and the private key is used by the operator.
To generate a key pair, click Generate keys. The private key will be automatically added to the snippet.
Copy the snippet to the clipboard.
Run the snippet to apply it to the dev environment cluster. The snippet configures the cluster and installs the operator.
Click Test connection and ensure that all checks are successful.
After successfully verifying the installation and connecting the computing platform, you can proceed to configuration of your CodeCanvas instance: creating dev environment instance types, adding users, namespaces, and so on.