mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 12:31:07 +01:00
deployment: bump VM to v1.105.0
Signed-off-by: f41gh7 <nik@victoriametrics.com>
This commit is contained in:
parent
05f6ea621d
commit
50487823ab
@ -4,7 +4,7 @@ services:
|
|||||||
# And forward them to --remoteWrite.url
|
# And forward them to --remoteWrite.url
|
||||||
vmagent:
|
vmagent:
|
||||||
container_name: vmagent
|
container_name: vmagent
|
||||||
image: victoriametrics/vmagent:v1.104.0
|
image: victoriametrics/vmagent:v1.105.0
|
||||||
depends_on:
|
depends_on:
|
||||||
- "vminsert"
|
- "vminsert"
|
||||||
ports:
|
ports:
|
||||||
@ -13,8 +13,8 @@ services:
|
|||||||
- vmagentdata:/vmagentdata
|
- vmagentdata:/vmagentdata
|
||||||
- ./prometheus-cluster.yml:/etc/prometheus/prometheus.yml
|
- ./prometheus-cluster.yml:/etc/prometheus/prometheus.yml
|
||||||
command:
|
command:
|
||||||
- '--promscrape.config=/etc/prometheus/prometheus.yml'
|
- "--promscrape.config=/etc/prometheus/prometheus.yml"
|
||||||
- '--remoteWrite.url=http://vminsert:8480/insert/0/prometheus/'
|
- "--remoteWrite.url=http://vminsert:8480/insert/0/prometheus/"
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
# Grafana instance configured with VictoriaMetrics as datasource
|
# Grafana instance configured with VictoriaMetrics as datasource
|
||||||
@ -39,7 +39,7 @@ services:
|
|||||||
# where N is number of vmstorages (2 in this case).
|
# where N is number of vmstorages (2 in this case).
|
||||||
vmstorage-1:
|
vmstorage-1:
|
||||||
container_name: vmstorage-1
|
container_name: vmstorage-1
|
||||||
image: victoriametrics/vmstorage:v1.104.0-cluster
|
image: victoriametrics/vmstorage:v1.105.0-cluster
|
||||||
ports:
|
ports:
|
||||||
- 8482
|
- 8482
|
||||||
- 8400
|
- 8400
|
||||||
@ -47,11 +47,11 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- strgdata-1:/storage
|
- strgdata-1:/storage
|
||||||
command:
|
command:
|
||||||
- '--storageDataPath=/storage'
|
- "--storageDataPath=/storage"
|
||||||
restart: always
|
restart: always
|
||||||
vmstorage-2:
|
vmstorage-2:
|
||||||
container_name: vmstorage-2
|
container_name: vmstorage-2
|
||||||
image: victoriametrics/vmstorage:v1.104.0-cluster
|
image: victoriametrics/vmstorage:v1.105.0-cluster
|
||||||
ports:
|
ports:
|
||||||
- 8482
|
- 8482
|
||||||
- 8400
|
- 8400
|
||||||
@ -59,20 +59,20 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- strgdata-2:/storage
|
- strgdata-2:/storage
|
||||||
command:
|
command:
|
||||||
- '--storageDataPath=/storage'
|
- "--storageDataPath=/storage"
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
# vminsert is ingestion frontend. It receives metrics pushed by vmagent,
|
# vminsert is ingestion frontend. It receives metrics pushed by vmagent,
|
||||||
# pre-process them and distributes across configured vmstorage shards.
|
# pre-process them and distributes across configured vmstorage shards.
|
||||||
vminsert:
|
vminsert:
|
||||||
container_name: vminsert
|
container_name: vminsert
|
||||||
image: victoriametrics/vminsert:v1.104.0-cluster
|
image: victoriametrics/vminsert:v1.105.0-cluster
|
||||||
depends_on:
|
depends_on:
|
||||||
- "vmstorage-1"
|
- "vmstorage-1"
|
||||||
- "vmstorage-2"
|
- "vmstorage-2"
|
||||||
command:
|
command:
|
||||||
- '--storageNode=vmstorage-1:8400'
|
- "--storageNode=vmstorage-1:8400"
|
||||||
- '--storageNode=vmstorage-2:8400'
|
- "--storageNode=vmstorage-2:8400"
|
||||||
ports:
|
ports:
|
||||||
- 8480:8480
|
- 8480:8480
|
||||||
restart: always
|
restart: always
|
||||||
@ -81,27 +81,27 @@ services:
|
|||||||
# vmselect collects results from configured `--storageNode` shards.
|
# vmselect collects results from configured `--storageNode` shards.
|
||||||
vmselect-1:
|
vmselect-1:
|
||||||
container_name: vmselect-1
|
container_name: vmselect-1
|
||||||
image: victoriametrics/vmselect:v1.104.0-cluster
|
image: victoriametrics/vmselect:v1.105.0-cluster
|
||||||
depends_on:
|
depends_on:
|
||||||
- "vmstorage-1"
|
- "vmstorage-1"
|
||||||
- "vmstorage-2"
|
- "vmstorage-2"
|
||||||
command:
|
command:
|
||||||
- '--storageNode=vmstorage-1:8401'
|
- "--storageNode=vmstorage-1:8401"
|
||||||
- '--storageNode=vmstorage-2:8401'
|
- "--storageNode=vmstorage-2:8401"
|
||||||
- '--vmalert.proxyURL=http://vmalert:8880'
|
- "--vmalert.proxyURL=http://vmalert:8880"
|
||||||
ports:
|
ports:
|
||||||
- 8481
|
- 8481
|
||||||
restart: always
|
restart: always
|
||||||
vmselect-2:
|
vmselect-2:
|
||||||
container_name: vmselect-2
|
container_name: vmselect-2
|
||||||
image: victoriametrics/vmselect:v1.104.0-cluster
|
image: victoriametrics/vmselect:v1.105.0-cluster
|
||||||
depends_on:
|
depends_on:
|
||||||
- "vmstorage-1"
|
- "vmstorage-1"
|
||||||
- "vmstorage-2"
|
- "vmstorage-2"
|
||||||
command:
|
command:
|
||||||
- '--storageNode=vmstorage-1:8401'
|
- "--storageNode=vmstorage-1:8401"
|
||||||
- '--storageNode=vmstorage-2:8401'
|
- "--storageNode=vmstorage-2:8401"
|
||||||
- '--vmalert.proxyURL=http://vmalert:8880'
|
- "--vmalert.proxyURL=http://vmalert:8880"
|
||||||
ports:
|
ports:
|
||||||
- 8481
|
- 8481
|
||||||
restart: always
|
restart: always
|
||||||
@ -112,14 +112,14 @@ services:
|
|||||||
# It can be used as an authentication proxy.
|
# It can be used as an authentication proxy.
|
||||||
vmauth:
|
vmauth:
|
||||||
container_name: vmauth
|
container_name: vmauth
|
||||||
image: victoriametrics/vmauth:v1.104.0
|
image: victoriametrics/vmauth:v1.105.0
|
||||||
depends_on:
|
depends_on:
|
||||||
- "vmselect-1"
|
- "vmselect-1"
|
||||||
- "vmselect-2"
|
- "vmselect-2"
|
||||||
volumes:
|
volumes:
|
||||||
- ./auth-cluster.yml:/etc/auth.yml
|
- ./auth-cluster.yml:/etc/auth.yml
|
||||||
command:
|
command:
|
||||||
- '--auth.config=/etc/auth.yml'
|
- "--auth.config=/etc/auth.yml"
|
||||||
ports:
|
ports:
|
||||||
- 8427:8427
|
- 8427:8427
|
||||||
restart: always
|
restart: always
|
||||||
@ -127,7 +127,7 @@ services:
|
|||||||
# vmalert executes alerting and recording rules
|
# vmalert executes alerting and recording rules
|
||||||
vmalert:
|
vmalert:
|
||||||
container_name: vmalert
|
container_name: vmalert
|
||||||
image: victoriametrics/vmalert:v1.104.0
|
image: victoriametrics/vmalert:v1.105.0
|
||||||
depends_on:
|
depends_on:
|
||||||
- "vmauth"
|
- "vmauth"
|
||||||
ports:
|
ports:
|
||||||
@ -138,13 +138,13 @@ services:
|
|||||||
- ./alerts-vmagent.yml:/etc/alerts/alerts-vmagent.yml
|
- ./alerts-vmagent.yml:/etc/alerts/alerts-vmagent.yml
|
||||||
- ./alerts-vmalert.yml:/etc/alerts/alerts-vmalert.yml
|
- ./alerts-vmalert.yml:/etc/alerts/alerts-vmalert.yml
|
||||||
command:
|
command:
|
||||||
- '--datasource.url=http://vmauth:8427/select/0/prometheus'
|
- "--datasource.url=http://vmauth:8427/select/0/prometheus"
|
||||||
- '--remoteRead.url=http://vmauth:8427/select/0/prometheus'
|
- "--remoteRead.url=http://vmauth:8427/select/0/prometheus"
|
||||||
- '--remoteWrite.url=http://vminsert:8480/insert/0/prometheus'
|
- "--remoteWrite.url=http://vminsert:8480/insert/0/prometheus"
|
||||||
- '--notifier.url=http://alertmanager:9093/'
|
- "--notifier.url=http://alertmanager:9093/"
|
||||||
- '--rule=/etc/alerts/*.yml'
|
- "--rule=/etc/alerts/*.yml"
|
||||||
# display source of alerts in grafana
|
# display source of alerts in grafana
|
||||||
- '-external.url=http://127.0.0.1:3000' #grafana outside container
|
- "-external.url=http://127.0.0.1:3000" #grafana outside container
|
||||||
- '--external.alert.source=explore?orgId=1&left={"datasource":"VictoriaMetrics","queries":[{"expr":{{.Expr|jsonEscape|queryEscape}},"refId":"A"}],"range":{"from":"{{ .ActiveAt.UnixMilli }}","to":"now"}}'
|
- '--external.alert.source=explore?orgId=1&left={"datasource":"VictoriaMetrics","queries":[{"expr":{{.Expr|jsonEscape|queryEscape}},"refId":"A"}],"range":{"from":"{{ .ActiveAt.UnixMilli }}","to":"now"}}'
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
@ -156,7 +156,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ./alertmanager.yml:/config/alertmanager.yml
|
- ./alertmanager.yml:/config/alertmanager.yml
|
||||||
command:
|
command:
|
||||||
- '--config.file=/config/alertmanager.yml'
|
- "--config.file=/config/alertmanager.yml"
|
||||||
ports:
|
ports:
|
||||||
- 9093:9093
|
- 9093:9093
|
||||||
restart: always
|
restart: always
|
||||||
|
@ -55,7 +55,7 @@ services:
|
|||||||
# scraping, storing metrics and serve read requests.
|
# scraping, storing metrics and serve read requests.
|
||||||
victoriametrics:
|
victoriametrics:
|
||||||
container_name: victoriametrics
|
container_name: victoriametrics
|
||||||
image: victoriametrics/victoria-metrics:v1.104.0
|
image: victoriametrics/victoria-metrics:v1.105.0
|
||||||
ports:
|
ports:
|
||||||
- 8428:8428
|
- 8428:8428
|
||||||
volumes:
|
volumes:
|
||||||
@ -72,7 +72,7 @@ services:
|
|||||||
# vmalert executes alerting and recording rules
|
# vmalert executes alerting and recording rules
|
||||||
vmalert:
|
vmalert:
|
||||||
container_name: vmalert
|
container_name: vmalert
|
||||||
image: victoriametrics/vmalert:v1.104.0
|
image: victoriametrics/vmalert:v1.105.0
|
||||||
depends_on:
|
depends_on:
|
||||||
- "victoriametrics"
|
- "victoriametrics"
|
||||||
- "alertmanager"
|
- "alertmanager"
|
||||||
|
@ -4,7 +4,7 @@ services:
|
|||||||
# And forward them to --remoteWrite.url
|
# And forward them to --remoteWrite.url
|
||||||
vmagent:
|
vmagent:
|
||||||
container_name: vmagent
|
container_name: vmagent
|
||||||
image: victoriametrics/vmagent:v1.104.0
|
image: victoriametrics/vmagent:v1.105.0
|
||||||
depends_on:
|
depends_on:
|
||||||
- "victoriametrics"
|
- "victoriametrics"
|
||||||
ports:
|
ports:
|
||||||
@ -22,7 +22,7 @@ services:
|
|||||||
# storing metrics and serve read requests.
|
# storing metrics and serve read requests.
|
||||||
victoriametrics:
|
victoriametrics:
|
||||||
container_name: victoriametrics
|
container_name: victoriametrics
|
||||||
image: victoriametrics/victoria-metrics:v1.104.0
|
image: victoriametrics/victoria-metrics:v1.105.0
|
||||||
ports:
|
ports:
|
||||||
- 8428:8428
|
- 8428:8428
|
||||||
- 8089:8089
|
- 8089:8089
|
||||||
@ -65,7 +65,7 @@ services:
|
|||||||
# vmalert executes alerting and recording rules
|
# vmalert executes alerting and recording rules
|
||||||
vmalert:
|
vmalert:
|
||||||
container_name: vmalert
|
container_name: vmalert
|
||||||
image: victoriametrics/vmalert:v1.104.0
|
image: victoriametrics/vmalert:v1.105.0
|
||||||
depends_on:
|
depends_on:
|
||||||
- "victoriametrics"
|
- "victoriametrics"
|
||||||
- "alertmanager"
|
- "alertmanager"
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
vmagent:
|
vmagent:
|
||||||
container_name: vmagent
|
container_name: vmagent
|
||||||
image: victoriametrics/vmagent:v1.104.0
|
image: victoriametrics/vmagent:v1.105.0
|
||||||
depends_on:
|
depends_on:
|
||||||
- "victoriametrics"
|
- "victoriametrics"
|
||||||
ports:
|
ports:
|
||||||
@ -18,7 +18,7 @@ services:
|
|||||||
|
|
||||||
victoriametrics:
|
victoriametrics:
|
||||||
container_name: victoriametrics
|
container_name: victoriametrics
|
||||||
image: victoriametrics/victoria-metrics:v1.104.0
|
image: victoriametrics/victoria-metrics:v1.105.0
|
||||||
ports:
|
ports:
|
||||||
- 8428:8428
|
- 8428:8428
|
||||||
volumes:
|
volumes:
|
||||||
@ -48,10 +48,9 @@ services:
|
|||||||
- vm_net
|
- vm_net
|
||||||
restart: always
|
restart: always
|
||||||
|
|
||||||
|
|
||||||
vmalert:
|
vmalert:
|
||||||
container_name: vmalert
|
container_name: vmalert
|
||||||
image: victoriametrics/vmalert:v1.104.0
|
image: victoriametrics/vmalert:v1.105.0
|
||||||
depends_on:
|
depends_on:
|
||||||
- "victoriametrics"
|
- "victoriametrics"
|
||||||
ports:
|
ports:
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
version: '3'
|
version: "3"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
# Run `make package-victoria-logs` to build victoria-logs image
|
# Run `make package-victoria-logs` to build victoria-logs image
|
||||||
@ -7,7 +7,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- vlogs:/vlogs
|
- vlogs:/vlogs
|
||||||
ports:
|
ports:
|
||||||
- '9428:9428'
|
- "9428:9428"
|
||||||
command:
|
command:
|
||||||
- -storageDataPath=/vlogs
|
- -storageDataPath=/vlogs
|
||||||
|
|
||||||
@ -30,10 +30,10 @@ services:
|
|||||||
- /sys:/host/sys:ro
|
- /sys:/host/sys:ro
|
||||||
- /:/rootfs:ro
|
- /:/rootfs:ro
|
||||||
command:
|
command:
|
||||||
- '--path.procfs=/host/proc'
|
- "--path.procfs=/host/proc"
|
||||||
- '--path.rootfs=/rootfs'
|
- "--path.rootfs=/rootfs"
|
||||||
- '--path.sysfs=/host/sys'
|
- "--path.sysfs=/host/sys"
|
||||||
- '--collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)'
|
- "--collector.filesystem.mount-points-exclude=^/(sys|proc|dev|host|etc)($$|/)"
|
||||||
|
|
||||||
du-exporter:
|
du-exporter:
|
||||||
image: ghcr.io/dundee/disk_usage_exporter/disk_usage_exporter-c4084307c537335c2ddb6f4b9b527422:latest
|
image: ghcr.io/dundee/disk_usage_exporter/disk_usage_exporter-c4084307c537335c2ddb6f4b9b527422:latest
|
||||||
@ -43,12 +43,12 @@ services:
|
|||||||
- /var/lib/docker/volumes:/var/lib/docker/volumes:ro
|
- /var/lib/docker/volumes:/var/lib/docker/volumes:ro
|
||||||
- ./du/config.yml:/config.yml:ro
|
- ./du/config.yml:/config.yml:ro
|
||||||
command:
|
command:
|
||||||
- '--config=/config.yml'
|
- "--config=/config.yml"
|
||||||
|
|
||||||
vmsingle:
|
vmsingle:
|
||||||
image: victoriametrics/victoria-metrics:v1.104.0
|
image: victoriametrics/victoria-metrics:v1.105.0
|
||||||
ports:
|
ports:
|
||||||
- '8428:8428'
|
- "8428:8428"
|
||||||
command:
|
command:
|
||||||
- -storageDataPath=/vmsingle
|
- -storageDataPath=/vmsingle
|
||||||
- -promscrape.config=/promscrape.yml
|
- -promscrape.config=/promscrape.yml
|
||||||
|
Loading…
Reference in New Issue
Block a user