mirror of
https://github.com/bitnami/containers.git
synced 2026-03-16 14:57:44 +08:00
0.20.1-scratch-r0 release
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
version: '2'
|
||||
services:
|
||||
thanos:
|
||||
image: docker.io/bitnami/thanos:0-scratch
|
||||
image: docker.io/bitnami/thanos:0
|
||||
command:
|
||||
- query
|
||||
- --grpc-address=0.0.0.0:10901
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"thanos": {
|
||||
"digest": "0c174a7acbbe97aab87d7d0788cc5e10885b0448ab92ebe3351eb0feeeb9027a",
|
||||
"digest": "ff862e830cadcebcc78ce3fa4ce30114f77f0ba55173b1f023b8b206e749e0da",
|
||||
"type": "BLACKSMITH",
|
||||
"version": "0.19.0"
|
||||
"version": "0.20.1"
|
||||
}
|
||||
}
|
||||
@@ -38,7 +38,7 @@ Non-root container images add an extra layer of security and are generally recom
|
||||
Learn more about the Bitnami tagging policy and the difference between rolling tags and immutable tags [in our documentation page](https://docs.bitnami.com/tutorials/understand-rolling-tags-containers/).
|
||||
|
||||
|
||||
* [`0`, `0-scratch`, `0.19.0`, `0.19.0-scratch-r0`, `latest` (0/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-thanos/blob/0.19.0-scratch-r0/0/scratch/Dockerfile)
|
||||
* [`0`, `0-scratch`, `0.20.1`, `0.20.1-scratch-r0`, `latest` (0/scratch/Dockerfile)](https://github.com/bitnami/bitnami-docker-thanos/blob/0.20.1-scratch-r0/0/scratch/Dockerfile)
|
||||
|
||||
# Connecting to other containers
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
version: '2'
|
||||
version: '2.1'
|
||||
services:
|
||||
# Node Exporter
|
||||
node-exporter:
|
||||
@@ -39,8 +39,8 @@ services:
|
||||
- node-exporter
|
||||
- prepare-prometheus
|
||||
# Thanos Sidecar
|
||||
thanos-sidecar:
|
||||
image: docker.io/bitnami/thanos:0-scratch
|
||||
sidecar:
|
||||
image: docker.io/bitnami/thanos:0
|
||||
command:
|
||||
- sidecar
|
||||
- --tsdb.path=/data
|
||||
@@ -49,12 +49,17 @@ services:
|
||||
volumes:
|
||||
- 'tsdb_data:/data'
|
||||
depends_on:
|
||||
- prometheus
|
||||
- query
|
||||
# MinIO
|
||||
minio:
|
||||
image: docker.io/bitnami/minio:2021
|
||||
ports:
|
||||
- '9000:9000'
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 5
|
||||
volumes:
|
||||
- 'minio_data:/data'
|
||||
environment:
|
||||
@@ -80,8 +85,8 @@ services:
|
||||
volumes:
|
||||
- 'ojb_store_conf:/conf'
|
||||
# Thanos Store Gateway
|
||||
thanos-store-gateway:
|
||||
image: docker.io/bitnami/thanos:0-scratch
|
||||
store-gateway:
|
||||
image: docker.io/bitnami/thanos:0
|
||||
command:
|
||||
- store
|
||||
- --objstore.config-file=/conf/bucket.yml
|
||||
@@ -92,11 +97,10 @@ services:
|
||||
- 'ojb_store_conf:/conf'
|
||||
- 'store_data:/data'
|
||||
depends_on:
|
||||
- minio
|
||||
- prepare-object-store-conf
|
||||
- query
|
||||
# Thanos Compactor
|
||||
thanos-compactor:
|
||||
image: docker.io/bitnami/thanos:0-scratch
|
||||
compactor:
|
||||
image: docker.io/bitnami/thanos:0
|
||||
command:
|
||||
- compact
|
||||
- --objstore.config-file=/conf/bucket.yml
|
||||
@@ -105,22 +109,25 @@ services:
|
||||
volumes:
|
||||
- 'ojb_store_conf:/conf'
|
||||
depends_on:
|
||||
- minio
|
||||
- prepare-object-store-conf
|
||||
- query
|
||||
# Thanos Query
|
||||
thanos-query:
|
||||
image: docker.io/bitnami/thanos:0-scratch
|
||||
query:
|
||||
image: docker.io/bitnami/thanos:0
|
||||
command:
|
||||
- query
|
||||
- --grpc-address=0.0.0.0:10901
|
||||
- --http-address=0.0.0.0:9090
|
||||
- --store=thanos-sidecar:10901
|
||||
- --store=thanos-store-gateway:10901
|
||||
- --store=sidecar:10901
|
||||
- --store=store-gateway:10901
|
||||
ports:
|
||||
- '9090:9090'
|
||||
depends_on:
|
||||
- thanos-sidecar
|
||||
- thanos-store-gateway
|
||||
prepare-object-store-conf:
|
||||
condition: service_started
|
||||
prometheus:
|
||||
condition: service_started
|
||||
minio:
|
||||
condition: service_healthy
|
||||
volumes:
|
||||
prom_conf:
|
||||
driver: local
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
version: '2'
|
||||
services:
|
||||
thanos:
|
||||
image: docker.io/bitnami/thanos:0-scratch
|
||||
image: docker.io/bitnami/thanos:0
|
||||
command:
|
||||
- query
|
||||
- --grpc-address=0.0.0.0:10901
|
||||
|
||||
Reference in New Issue
Block a user