Novelty Helm Chart Quickstart¶
Full Helm chart available at:
https://github.com/thatdot/helm-charts/tree/main/charts/novelty
Prerequisites¶
Kubernetes¶
A Kubernetes cluster is required to install Novelty with Helm.
Helm¶
Helm must be installed to use the charts. Please refer to Helm's documentation to get started.
Once Helm has been set up correctly, add the repo as follows:
helm repo add thatdot https://helm.thatdot.com
If you had already added this repo earlier, run helm repo update to retrieve the latest versions of the packages. You can then run helm search repo thatdot to see the charts.
License¶
Novelty is proprietary software and a license is required to use it.
To request an evaluation, schedule a demo, or purchase a license, please visit https://www.thatdot.com/getting-started-with-thatdot/ or email sales@thatdot.com.
Once you receive your license key, it must be configured in the Helm values using the licenseKey field.
Installation¶
Helm Values¶
First create a file called novelty-values.yaml with required helm configuration values (see values.yaml for a reference of available configuration and defaults):
Configure your license key in the Helm values:
licenseKey: "YOUR_LICENSE_KEY"
(Optional) specify a docker image and tag. The docker registry URL can be provided by thatDot.
image:
repository: <DOCKER_REGISTRY_URL>
pullPolicy: IfNotPresent
tag: ""
Install the cluster with Helm using the command (Don’t forget to first helm repo add the thatdot Helm repo in the prerequisites section):
helm install --values=novelty-values.yaml \
my-novelty thatdot/novelty
Uninstall the cluster:
helm uninstall my-novelty