我们正在使用traefik-ingress在我们的Kubernetes集群中分发流量。我正在尝试对某些URL或掩码进行重定向。
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
regex = "^http://(.*).domain.com"
replacement = "http://$1.staging.newdomain.com"
这是我发现的一般交通配置示例。我的问题是traefik-ingress使用yaml配置,并且格式不同。我没有找到使用这种语法进行重定向的任何示例。