Skip to content

Commit

Permalink
update deps
Browse files Browse the repository at this point in the history
bump to prom/memcached-exporter:v0.15.0

bump to minio/minio:RELEASE.2024-11-07T00-52-20Z

bump to grafana/pyroscope:1.10.0

bump to grafana-11.3.1

bump to alloy-1.5.0
  • Loading branch information
qclaogui committed Nov 28, 2024
1 parent e126e4f commit 33f8903
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ALLOY_CONFIG_FILES_IN_DOCKER = $(subst ./, /data/, $(ALLOY_CONFIG_FILES))
alloy-fmt: ## Uses Grafana Alloy to fmt the config
@for c in $(ALLOY_CONFIG_FILES_IN_DOCKER); do \
echo "$$c"; \
docker run --rm --volume "$(shell pwd):/data" -u $(shell id -u) grafana/alloy:v1.4.2 fmt -w $$c ; \
docker run --rm --volume "$(shell pwd):/data" -u $(shell id -u) grafana/alloy:v1.5.0 fmt -w $$c ; \
done

.PHONY: go-fmt
Expand Down
2 changes: 1 addition & 1 deletion compose.override.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ services:
metrics.grafana.com/scrape: true
profiles.grafana.com/service_name: grafana
profiles.grafana.com/port: 6060
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.2.2}
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.3.1}
volumes:
- ./monitoring-mixins/loki-mixin/deploy/dashboards_out:/var/lib/grafana/dashboards/loki-mixin
- ./monitoring-mixins/tempo-mixin/deploy/dashboards_out:/var/lib/grafana/dashboards/tempo-mixin
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/common/compose-include/alloy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
# https://github.com/grafana/alloy
alloy:
depends_on: { gateway: { condition: service_healthy } }
image: ${ALLOY_IMAGE:-docker.io/grafana/alloy:v1.4.2}
image: ${ALLOY_IMAGE:-docker.io/grafana/alloy:v1.5.0}
configs:
- source: alloy_config_file
target: /etc/alloy/config.alloy
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/common/compose-include/grafana.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:
# https://github.com/grafana/grafana
labels:
metrics.grafana.com/scrape: false
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.2.2}
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.3.1}
command:
- --config=/etc/grafana-config/grafana.ini
volumes:
Expand Down
4 changes: 2 additions & 2 deletions docker-compose/common/compose-include/memcached.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
memcached:
labels:
metrics.grafana.com/scrape: false
image: ${MEMCACHED_IMAGE:-docker.io/memcached:1.6.29-alpine}
image: ${MEMCACHED_IMAGE:-docker.io/memcached:1.6.32-alpine}

