Back to Appsmith

Appsmith

deploy/helm/README.md

1.9916.5 KB
Original Source

Appsmith

Appsmith is a JS-based internal tool development platform. Internal tools take a lot of time to build even though they involve the same UI components, data integrations, and user access management. Developers love Appsmith because it saves them hundreds of hours.

Build interactive web apps by using UI components like a table, form components, button, charts, rich text editor, map, tabs, modal, and many more.

API Support: CURL importer for REST APIs Database Support: PostgreSQL, MongoDB, MySQL, Redshift, Elastic Search, DynamoDB, Redis, & MSFT SQL Server.

TL;DR


helm repo add stable-appsmith http://helm.appsmith.com

helm repo update

helm install stable-appsmith/appsmith --generate-name

Introduction


This chart bootstrap an Appsmith deployment on a Kubernetes cluster using Helm package manager.

Prerequisites


Installing the Chart


To install the chart with the release appsmith

helm install stable-appsmith/appsmith --generate-name

The command deploys Appsmith application on Kubernetes cluster in the default configuration. The Parameters section lists the parameters that can be configured during installation.

Uninstalling the Chart


To uninstall the appsmith release:

helm list
NAME                       NAMESPACE       REVISION        UPDATED                                 STATUS          CHART           APP VERSION
appsmith-1631069261        default         1               2021-09-09 11:24:40.152766 +0700 +07    deployed        appsmith-1.3.0  1.16.0

helm uninstall appsmith-1631069261

The command uninstalls the release and removes all Kubernetes resources associated with the chart

Parameters

Global parameters

NameDescriptionValue
global.namespaceOverrideOverride the namespace for resource deployed by the chart""
global.storageClassGlobal StorageClass for Persistent Volume(s)""

Common parameters

NameDescriptionValue
fullnameOverrideString to fully override appsmith.name template""
containerNameSpecify container's name running in the pods"appsmith"
commonLabelsLabels to add to all deployed objects{}
commonAnnotationsAnnotations to add to all deployed objects{}

Appsmith Image parameters

NameDescriptionValue
image.registryAppsmith image registryindex.docker.io
image.repositoryAppsmith image repositoryappsmith/appsmith-ce
image.tagAppsmith image taglatest
image.pullPolicyAppsmith image pull policyIfNotPresent

Appsmith deployment parameters

NameDescriptionValue
strategyTypeAppsmith deployment strategy typeRollingUpdate
schedulerNameAlternate scheduler""
annotationsAnnotations to add to the Deployment/StatefulSet resource{}
podAnnotationsAnnotations for Appsmith pods{}
podLabelsLabels for Appsmith pods{}
podSecurityContextAppsmith pods security context{}
securityContextSet security context{}
resources.limitThe resources limits for the Appsmith container{}
resources.requestsThe requested resources for the Appsmith container{}
nodeSelectorNode labels for pod assignment{}
tolerationsTolerations for pod assignment[]
affinityAffinity fod pod assignment{}
extraVolumesAdditional volumes to add to the pod[]
extraVolumeMountsAdditional volume mounts to add to the appsmith container[]

Workload kind

  • workload.kind: Selects the workload resource to create. Allowed values: Deployment, StatefulSet (case-insensitive; default: StatefulSet).
  • Note: When autoscaling.enabled is true, workload.kind is ignored and a Deployment is used.
  • When using Deployment without autoscaling, control the number of replicas with replicas.

Appsmith service account parameters

NameDescriptionValue
serviceAccount.createEnable creation of ServiceAccount for Appsmith podstrue
serviceAccount.nameName of the created ServiceAccount . If not set, a name is generated using the appsmith.fullname template""
serviceAccount.annotationsAdditional service account annotations{}

Traffic Exposure Parameters

NameDescriptionValue
service.typeAppsmith service typeClusterIP
service.portAppsmith service port80
service.portNameAppsmith service port nameappsmith
service.nodePortAppsmith service node port to expose to expose8000
service.clusterIPAppsmith service Cluster""
service.loadBalancerIPAppsmith service Load Balancer IP""
service.loadBalancerSourceRangesAppsmith service Load Balancer sources[]
service.annotationsAdditional custom annotations for Appsmith service{}
ingress.enabledEnable ingress record generation for Appsmithfalse
ingress.annotationsAdditional custom annotations for Ingress{}
ingress.hostsAn array of hosts to be covered with the ingress record[]
ingress.tlsEnable TLS configuration for the hosts defined at ingress.hosts parameterfalse
ingress.secretsCustom TLS certificates as secrets[]
ingress.certManagerEnable ingress to use TLS certificates provided by Cert Managerfalse
ingress.certManagerTlsSpecify TLS secret resources created by Cert Manager[]
ingress.classNameConfigure Ingress class that being used in ingress resource""

Persistence parameters

