cert-manager/pkg/internal/BUILD.bazel
Jake Sanders 0d93b93fc5
Feature: Support both v1 and v1beta1 ingresses.
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>
2021-07-26 18:29:42 +01:00

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"],
)