Internal site. Jolli authentication required to view.
Skip to Content

Last Updated: 5/8/2026


Brief instructions explaining how to install and run Feldera Enterprise in a Kubernetes cluster.

  1. License: contact sales  to obtain a Feldera account ID and license key.

  2. Version: Visit https://gallery.ecr.aws/feldera/feldera-chart , click on the “Image tags” tab for a list of versions, and choose a version. The most recent version should be at the top of the list and is normally the right choice.

  3. Installation using Helm:

    ACCOUNT_ID="00000000-0000-0000-0000-000000000000" # Set to your own LICENSE_KEY="00000000-0000-0000-0000-000000000000" # Set to your own VERSION=0.88.0 # Replace with previously chosen version helm upgrade --install feldera \ oci://public.ecr.aws/feldera/feldera-chart --version "${VERSION}" \ --namespace feldera --create-namespace \ --set felderaVersion="${VERSION}" \ --set felderaAccountId="${ACCOUNT_ID}" \ --set felderaLicenseKey="${LICENSE_KEY}" \ --set felderaDatabaseSecretRef="feldera-db-insecure-secret"

    Please view the Helm guide for further details.

  4. Status check: run kubectl get pods -n feldera which should output:

    NAME READY STATUS RESTARTS AGE feldera-db-0 1/1 Running 0 3m9s feldera-kubernetes-runner-6447b8f56d-86j4w 1/1 Running 0 3m9s feldera-compiler-server-0 1/1 Running 0 3m9s feldera-api-server-c546499bc-wdpkm 1/1 Running 0 3m9s
  5. Port forward API server:

    kubectl port-forward -n feldera svc/feldera-api-server 8080:8080

    … after which the Web Console and API are accessible at: http://127.0.0.1:8080 

Additional resources