Access to FlowForge Management App via the host forge
on what ever domain is passed. e.g. if example.com
then http://forge.exmaple.com
This chart can use the Bitnami PostgreSQL Chart to provide an instance of a PostgreSQL Database to store state (forge.localPostgresql: true
).
The chart is currently pinned at the Bitanmi PostgreSQL v14 release, which only supports x86_64 deployments when using a local database
If using an external PostgreSQL Database you will need to create the database and user to pass to the helm chart using the following values:
forge.dbName
forge.dbUsername
forge.dbPassword
forge.postgres.host
forge.postgres.port
forge.postgres.ssl
forge.image
supply a fully qualified container image for the forge app (defaultforge.registry
/flowforge/forge-k8s:)forge.domain
the domain instances will be hosted onforge.entryPoint
if the admin app is hosted on a different domainforge.https
is the Forge App accessed via HTTPS (defaulttrue
)forge.registry
the container registry to find Project templates (default Docker Hub)forge.dbUsername
(defaultforge
)forge.dbPassword
(defaultZai1Wied
)forge.dbName
(defaultflowforge
)forge.localPostrgresql
Deploy a PostgreSQL v14 Database into Kubernetes cluster (defaulttrue
)forge.postgres.host
the hostname of an external PostgreSQL database (default not set)forge.postgres.port
the port of an external PostgreSQL database (default5432
)forge.postgres.ssl
sets the connection to the database to use SSL/TLS (defaultfalse
)forge.cloudProvider
currently only acceptsaws
but will include more as needed (default not set)forge.projectSelector
a collection of labels and values to filter nodes that Project Pods will run on (defaultrole: projects
)forge.managementSelector
a collection of labels and values to filter nodes the Forge App will run on (defaultrole: management
)forge.projectNamespace
namespace Project Pods will run in (defaultflowforge
)forge.license
FlowForge EE license string (optional, default not set)forge.branding
Object holding branding inserts (default not set)forge.projectDeploymentTolerations
tolerations settings for Project instances. Default is[]
.
note: forge.projectSelector
and forge.managementSelector
defaults mean that you must have at least 2 nodes in your cluster and they need to be labeled before installing.
If forge.cloudProvider
is set to aws
then the following should be set
forge.aws.IAMRole
The ARN of the IAM Role which the forge app will run with
forge.email.from
the email address FlowForge will use to send email
To use STMP to send email
forge.email.from
email address to send mail as can include name e.g. ""FlowForge" [email protected]"forge.email.smtp.host
if not set email is disabledforge.email.smtp.port
(default587
)forge.email.smtp.tls
(defaultfalse
)forge.email.smtp.user
If no set no credentials passed (required if password set)forge.email.smtp.password
(required if user set)
To use AWS SES to send email
forge.email.ses.region
the AWS region the SES service is enabled
forge.broker.enabled
(defaultfalse
)forge.broker.url
URL to access the broker from inside the cluster (defaultmqtt://flowforge-broker.[namespace]:1883
)forge.broker.public_url
URL to access the broker from outside the cluster (defaultws://mqtt.[forge.domain]
, useswss://
ifforge.https
istrue
)
Enables FlowForge Telemetry
forge.telemetry.enabled
enables anonymized usage reporting (defaulttrue
)forge.telemetry.posthog.apikey
enables posthog logging if set (not default)forge.telemetry.posthog.apiurl
sets posthog target host (defaulthttps://app.posthog.com
)forge.telemetry.posthog.capture_pageview
(defaulttrue
)
Enables HubSpot support widget in the FlowForge app
forge.support.enabled
enables support widget (defaultfalse
)forge.support.hubspot
HubSpot tracking code
Enables FlowForge billing features using Stripe
forge.ee.billing.stripe.key
Stripe API Keyforge.ee.billing.stripe.wh_secret
Stripe Web Hook callback secretforge.ee.billing.stripe.team_price
Stripe price id for default Teamforge.ee.billing.stripe.team_product
Stripe product id for default Teamforge.ee.billing.stripe.project_price
Stripe price id for default Project Typeforge.ee.billing.stripe.project_product
Stripe product id for default Project Typeforge.ee.billing.stripe.device_price
Stripe price id for Device (optional)forge.ee.billing.stripe.device_product
Stripe product id for Device (optional)forge.ee.billing.stripe.deviceCost
Set the displayed price for a Device (optional)forge.ee.billing.stripe.new_customer_free_credit
Value in cents to be awarded as credit to new usersforge.ee.billing.stripe.teams
a map containing Stripe Product & Price ids for named Team Types
forge.fileStore.enabled
(defaultfalse
)forge.fileStore.type
Choice of backends to store fileslocalfs
ors3
(defaultlocalfs
)forge.fileStore.options
Options to pass to the backend storage driver (See file-server for details)forge.fileStore.quota
Sets the maximum number of bytes that a project can store as files (default104857600
)forge.fileStore.context.type
Choice of backends for Persistent Contextsequelize
forge.fileStore.context.options
Options to pass to Persistent Context Driver (See file-server for details)forge.fileStore.context.quota
Sets the maximum number of bytes that a project can store in Persistent Context (default1048576
)
forge.privateCA.configMapName
name of ConfigMap to store the CA Cert bundle (defaultff-ca-certs
)forge.privateCA.certs
base64 encoded CA certificate PEM bundle of trusted certificates. This needs to be generated without line breaks e.g.base64 -w 0 certs.pem
(default not set)
forge.rate_limits.enabled
(defaultfalse
)forge.rate_limits.global
(defaulttrue
)forge.rate_limits.timeWindow
Time in milliseconds to evaluate requests over (default 60000)forge.rate_limits.max
Max requests per timeWindow (default 1000)forge.rate_limits.maxAnonymous
Max anonymous requests per timeWindow (defaultforge.rate_limits.max
)
Everything under forge.rate_limits
is used as input to Fastify Rate Limit plugin, further options can be found here and can be included.
ingress.annotations
ingress annotations (default is{}
). This value is also applied to Editor instances created by FlowForge.ingress.className
ingress class name (default is"""
). This value is also applied to Editor instances created by FlowForge.
ingress.annotations
values can contain the following tokens that will be replaced as follows:
{{ instanceHost }}
replaced by the hostname of the instance{{ instanceURL }}
replaced by the URL for the instance{{ instanceProtocol }}
replaced by eitherhttp
orhttps
{{ serviceName }}
replaced by the service name of the instance
Provision default service account for Editors if editors.serviceAccount.create
is true
.
editors.serviceAccount.create
flag, indicates whether default Editors service account is going to be provisioned.editors.serviceAccount.annotations
k8s service account annotations.editors.serviceAccount.name
name of the service account for Editors.
Example for AWS:
editors:
serviceAccount:
annotations:
eks.amazonaws.com/role-arn: arn:aws:iam::${ACCOUNT_ID}:role/${ROLE_NAME}
create: true
name: editors