澄潭
澄潭
@Uncle-Justice README看看调整下,完成后我就合入啦
cc @SpecialYang
We can implement features already supported by the Gateway API by contributing to the [ingress2gateway](https://github.com/kubernetes-sigs/ingress2gateway/blob/main/pkg/i2gw/providers/ingressnginx/README.md) community , and integrate this project.
If you are interested in contributing to this task, you can also claim this issue: https://github.com/kubernetes-sigs/ingress2gateway/issues/64
@sjcsjc123 👍感谢,这是个HEP issue,会进一步拆出子任务提供认领
可否进一步完善下需求细节,需求说明的越清晰,社区实现起来就越快~
这个好像不是很通用吧,503可能是服务自身的问题,不是特定IP造成的
我理解比较通用的是对特定IP/Cookie,一段时间访问超限后加入黑名单,屏蔽一段时间后再放出,这种CC防护的场景会更通用些
我测试了externalname service,是没问题的,是不是你的ingress和service不在一个命名空间?
external name service里需要指定端口: ```yaml apiVersion: v1 kind: Service metadata: name: oss-f6-static-svc namespace: test spec: type: ExternalName externalName: f6-static.oss-cn-shanghai.aliyuncs.com ports: - port: 80 protocol: TCP ```