Hello, i am trying the use traefik as loadbalancer for a minio pool, according to minio configuration for health minio expose an API to check on https://minio.example.net:9000/minio/health/live
So i try:
services:
minio-api:
loadBalancer:
healthCheck:
path: /minio/health/live/
port: 9000
interval: 10s
timeout: 3s
servers:
- url "http://172.26.3.41:9000"
- url: "http://172.26.3.42:9000"
- url: "http://172.26.3.43:9000"
- url: "http://172.26.3.44:9000"
but it fails. probably because is intended to only check the headers, like so:
curl -I https://minio.example.net:9000/minio/health/live
So, there is any way to accomplish this with traefik ? The documentation mentions header but no meaningful example is given assuming this may be the way to do this.