当我在Ingress文件中添加50条以上的路径时-从Google Cloud Platform获取以下错误。
“同步期间出错:UpdateURLMap:googleapi:错误413:字段'resource.pathMatchers [0] .pathRules'的值太大:最大大小为50个元素;实际大小为51个,fieldSizeTooLarge”
我们正在使用基于路径的Traefik入口。此错误来自Google Cloud Platform。
样本入口看起来像:
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
traefik.frontend.rule.type: PathPrefixStrip
name: traefik-ingress
namespace: default
spec:
rules:
- host: domain-name.com
http:
paths:
- backend:
serviceName: default-http-backend
servicePort: 8080
path: /
- backend:
serviceName: foo1-service
servicePort: 8080
path: /foo1/*
- backend:
serviceName: foo2-service
servicePort: 8080
path: /foo2/*
- backend:
serviceName: foo3-service
servicePort: 8080
path: /foo3/*
答案 0 :(得分:1)
答案 1 :(得分:0)