Run Flower using Helm¶
Note
Flower Helm charts are a Flower Enterprise feature. See Flower Enterprise for details.
This guide provides the step-by-step instructions to deploy Flower using Helm, which
simplifies the deployment and management of the Flower framework on Kubernetes. For
instance, to deploy SuperLink and SuperNode services via command line, simply run the
helm install
command like so:
# Provision and deploy SuperLink service
$ helm install flower-superlink path/to/folder/containing/chart
# Provision and deploy SuperNode service
$ helm install flower-supernode path/to/folder/containing/chart
Then to tear down the deployment, run the helm uninstall
command:
# Uninstall the `flower-superlink` release
$ helm uninstall flower-superlink
# Uninstall the `flower-supernode` release
$ helm uninstall flower-supernode