Kubernetes is removing support for the v1beta1 Ingress type in 1.22: https://kubernetes.io/blog/2021/07/14/upcoming-changes-in-kubernetes-1-22/#api-changes However, we still wish to support k8s v1.16 until mid 2022 when Openshift 3 becomes out of support. cert-manager will now use v1 Ingress if available by using the discovery API. Signed-off-by: Jake Sanders <i@am.so-aweso.me>
23 lines
612 B
Python
23 lines
612 B
Python
filegroup(
|
|
name = "package-srcs",
|
|
srcs = glob(["**"]),
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-srcs",
|
|
srcs = [
|
|
":package-srcs",
|
|
"//pkg/internal/api/mutation:all-srcs",
|
|
"//pkg/internal/api/validation:all-srcs",
|
|
"//pkg/internal/apis/acme:all-srcs",
|
|
"//pkg/internal/apis/certmanager:all-srcs",
|
|
"//pkg/internal/apis/meta:all-srcs",
|
|
"//pkg/internal/ingress:all-srcs",
|
|
"//pkg/internal/vault:all-srcs",
|
|
],
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:public"],
|
|
)
|