-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for k8s 1.17 #706
Merged
Merged
Conversation
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
lblackstone
force-pushed
the
lblackstone/k8s-1.17
branch
from
August 30, 2019 19:33
ffbe0ed
to
825b978
Compare
lblackstone
force-pushed
the
lblackstone/k8s-1.17
branch
from
October 3, 2019 17:49
825b978
to
5c2fa8f
Compare
lblackstone
force-pushed
the
lblackstone/k8s-1.17
branch
from
October 15, 2019 17:01
5c2fa8f
to
9a086e6
Compare
lblackstone
force-pushed
the
lblackstone/k8s-1.17
branch
from
November 5, 2019 17:20
4375c38
to
43a8c03
Compare
lblackstone
force-pushed
the
lblackstone/k8s-1.17
branch
from
November 18, 2019 20:23
43a8c03
to
17fdf4f
Compare
lblackstone
force-pushed
the
lblackstone/k8s-1.17
branch
from
December 2, 2019 17:45
17fdf4f
to
52ec62d
Compare
Not compiling -- missing `discovery.v1alpha1`
Got it compiling again by removing discovery/v1alpha1 from SDK See kubernetes/kubernetes#84390
lblackstone
force-pushed
the
lblackstone/k8s-1.17
branch
from
December 9, 2019 21:06
2d648ca
to
8ff6167
Compare
metral
approved these changes
Dec 9, 2019
Of note, v1.14 has been removed. AWS & GKE for example only support 1.14 as of today. What should we do to make sure we support them? |
Anything from 1.14 should continue working as usual, even though it's outside of the N-2 support window. We'll consider if we need to expand that support in the future to avoid breaking changes. |
Open
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Important note:
The
discovery.v1alpha1.EndpointSlice
anddiscovery.v1alpha1.EndpointSliceList
APIs were removed in k8s 1.17, and no longer appear in the Pulumi Kubernetes SDKs. These resources can now be found atdiscovery.v1beta1.EndpointSlice
anddiscovery.v1beta1.EndpointSliceList
.Fixes #705