NameDescriptionValue
persistence.enabledEnable persistence using Persistent Volume Claimstrue
persistence.storageClassPersistent Volume storage class""
persistence.annotationsAdditional custom annotations for the PVC{}
persistence.localStorageEnable persistent volume using local storagefalse
persistence.storagePathLocal storage path/tmp/hostpath_pv
persistence.localClusterLocal running cluster to provide storage space[minikube]
persistence.accessModesPersistent Volume access modes[ReadWriteOnce]
persistence.sizePersistent Volume size10Gi
storageClass.enabledEnable Storage Class configurationfalse
storageClass.defaultClassCreate default Storage Classfalse
storageClass.bindingModeBinding mode for Persistent Volume Claims using Storage ClassImmediate
storageClass.allowVolumeExpansionAllow expansion of Persistent Volume Claims using Storage Classtrue
storageClass.reclaimPolicyConfigure the retention of the dynamically created Persistent VolumeDelete
storageClass.provisionerStorage Class provisioner""
storageClass.annotationsAdditional storage class annotations{}
storageClass.mountOptionsMount options used by Persistent Volumes{}
storageClass.parametersStorage Class parameters{}

Auto update chart's image

NameDescriptionValue
autoupdate.enabledEnable auto update Helm chart's imagetrue
autoupdate.schedulerSchedule time to run cron job to update image"0 * * * *"

Specify each parameter using --set key=value[,key=value] argument to helm install. For example:

helm install \
--set persistence.storageClass=appsmith-pv \
  stable-appsmith/appsmith --generate-name

The above command deploys Appsmith application and configure application to use storage class name appsmith-pv

Alternatively, a YAML file that specifies the values for the parameters can be provided while installing the chart. For example:

helm install -f values.yaml stable-appsmith/appsmith --generate-name

Tip: You can use the default values.yaml

Appsmith configuration

To change Appsmith configurations, you can use configuration UI in application or update value in values.yaml(The available configurations is listed below).

NameValue
applicationConfig.APPSMITH_OAUTH2_GOOGLE_CLIENT_ID""
applicationConfig.APPSMITH_OAUTH2_GOOGLE_CLIENT_SECRET""
applicationConfig.APPSMITH_OAUTH2_GITHUB_CLIENT_ID""
applicationConfig.APPSMITH_OAUTH2_GITHUB_CLIENT_SECRET""
applicationConfig.APPSMITH_OAUTH2_OIDC_CLIENT_ID""
applicationConfig.APPSMITH_OAUTH2_OIDC_CLIENT_SECRET""
applicationConfig.APPSMITH_CLIENT_LOG_LEVEL""
applicationConfig.APPSMITH_MAIL_ENABLED""
applicationConfig.APPSMITH_MAIL_HOST""
applicationConfig.APPSMITH_MAIL_PORT""
applicationConfig.APPSMITH_MAIL_USERNAME""
applicationConfig.APPSMITH_MAIL_PASSWORD""
applicationConfig.APPSMITH_MAIL_FROM""
applicationConfig.APPSMITH_REPLY_TO""
applicationConfig.APPSMITH_MAIL_SMTP_AUTH""
applicationConfig.APPSMITH_MAIL_SMTP_TLS_ENABLED""
applicationConfig.APPSMITH_DISABLE_TELEMETRY""
applicationConfig.APPSMITH_RECAPTCHA_SITE_KEY""
applicationConfig.APPSMITH_RECAPTCHA_SECRET_KEY""
applicationConfig.APPSMITH_RECAPTCHA_ENABLED""
applicationConfig.APPSMITH_MONGODB_URI""
applicationConfig.APPSMITH_REDIS_URL""
applicationConfig.APPSMITH_ENCRYPTION_PASSWORD""
applicationConfig.APPSMITH_ENCRYPTION_SALT""
applicationConfig.APPSMITH_CUSTOM_DOMAIN""
applicationConfig.APPSMITH_FORM_LOGIN_DISABLED""
applicationConfig.APPSMITH_SIGNUP_DISABLED""

For example, to change the encryption salt configuration, you can run the following command:

helm install \
--set applicationConfig.APPSMITH_ENCRYPTION_SALT=123 \
  stable-appsmith/appsmith --generate-name

Expose Appsmith

  • If you wish to publish your Appsmith to the world through the Internet, you will need to setup the Ingress controller firstly. Please refer to the section Kubernetes NGINX Ingress Controller in the Prerequisites
  • In case of you have not install the Helm chart yet, you can run the below command to install it with exposing Appsmith
helm install stable-appsmith/appsmith --generate-name \
  --set ingress.enabled=true \
  --set ingress.annotations."kubernetes\.io/ingress\.class"=nginx \
  --set service.type=ClusterIP
  • If you have installed Appsmith Helm chart, please run the helm upgrade command to upgrade the existing installation
helm upgrade stable-appsmith/appsmith appsmith \
  --set ingress.enabled=true \
  --set ingress.annotations."kubernetes\.io/ingress\.class"=nginx \
  --set service.type=ClusterIP

# Or this command if you are using values.yaml file
helm upgrade --values values.yaml stable-appsmith/appsmith appsmith

Troubleshooting

If at any time you encounter an error during the installation process, reach out to [email protected] or join our Discord Server

If you know the error and would like to reinstall Appsmith, simply delete the installation folder and the templates folder and execute the script again

Testing

Review tests/README.md for details on how the chart is tested.