Deploying Ephemeral with Helm
A Tonic Ephemeral Helm chart is located at oci://quay.io/tonicai/ephemeral.
During the onboarding process, Tonic.ai provides you with the access credentials to our Quay repository, which includes both the Helm chart and the application images.
Obtaining and configuring the Helm chart
Before you pull the Helm chart from the repository, you must authenticate Helm to Quay:
helm registry login quay.io
After you authenticate, to get the values file for the Helm chart, use:
helm show values oci://quay.io/tonicai/ephemeral --version 1.023.0
The file includes documentation about the configuration options and values.
The chart version corresponds to the version of Ephemeral. For example, Ephemeral version 023 has a chart version of 1.023.0.
Installing Ephemeral
To install Ephemeral:
helm install -n <your-namespace> ephemeral oci://quay.io/tonicai/ephemeral --version 1.<ephemeral-version>.0 -f values.yaml
Upgrading Ephemeral
To upgrade to a newer version of Ephemeral:
helm upgrade -n <your-namespace> ephemeral oci://quay.io/tonicai/ephemeral --version 1.<ephemeral-version>.0 -f values.yaml
Last updated