# Use Alloy prometheus.exporter.memcached component instead of memcached-exporter
# https://github.com/qclaogui/codelab-monitoring/pull/98
Expand All @@ -18,7 +18,7 @@ services:
# # - metrics.grafana.com/job=memcached
# - metrics.grafana.com/port=9150
# - metrics.grafana.com/interval=15s
# image: ${MEMCACHED_EXPORTER_IMAGE:-prom/memcached-exporter:v0.14.3}
# image: ${MEMCACHED_EXPORTER_IMAGE:-prom/memcached-exporter:v0.15.0}
# command:
# - --memcached.address=memcached:11211
# - --web.listen-address=0.0.0.0:9150
2 changes: 1 addition & 1 deletion docker-compose/common/compose-include/minio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ services:
metrics.grafana.com/port: 9000
metrics.grafana.com/interval: 15s
metrics.grafana.com/timeout: 10s
image: ${MINIO_IMAGE:-docker.io/minio/minio:RELEASE.2024-10-02T17-50-41Z}
image: ${MINIO_IMAGE:-docker.io/minio/minio:RELEASE.2024-11-07T00-52-20Z}
entrypoint:
- sh
- -euc
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/common/compose-include/pyroscope.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
profiles.grafana.com/memory.scrape: true
profiles.grafana.com/goroutine.scrape: true
depends_on: { minio: { condition: service_healthy } }
image: ${PYROSCOPE_IMAGE:-docker.io/grafana/pyroscope:1.8.0}
image: ${PYROSCOPE_IMAGE:-docker.io/grafana/pyroscope:1.10.0}
configs:
- source: pyroscope_config_file
target: /etc/pyroscope/config.yaml
Expand Down
12 changes: 6 additions & 6 deletions docker-compose/common/config/.env
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
ALLOY_IMAGE=grafana/alloy:v1.4.2
ALLOY_IMAGE=grafana/alloy:v1.5.0
LOKI_IMAGE=grafana/loki:3.3.0
GRAFANA_IMAGE=grafana/grafana:11.2.2
GRAFANA_IMAGE=grafana/grafana:11.3.1
TEMPO_IMAGE=grafana/tempo:2.6.0
MIMIR_IMAGE=grafana/mimir-alpine:2.14.0
MIMIRTOOL_IMAGE=grafana/mimirtool:2.14.0
PYROSCOPE_IMAGE=grafana/pyroscope:1.8.0
PYROSCOPE_IMAGE=grafana/pyroscope:1.10.0
NGINX_IMAGE=nginxinc/nginx-unprivileged:1.27-alpine
MINIO_IMAGE=minio/minio:RELEASE.2024-10-02T17-50-41Z
MEMCACHED_IMAGE=memcached:1.6.29-alpine
MEMCACHED_EXPORTER_IMAGE=prom/memcached-exporter:v0.14.3
MINIO_IMAGE=minio/minio:RELEASE.2024-11-07T00-52-20Z
MEMCACHED_IMAGE=memcached:1.6.32-alpine
MEMCACHED_EXPORTER_IMAGE=prom/memcached-exporter:v0.15.0
INBUCKET_IMAGE=inbucket/inbucket:3.0.4
2 changes: 1 addition & 1 deletion docker-compose/microservices-mode/profiles/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ services:
<<: *profiles-labels
profiles.grafana.com/service_name: pyroscope-distributor
depends_on: { ingester: { condition: service_healthy } }
image: &pyroscopeImage ${PYROSCOPE_IMAGE:-docker.io/grafana/pyroscope:1.8.0}
image: &pyroscopeImage ${PYROSCOPE_IMAGE:-docker.io/grafana/pyroscope:1.10.0}
configs:
- source: pyroscope_config_file
target: /etc/pyroscope/config.yaml
Expand Down
2 changes: 1 addition & 1 deletion docker-compose/monolithic-mode/all-in-one/compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ services:
metrics.grafana.com/scrape: false
profiles.grafana.com/service_name: pyroscope
depends_on: { minio: { condition: service_healthy } }
image: ${PYROSCOPE_IMAGE:-docker.io/grafana/pyroscope:1.8.0}
image: ${PYROSCOPE_IMAGE:-docker.io/grafana/pyroscope:1.10.0}
configs:
- source: pyroscope_config_file
target: /etc/pyroscope/config.yaml
Expand Down
2 changes: 1 addition & 1 deletion examples/grafana-explore-logs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ include:
services:
# override included service grafana environment
grafana:
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.2.2}
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.3.1}
volumes:
- ./grafana/provisioning/plugins/grafana-lokiexplore-app.yaml:/etc/grafana/provisioning/plugins/grafana-lokiexplore-app.yaml
environment:
Expand Down
2 changes: 1 addition & 1 deletion examples/grafana-explore-logs/compose.override.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
services:
# override included service grafana environment
grafana:
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.2.2}
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.3.1}
volumes:
- ./grafana/provisioning/plugins/grafana-lokiexplore-app.yaml:/etc/grafana/provisioning/plugins/grafana-lokiexplore-app.yaml
environment:
Expand Down
2 changes: 1 addition & 1 deletion examples/grafana-explore-profiles/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ include:
services:
# override included service grafana environment
grafana:
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.2.2}
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.3.1}
volumes:
- ./grafana/provisioning/plugins/grafana-pyroscope-app.yaml:/etc/grafana/provisioning/plugins/grafana-pyroscope-app.yaml
environment:
Expand Down
2 changes: 1 addition & 1 deletion examples/grafana-explore-profiles/compose.override.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ services:
profiles.grafana.com/goroutine.scrape: true
profiles.grafana.com/service_name: grafana
profiles.grafana.com/port: 6060
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.2.2}
image: ${GRAFANA_IMAGE:-docker.io/grafana/grafana:11.3.1}
volumes:
- ./grafana/provisioning/plugins/grafana-pyroscope-app.yaml:/etc/grafana/provisioning/plugins/grafana-pyroscope-app.yaml
environment:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ spec:
features:
bucketDNS: false
enableSFTP: false
image: quay.io/minio/minio:RELEASE.2024-10-02T17-50-41Z
image: quay.io/minio/minio:RELEASE.2024-11-07T00-52-20Z
imagePullPolicy: IfNotPresent
mountPath: /export
podManagementPolicy: Parallel
Expand Down

0 comments on commit 33f8903

Please sign in to comment.