https://github.com/itzg/try-thanos
Contains a set of Kubernetes manifest files to try out a "single node" deployment of Thanos using MinIO as an S3 object store.
https://github.com/itzg/try-thanos
Last synced: 5 months ago
JSON representation
Contains a set of Kubernetes manifest files to try out a "single node" deployment of Thanos using MinIO as an S3 object store.
- Host: GitHub
- URL: https://github.com/itzg/try-thanos
- Owner: itzg
- Created: 2020-07-01T16:57:18.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-08T02:57:05.000Z (almost 6 years ago)
- Last Synced: 2025-12-19T13:20:28.812Z (7 months ago)
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repository contains a set of Kubernetes manifest files to try out a "single node" deployment of [Thanos](https://thanos.io/) using [MinIO](https://min.io/) as an S3 object store.
## Quick start
Create Minio secret, changing at least the `secret-key`, such as generated with `openssl rand -hex 10`
```shell script
kubectl create secret generic minio \
--from-literal=access-key=minioadmin \
--from-literal=secret-key=minioadmin
```
> If you're in a hurry and using a local cluster such as Docker Desktop, just use that secret as shown.
Copy `configs/thanos-objstore-config.yaml` to `/tmp` and modify `secret_key` and `access_key` according to the secret, above.
Create a secret from that modified file:
```shell script
kubectl create secret generic thanos-objstore-config \
--from-file=thanos-objstore-config.yaml=/tmp/thanos-objstore-config.yaml
```
> If you were in a hurry, just use `--from-file=thanos-objstore-config.yaml=configs/thanos-objstore-config.yaml`
> Some of the service manifests use `type: LoadBalancer`. On Docker Desktop those will bind to the respective desktop port. With other cluster types you may want to change those accordingly, such as `type: NodePort`.
Start up just Minio using:
```shell script
kubectl apply -f minio-deployment.yaml -f minio-ext-service.yaml
```
Connect to Minio using the access key and secret, above, and create a bucket named "thanos". If deploying on Docker Desktop, Minio is available at .
Now apply the remaining manifests in this directory using the following.
```shell script
kubectl apply -f .
```
Some URLs of interest are as follows, assuming a Docker Desktop deployment:
- Grafana @
- Minio @
- Thanos remote-write endpoint compatible with Prometheus @