Kubernetes (k8s)
This page provides steps to install Appsmith on a Kubernetes cluster using the Helm package manager. The default installation runs a single replica and is a good starting point for getting Appsmith running. If you need high availability with multiple replicas, review the deployment planning guide before installing — some decisions require a migration to change later.
Requirements
Kubernetes cluster
- A running Kubernetes cluster (1.33+).
- Appsmith application pods need at least 6 GB of memory and benefit from 2 vCPUs. MongoDB, Redis, PostgreSQL, and other chart dependencies consume additional resources, and the cluster itself has overhead for system components (kube-proxy, monitoring agents, ingress controllers, etc.). Plan for a minimum of 2 nodes with 2 vCPUs and 8 GB of memory each.
- A default
StorageClasscapable of provisioning persistent volumes. Most managed Kubernetes services (EKS, GKE, AKS) provide this out of the box. - An Ingress controller (such as Traefik or an AWS/GCP load balancer controller) or a
LoadBalancer-type Service to expose Appsmith to users. - Outbound network access to
cs.appsmith.comfor license validation and updates.
If you are setting up a new cluster on AWS, see Set up Kubernetes cluster on AWS-EKS.
Client machine
- Helm 3.14+ — the Helm package manager.
kubectl— configured to connect to your cluster.
Install Appsmith
Follow these steps to install Appsmith:
-
Add the Appsmith chart repository:
helm repo add appsmith-ee https://helm-ee.appsmith.com
helm repo update -
Look up the latest Appsmith release version:
APPSMITH_VERSION=$(curl -s https://api.github.com/repos/appsmithorg/appsmith/releases/latest | jq -r '.tag_name')
echo $APPSMITH_VERSION -
Create a
values.yamlfile with the following content:image:
tag: # paste the version from step 2 (e.g. v1.99)
mongodb:
enabled: false
mongodbCommunity:
enabled: true
mongodbOperator:
enabled: true
ingress:
enabled: true
className: "" # leave blank for the cluster default, or set to your controller (e.g. traefik, alb)
hosts:
- host: appsmith.example.comReplace
appsmith.example.comwith your domain and setclassNameto match your Ingress controller. This configures the chart to use the MongoDB Kubernetes Operator instead of the legacy Bitnami MongoDB subchart. For TLS configuration, see Configure TLS. -
Deploy Appsmith:
helm install appsmith-ee appsmith-ee/appsmith \
-n appsmith-ee --create-namespace \
-f values.yaml -
Wait for the pods to be ready:
kubectl get pods -n appsmith-eeProceed once all pods show
Running. -
If your ingress and DNS are already configured, open
https://appsmith.example.com. Otherwise, use port-forward to verify the installation locally:kubectl -n appsmith-ee port-forward appsmith-ee-0 8080:80Open http://localhost:8080 and wait for the server to come up. This can take up to 5 minutes.
-
Fill in your details to create an administrator account.
-
Once you've created an account, you can either start with the free plan or activate your instance with a license key. If you want to generate a license key, sign up on customer.appsmith.com to create one, and then proceed to activate your instance using the newly generated license key.
Next steps
Appsmith is running and accessible via your ingress. Explore other guides below to secure and customize your deployment.
Set up TLS certificates for your Appsmith ingress using cert-manager or your own certificates.
Deployment planning, database options, and chart configuration reference.
Configure multiple replicas and shared storage for high availability.
Enable SSO to allow users to log in using your identity provider.
Set up an email service to enable notifications and alerts.
Learn how to remove Appsmith resources from your cluster and start fresh.
Troubleshooting
If you are facing issues during deployment, refer to the guide on troubleshooting deployment errors. If you continue to face issues, contact the support team using the chat widget at the bottom right of this page.
See also
- Manage Installation: Learn how to manage your Appsmith instance.
- Upgrade Installation Guides: Learn how to upgrade your Appsmith installation.