-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Pull master into release-17.0 #1447
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
Merged
k8s-ci-robot
merged 63 commits into
kubernetes-client:release-17.0
from
roycaihw:pull-master-into-release-17.0
Apr 30, 2021
Merged
Pull master into release-17.0 #1447
k8s-ci-robot
merged 63 commits into
kubernetes-client:release-17.0
from
roycaihw:pull-master-into-release-17.0
Apr 30, 2021
Conversation
This file contains hidden or 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
Signed-off-by: Gábor Lipták <[email protected]>
Releases are being fast tracked until we sync with the upstream releases. The older releases will continue to be maintained for that transition period or related upstream version deprecation whichever is later. Signed-off-by: Nabarun Pal <[email protected]>
Signed-off-by: Nabarun Pal <[email protected]>
Signed-off-by: Nabarun Pal <[email protected]>
Signed-off-by: Nabarun Pal <[email protected]>
Signed-off-by: Nabarun Pal <[email protected]>
…mpat-and-support-clauses Update support and compatibitility sections of documentation
Implement back end raw port test container using python.
Add Python 3.9 to build
…architecture independent
Adding Power support(ppc64le) with ci and testing to the project for architecture independent
…/labels e2e: use labels for configmap api; wait for default service account creation
Enable leaderelection
…ed 'kubernetes.leaderelection' error To reproduce: Make sure to create a file outside of checked out python repo directory. $ cat hello_k8s.py import kubernetes kubernetes.config.load_kube_config() k8s = kubernetes.client.CoreV1Api() print("Listing pods with their IPs:") ret = k8s.list_pod_for_all_namespaces(watch=False) for i in ret.items: print("%s\t%s\t%s" % (i.status.pod_ip, i.metadata.namespace, i.metadata.name)) python hello_k8s.py Traceback (most recent call last): File "hello_k8s.py", line 1, in <module> import kubernetes File "<frozen zipimport>", line 259, in load_module File "anaconda3/lib/python3.8/site-packages/kubernetes-17.0.0_snapshot-py3.8.egg/kubernetes/__init__.py", line 25, in <module> ModuleNotFoundError: No module named 'kubernetes.leaderelection'
Added kubernetes.leaderelection in packages list to fix import error
Update base submodule
Fix Typo in examples/remote_cluster.py
- move regex compilation to the top of the module to enable caching.
Refactor utils
Use get_default_copy() API with configuration.
examples/pod_exec.py: fix example
…ggu-enhance_node_labels_example simplify & enhance the node_labels.py example
…ggu_add_cluster_scoped_custom_object_example Add example to demonstrate usage of `patch_cluster_custom_object` method
Detect OS X sed and fail client generation script
…upstream-commits Apply-hotfixes: use commits from upstream repo instead of a forked repo
…om-patch1 Removed custom_object.py and created a new file namespaced_custom_object.py which is more specific to usage of namespaced custom resource
examples: comment improvement in remote_cluster.py and deployment_cre…
…l-master-into-release-17.0
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: roycaihw The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
git output for the actual pull:
|
/lgtm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
approved
Indicates a PR has been approved by an approver from all required OWNERS files.
cncf-cla: yes
Indicates the PR's author has signed the CNCF CLA.
kind/cleanup
Categorizes issue or PR as related to cleaning up code, process, or technical debt.
lgtm
"Looks good to me", indicates that a PR is ready to be merged.
release-note-none
Denotes a PR that doesn't merit a release note.
size/XL
Denotes a PR that changes 500-999 lines, ignoring generated files.
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.
What type of PR is this?
/kind cleanup
What this PR does / why we need it:
Talked offline with @scottilee, I'm doing the first step of the release process Create or update release branch for the upcoming v17.17.0b1 release, so that it will be easier and cleaner for Scott to do the remaining release steps.
Does this PR introduce a user-facing change?
/cc @yliaog
@scottilee