- 14 Jul, 2018 3 commits
-
-
Darren Shepherd authored
-
Darren Shepherd authored
-
Darren Shepherd authored
-
- 19 Jun, 2018 1 commit
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Manually cherrypick #65034 to 1.10 Manually cherrypicking #65034. Using hack/cherry_pick_pull.sh to cherrypick is difficult because that requires cherrypicking #63059 first. This PR imported the latest jsoniterator library so that case sensitivity during unmarhsaling is optional. The PR also set Kubernetes json serializer to be case sensitive. Fix #64612. ```release-notes Kubernetes json deserializer is now case-sensitive to restore compatibility with pre-1.8 servers. If your config files contains fields with wrong case, the config files will be now invalid. ```
-
- 18 Jun, 2018 3 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Automated cherry pick of #64630: Wait a minimum amount of time for polling operations Cherry pick of #64630 on release-1.10. #64630: Wait a minimum amount of time for polling operations
-
Chao Xu authored
-
Chao Xu authored
-
- 15 Jun, 2018 3 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Automated cherry pick of #64855: Fix setup of configmap/secret/projected/downwardapi Cherry pick of #64855 on release-1.10. #64855: Fix setup of configmap/secret/projected/downwardapi ```release-note Fix setup of configmap/secret/projected/downwardapi volumes ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Add RBAC policy rules for csi-external-provisioner and csi-external-attacher Adds RBAC Policy rules for `csi-external-provisioner` and `csi-external-attacher` so that CSI drivers can bind to these cluster roles on every version of k8s where CSI is Beta or above. These roles were added in 1.11 but never cherrypicked back to 1.10. The roles originally added as a part of a larger change here: #61866 I could not do a direct cherry-pick because some of the RBAC primitives changed and there was also a fix applied on top with this PR: https://github.com/kubernetes/kubernetes/pull/65070 The fix has been included in this commit. /kind enhancement /sig storage /cc @msau42 /assign @liggitt @MaciekPytel ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Automated cherry pick of #64355: bump(github.com/evanphx/json-patch): Cherry pick of #64355 on release-1.10. #64355: bump(github.com/evanphx/json-patch):
-
- 14 Jun, 2018 4 commits
-
-
Nick Sardo authored
-
Nick Sardo authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Fixed taints being applied to master if NoTaintMaster is true **What this PR does / why we need it**: This PR fixes removing the master taint when `noTaintMaster` is true. It will append all current taints to the `taints` variable unless it is a master taint, and then assign `taints` back to the `node.Spec.Taints` property. The function currently will add the master taint to the `taints` variable for as many taints as the master has. It will also remove any taints that are on the master. ```release-note Fixed NoTaintMaster to remove master taint and keep all other applied taints. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Automated cherry pick of #65035 upstream release 1.10 Add kms-plugin-container.sh to release.sh. ```release-note Due to the mismatch between quick release and bazel release need to manually update release.sh to include kms-plugin-container.manifest in release.sh. Otherwise, when KMS integration is requested kube-apiserver fails to come-up. ``` REF #65035
-
- 13 Jun, 2018 6 commits
-
-
David Zhu authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Automated cherry pick of #64503: Create system:cluster-autoscaler account & role and Cherry pick of #64503 on release-1.10. #64503: Create system:cluster-autoscaler account & role and
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. kubeadm - increase upgrade manifest timeout **What this PR does / why we need it**: Backports the manifest upgrade timeout from https://github.com/kubernetes/kubernetes/pull/64988 to v1.10 **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes https://github.com/kubernetes/kubeadm/issues/850 **Release note**: ```release-note kubeadm - Increase the manifest upgrade timeout to make upgrades more reliable. ```
-
immutablet authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Cherry pick of #64255: fix field removal in mutating admission webhooks This cherry-pick was unclean because the webhook plugin was seriously refactored after 1.10 Based on https://github.com/kubernetes/kubernetes/pull/64255 ```release-note Webhooks for the mutating admission controller now support "remove" operation. ```
-
Kubernetes Submit Queue authored
Merge pull request #64804 from mcluseau/automated-cherry-pick-of-#63977-#64672-upstream-release-1.10 Automatic merge from submit-queue. Automated cherry pick of #63977: pkg: kubelet: remote: increase grpc client default size #64672: pkg: kubelet: remote: increase grpc client default size to Cherry pick of #63977 #64672 on release-1.10. #63977: pkg: kubelet: remote: increase grpc client default size #64672: pkg: kubelet: remote: increase grpc client default size to ```release-note CRI: increase grpc client default size to 16MB ```
-
- 12 Jun, 2018 3 commits
-
-
Jason DeTiberus authored
-
Hemant Kumar authored
Only call setup after they are found; otherwise we are left with orphan directories that are never cleaned up.
-
Karol Gołąb authored
-
- 11 Jun, 2018 7 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Automated cherry pick of #64739: Fix panic while provisioning Azure security group rules Cherry pick of #64739 on release-1.10. #64739: Fix panic while provisioning Azure security group rules
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Automated cherry pick of #63631: Add gpu cluster upgrade test. Cherry pick of #63631 on release-1.10. #63631: Add gpu cluster upgrade test. We added a gpu upgrade test config from 1.9-1.10 (https://github.com/kubernetes/test-infra/pull/8262). From the test logs, looks like the cluster upgrade test is using the e2e test version from the latest 1.10 release which doesn't have the newly added GPUUpgrade test. There doesn't seem to be an easy way to use the e2e test version from a head release while running the upgrade test for older release version. Cherry-picking the upgrade test to 1.10 branch so that we can gpu upgrade test from 1.9 to 1.10.
-
Kubernetes Submit Queue authored
Merge pull request #64813 from cblecker/automated-cherry-pick-of-#58972-#63650-upstream-release-1.10 Automatic merge from submit-queue. Automated cherry pick of #58972: Fix job's backoff limit for restart policy OnFailure #63650: Never clean backoff in job controller Cherry pick of #58972 #63650 on release-1.10. #58972: Fix job's backoff limit for restart policy OnFailure #63650: Never clean backoff in job controller Fixes #62382. **Release Note:** ```release-note Fix regression in `v1.JobSpec.backoffLimit` that caused failed Jobs to be restarted indefinitely. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Automated cherry pick of #64727: Update GCE cloud provider to use Cloud TPU v1 API Cherry pick of #64727 on release-1.10. #64727: Update GCE cloud provider to use Cloud TPU v1 API
-
Ashley authored
-
Dr. Stefan Schimanski authored
Unclean cherry-pick.
-
Kubernetes Submit Queue authored
Merge pull request #64929 from ixdy/automated-cherry-pick-of-#61575-#57600-#62499-upstream-release-1.10 Automatic merge from submit-queue. Automated cherry pick of #61575: Remove all upstream BUILD, BUILD.bazel, and WORKSPACE #57600: Vendor gazelle #62499: Update kazel to include openapi tag detection fix Cherry pick of #61575 #57600 #62499 on release-1.10. #61575: Remove all upstream BUILD, BUILD.bazel, and WORKSPACE #57600: Vendor gazelle #62499: Update kazel to include openapi tag detection fix This is an alternative to #64928, and would fix #64925. We can't just cherry-pick #57600, since there was a prerequisite PR and a fixup PR afterwards.
-
- 08 Jun, 2018 7 commits
-
-
Jeff Grafton authored
-
Tim Hockin authored
-
Tim Hockin authored
-
Tim Hockin authored
-
Tim Hockin authored
-
Jeff Grafton authored
-
Jeff Grafton authored
-
- 07 Jun, 2018 3 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Skip Sysctl tests against v1.11.0-alpha.0 and newer **What this PR does / why we need it**: 1.10 e2e tests get run against 1.11.0+ masters during upgrade tests. This fails as Sysctl moved from annotations to fields, so we should check the version and avoid running these tests. **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes #64845 **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Automated cherry pick of #63248: fix formatAndMount func issue on Windows Cherry pick of #63248 on release-1.10. #63248: fix formatAndMount func issue on Windows
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. Skip updating status for DaemonSet being deleted **What this PR does / why we need it**: #64313, https://github.com/kubernetes/kubernetes/pull/64797#issuecomment-395152965 **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes # **Special notes for your reviewer**: **Release note**: ```release-note Skip updating status for DaemonSet being deleted. ```
-