This is an automated email from the ASF dual-hosted git repository.
zhangjintao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
The following commit(s) were added to refs/heads/master by this push:
new 9ab367f docs: Supplement FAQ for the error log 'no matches for kind
"ApisixRoute" in version "apisix.apache.org/v2beta1"' (#651)
9ab367f is described below
commit 9ab367f9d35e67616f678471d3407566a2b6b126
Author: kv <[email protected]>
AuthorDate: Sun Aug 29 07:58:08 2021 +0800
docs: Supplement FAQ for the error log 'no matches for kind "ApisixRoute"
in version "apisix.apache.org/v2beta1"' (#651)
---
docs/en/latest/FAQ.md | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/docs/en/latest/FAQ.md b/docs/en/latest/FAQ.md
index 46b80dc..cb15fde 100644
--- a/docs/en/latest/FAQ.md
+++ b/docs/en/latest/FAQ.md
@@ -64,3 +64,15 @@ In such a case, you may need to apply these CRDs by yourself.
```shell
kubectl apply -k samples/deploy/crd/
```
+
+### 8. Why apisix-ingress-controller reports similar errors when running: no
matches for kind "ApisixRoute" in version "apisix.apache.org/v2beta1"
+
+The version `v2beta1` is the newest version of resource `ApisixRoute`. You
need to check if the CRD definition file is up to date.
+
+```shell
+kubectl get crd apisixroutes.apisix.apache.org -o jsonpath='{
.spec.versions[*].name }' -A
+```
+
+If you can not find `v2beta1` in `ApisixRoute` definition file. Please apply
the latest version of `ApisixRoute`.
+
+Ref to FAQ #7.