Skip to content

Instantly share code, notes, and snippets.

@mcascone
Created November 1, 2023 05:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcascone/b4380bb2b01fdffc0871097bd0deb448 to your computer and use it in GitHub Desktop.
Save mcascone/b4380bb2b01fdffc0871097bd0deb448 to your computer and use it in GitHub Desktop.
temporal, prom, graf

Install Temporal & Monitoring

Using: https://github.com/VantageDiscovery/helm-charts/tree/main/charts/temporalio

In the Temporal chart's directory:

  1. Update helm dependencies

    helm dep up
  2. Create the temporal namespace (you can call it whatever you want)

    k create ns temporal
  3. 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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment