This is an automated email from the ASF dual-hosted git repository. ronething pushed a commit to branch feat/add_resource_verify in repository https://gitbox.apache.org/repos/asf/apisix-ingress-controller.git
commit e3ddb3e358d3f1275c8f753db6ffb5fc9384af46 Author: Ashing Zheng <[email protected]> AuthorDate: Fri Sep 26 16:11:26 2025 +0800 fix: manifest.yaml Signed-off-by: Ashing Zheng <[email protected]> --- config/webhook/manifests.yaml | 60 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) diff --git a/config/webhook/manifests.yaml b/config/webhook/manifests.yaml index efcc2fca..de7ced0e 100644 --- a/config/webhook/manifests.yaml +++ b/config/webhook/manifests.yaml @@ -4,6 +4,46 @@ kind: ValidatingWebhookConfiguration metadata: name: validating-webhook-configuration webhooks: +- admissionReviewVersions: + - v1 + clientConfig: + service: + name: webhook-service + namespace: system + path: /validate-apisix-apache-org-v2-apisixconsumer + failurePolicy: Fail + name: vapisixconsumer-v2.kb.io + rules: + - apiGroups: + - apisix.apache.org + apiVersions: + - v2 + operations: + - CREATE + - UPDATE + resources: + - apisixconsumers + sideEffects: None +- admissionReviewVersions: + - v1 + clientConfig: + service: + name: webhook-service + namespace: system + path: /validate-apisix-apache-org-v2-apisixtls + failurePolicy: Fail + name: vapisixtls-v2.kb.io + rules: + - apiGroups: + - apisix.apache.org + apiVersions: + - v2 + operations: + - CREATE + - UPDATE + resources: + - apisixtlses + sideEffects: None - admissionReviewVersions: - v1 clientConfig: @@ -24,6 +64,26 @@ webhooks: resources: - gateways sideEffects: None +- admissionReviewVersions: + - v1 + clientConfig: + service: + name: webhook-service + namespace: system + path: /validate-apisix-apache-org-v1alpha1-gatewayproxy + failurePolicy: Fail + name: vgatewayproxy-v1alpha1.kb.io + rules: + - apiGroups: + - apisix.apache.org + apiVersions: + - v1alpha1 + operations: + - CREATE + - UPDATE + resources: + - gatewayproxies + sideEffects: None - admissionReviewVersions: - v1 clientConfig:
