You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by to...@apache.org on 2021/05/08 03:21:35 UTC

[apisix-ingress-controller] branch master updated: fix: wrong group version for extensions/v1beta1.Ingress (#385)

This is an automated email from the ASF dual-hosted git repository.

tokers 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 0c77cce  fix: wrong group version for extensions/v1beta1.Ingress (#385)
0c77cce is described below

commit 0c77ccedf59d76f41d7958cc2d89df1524528d12
Author: Vincent <vi...@tencent.com>
AuthorDate: Sat May 8 11:21:27 2021 +0800

    fix: wrong group version for extensions/v1beta1.Ingress (#385)
---
 pkg/kube/ingress.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/kube/ingress.go b/pkg/kube/ingress.go
index ed43046..1798bad 100644
--- a/pkg/kube/ingress.go
+++ b/pkg/kube/ingress.go
@@ -155,7 +155,7 @@ func (l *ingressLister) ExtensionsV1beta1(namespace, name string) (Ingress, erro
 		return nil, err
 	}
 	return &ingress{
-		groupVersion:      IngressV1beta1,
+		groupVersion:      IngressExtensionsV1beta1,
 		extensionsV1beta1: ing,
 	}, nil
 }