-
Notifications
You must be signed in to change notification settings - Fork 3.3k
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
Release 10.0.0 #864
Release 10.0.0 #864
Conversation
…mail_scope_to_gcp_credentials_refresh_submodule Updating Submodule for GCP Email Scope Addition
All our libraries that depended on `kubernetes` started breaking today. The reason is that pip does not do a good job properly resolving the compatible package versions. It just install packages in order without caring about the incompatibilities. The urllib3 package installed is incompatible with the `requests` package that's getting installed later. Changing the order fixes the issue.
Correct inconsistent spacing and typos
Fix broken dependencies.
…yaml-namespaced Add method to dynamically set namespace in yaml files
Sometimes, minikube lags behind kubernetes which can lead to a breakage of the test suite, since minikube will fail to start with the latest kubernetes version. See for example [this issue](kubernetes/minikube#4371). This change defaults to leave the decision of which k8s version to use, to minikube itself. This is defined in: https://github.com/kubernetes/minikube/master/pkg/minikube/constants/constants.go However, if one really desires it is still possible to pass `--kubernetes-version=X.Y.Z` to minikube initialization start command via an environment variable before invoking the test suite: export $MINIKUBE_ARGS="--kubernetes-version=X.Y.Z" This allows ofcourse passing other flags to minikube also.
…-k8s-version Don't use latest stable version for minikube
Prepare master branch for 10.0.0 release
@@ -8,6 +8,9 @@ | |||
**New Feature:** | |||
- Add method to dynamically set namespace in yaml utility [kubernetes-client/python#782](https://github.com/kubernetes-client/python/pull/782) | |||
|
|||
**API Change:** |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this happening on the release branch, not on master?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it was merged yesterday kubernetes-client/gen#119 and gets included today since we pull the latest kubernetes-client/gen
. It's a backwards-compatible fix IMO, so I keep it here. The master branch will sync up when we re-generate client there next time (11.0.0a1)
alternatively I can pin kubernetes-client/gen
to exclude this change for this release. WDYT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok. fine to include it.
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: roycaihw, yliaog 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 |
/assign @yliaog