Using: https://github.com/VantageDiscovery/helm-charts/tree/main/charts/temporalio
In the Temporal chart's directory:
-
Update helm dependencies
helm dep up
-
Create the
temporal
namespace (you can call it whatever you want)k create ns temporal
-
Install the chart
This installs Temporal, CassandraDB, Prometheus, and Grafana.
# helm install temporaltest . --timeout 15m -n temporal helm install \ --set server.replicaCount=1 \ --set cassandra.config.cluster_size=1 \ --set prometheus.enabled=true \ --set grafana.enabled=true \ --set elasticsearch.enabled=false \ temporaltest . --timeout 15m
temporaltest
is the name of the Helm release. You can call it whatever you want.