-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(kubernetes): Add networking.k8s.io/v1beta1 ingress versions (#4056)
* refactor(kubernetes): Pull api versions to a set A number of different places check the API version of a manifest against a set of supported ones using a log if condition. Replace these with a statically-defined set of supported versions and a check of whether the manifest's API version is in the set. This commit doesn't change any of the supported versions. * fix(kubernetes): Add networking.k8s.io/v1beta1 ingress versions In Kubernetes 1.20, Ingress will stop being served from the extensions/v1beta1 API group and will only be served from the networking.k8s.io/v1beta1 API group (which has been available since 1.14).
- Loading branch information
Showing
4 changed files
with
37 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters