updates: traefik to v3

This commit is contained in:
Iurii Tatishchev 2024-06-29 17:28:17 -07:00
parent f9d590170d
commit a8bc344aa2
Signed by: CaZzzer
GPG Key ID: E0EBF441EA424369
4 changed files with 10 additions and 9 deletions

View File

@ -13,7 +13,7 @@ services:
- {{ helpers.traefik_labels('minio', port='9090') | indent(6) }} - {{ helpers.traefik_labels('minio', port='9090') | indent(6) }}
- traefik.http.routers.minio.service=minio - traefik.http.routers.minio.service=minio
- traefik.http.routers.minio-tls.service=minio - traefik.http.routers.minio-tls.service=minio
- traefik.http.routers.minio-s3.rule=HostRegexp(`s3.{{ domain }}`, `{subdomain:.+}.s3.{{ domain }}`) - traefik.http.routers.minio-s3.rule=Host(`s3.{{ domain }}`) || HostRegexp(`^.+[.]s3[.]{{ domain }}`)
- traefik.http.routers.minio-s3.entrypoints=websecure - traefik.http.routers.minio-s3.entrypoints=websecure
- traefik.http.routers.minio-s3.tls=true - traefik.http.routers.minio-s3.tls=true
- traefik.http.routers.minio-s3.tls.certresolver=letsencrypt - traefik.http.routers.minio-s3.tls.certresolver=letsencrypt

View File

@ -103,9 +103,11 @@ services:
image: jaegertracing/all-in-one:1 image: jaegertracing/all-in-one:1
container_name: jaeger container_name: jaeger
restart: unless-stopped restart: unless-stopped
environment:
- COLLECTOR_OTLP_ENABLED=true
ports: ports:
- 5778:5778 - 4317:4317
- 6831:6831/udp - 4318:4318
volumes: volumes:
- {{ base_volume_path }}/monitoring/jaeger:/jaeger - {{ base_volume_path }}/monitoring/jaeger:/jaeger

View File

@ -12,7 +12,7 @@ networks:
services: services:
traefik: traefik:
image: traefik:v2.10 image: traefik:v3.0
container_name: traefik container_name: traefik
restart: unless-stopped restart: unless-stopped
env_file: env_file:

View File

@ -8,9 +8,6 @@ accessLog:
filePath: /logs/access.log filePath: /logs/access.log
bufferingSize: 100 bufferingSize: 100
experimental:
http3: true
entryPoints: entryPoints:
web: web:
address: ":80" address: ":80"
@ -26,8 +23,10 @@ metrics:
entryPoint: metrics entryPoint: metrics
tracing: tracing:
jaeger: otlp:
samplingServerURL: http://localhost:5778/sampling grpc:
endpoint: "localhost:4317"
insecure: true
certificatesResolvers: certificatesResolvers:
letsencrypt: letsencrypt: