apisix-ingress-controller
apisix-ingress-controller copied to clipboard
APISIX Ingress Controller for Kubernetes
### Issue description I set an apisxiroute with two plugin: - forward-auth - proxy-rewrite ``` apiVersion: apisix.apache.org/v2beta3 kind: ApisixRoute metadata: name: route-backend namespace: default spec: http: - name: srv match:...
Signed-off-by: Ling Samuel ### Type of change: - [x] Bugfix ### What this PR does / why we need it: Fixes #1190
### Issue description When I use ApisixV2beta3Client to create apisixUpstream ``` apisixUpstream := client.ApisixUpstreams(namespace) _, err = apisixUpstream.Create(cont, ing, metav1.CreateOptions{}) ``` The following error will be reported ``` ApisixUpstream in...
### Issue description What should I do if I want to configure upstream. Configuring it with dashboard causes the ingress-controller to report an error, but there is no such crd...
Bumps [go.uber.org/zap](https://github.com/uber-go/zap) from 1.21.0 to 1.22.0. Release notes Sourced from go.uber.org/zap's releases. v1.22.0 Enhancements: #1071[]: Add zap.Objects and zap.ObjectValues field constructors to log arrays of objects. With these two constructors,...
### Issue description After I create 3000+ apisixroute objects in the cluster, when the apisix-ingress-controller is started or restarting(OOM Maybe), due to the rate limit of client-go, the resource synchronization...
Currently our custom resources are all namespace scoped. If you want to use multiple apisix-ingress-controllers in the namespace at the same time, this is not allowed. If we can add...
Currently our e2e case has a lot of duplicate code snippets, which will be harder to maintain as time goes on. A `Phase` function is a simple `func()` type function....
### Issue description While deploying APISIX on AWS using apisix-ingress-controller like described here: https://github.com/apache/apisix-ingress-controller/blob/master/docs/en/latest/deployments/aws.md. We get following services up and running: ``` NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE apisix-admin ClusterIP...
### Type of change: - [ ] Bugfix - [x] New feature provided - [ ] Improve performance - [ ] Backport patches ### What this PR does / why...