π How to Install Thanos using Helm with a Custom Values File
If you're working with monitoring and observability, Thanos is a fantastic tool that extends Prometheus by adding scalable long-term storage and providing global querying across multiple Prometheus servers.
In this guide, I'll walk you through how to install Thanos using the Bitnami Helm chart and how to configure it using a custom values file. We'll use Helm to deploy Thanos directly from the Bitnami OCI registry. Let's dive in! π οΈ
π‘ What You Will Achieve
You'll install Thanos using the following Helm command:
helm install my-release oci://registry-1.docker.io/bitnamicharts/thanos --values ./values.yaml
Step-by-Step Process
-
Set up Helm:
First, ensure Helm is installed on your machine. If you havenβt installed it yet, you can find the installation guide here. -
Create a values.yaml file:
This file allows you to customize your Thanos installation. Hereβs an example configuration:
# values.yaml
objstore:
config:
type: S3
config:
bucket: "thanos-bucket"
endpoint: "s3.amazonaws.com"
access_key: "your-access-key"
secret_key: "your-secret-key"
- Run the Helm Command:
Now, execute the following command, which will install Thanos with your custom configurations:
helm install my-release oci://registry-1.docker.io/bitnamicharts/thanos --values ./values.yaml
- Verify the Installation:
Check if everything is running smoothly:
kubectl get pods
You should see the Thanos pods up and running! π
π Screenshots (Pause Here for a Moment)
Feel free to pause your reading and take a look at some screenshots showing the step-by-step process to help guide you through the installation. π
(Add your screenshot here)
π Connect with Me
If you have any questions, feel free to reach out to me on my social platforms. Iβd be happy to help!
-
πΌ LinkedIn: Connect with me
-
π¦ Twitter: Follow me
-
π₯ YouTube: Subscribe to my channel
-
π» GitHub: Check out my projects
I hope this guide helps you get Thanos up and running quickly! π
Reference > https://bitnami.com/stack/thanos/helm
Imported from rifaterdemsahin.com Β· 2025