- 26 Sep, 2017 1 commit
-
-
Michael Taufen authored
Previously, if a write or sync error occurred, we would not have called Close(). This commit refactors ReplaceFile() so that we are sure to call Close(), and also attempts to delete the temporary file if errors occur.
-
- 19 Sep, 2017 5 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 48970, 52497, 51367, 52549, 52541). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. [fluentd-gcp addon] By default ingest audit logs in JSON format As https://github.com/kubernetes/kubernetes/pull/50971 set default audit log format for advanced auditing to JSON and https://github.com/kubernetes/kubernetes/pull/51943 makes advanced auditing default, fluentd should also ingest audit logs as JSON by default. ```release-note [fluentd-gcp addon] By default ingest apiserver audit logs written to file in JSON format. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 48970, 52497, 51367, 52549, 52541). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Enable autoscaling/v2beta1 by default The PR which graduated autoscaling/v2alpha1 to beta accidentally missed enabling the API group by default. This rectifies that. **Release note**: ```release-note The autoscaling/v2beta1 API group is now enabled by default. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 48970, 52497, 51367, 52549, 52541). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Default ABAC to off in GCE (for new clusters). **What this PR does / why we need it**: Disables the legacy ABAC authorizer by default on GCE/GKE clusters using kube-up.sh. Existing clusters upgrading to 1.8 will keep their existing configuration. **Release note**: ```release-note New GCE or GKE clusters created with `cluster/kube-up.sh` will not enable the legacy ABAC authorizer by default. If you would like to enable the legacy ABAC authorizer, export ENABLE_LEGACY_ABAC=true before running `cluster/kube-up.sh`. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 48970, 52497, 51367, 52549, 52541). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Add configuration support for signing duration. Fixes https://github.com/kubernetes/kubernetes/issues/52286 Fixes https://github.com/kubernetes/kubernetes/issues/52282 Reverses revert (with fixes) https://github.com/kubernetes/kubernetes/pull/52299 ```release-note Add CLUSTER_SIGNING_DURATION environment variable to cluster configuration scripts to allow configuration of signing duration of certificates issued via the Certificate Signing Request API. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 48970, 52497, 51367, 52549, 52541). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Recreate pod sandbox when the sandbox does not have an IP address. **What this PR does / why we need it**: Attempts to fix a bug where Pods do not receive networking when the kubelet restarts during pod creation. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # https://github.com/kubernetes/kubernetes/issues/48510 **Release note**: ```release-note NONE ```
-
- 18 Sep, 2017 2 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Add statefulset upgrade tests to be run as part of upgrade testing Statefulset upgrade testing is not running at all in any testsuite. This has caused issues in the past like: https://github.com/kubernetes/kubernetes/issues/48327 Changing the tag to make it run in existing upgrade test clusters. @krzyzacy @kubernetes/sig-apps-misc @kubernetes/sig-release-members @kow3ns @enisoc
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Added OWNERS for metrics-server https://github.com/kubernetes/features/issues/271
-
- 16 Sep, 2017 12 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. api: update progressdeadlineseconds comment for deployments @kubernetes/sig-apps-api-reviews we may never end up doing autorollback - this drops the comment from the pds field for now
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Add bootstrap policy for HPA metrics REST clients Since we weren't running the HPA with metrics REST clients by default, we had no bootstrap policy enabling the HPA controller to talk to the metrics APIs. This adds permissions for the HPA controller to talk list pods.metrics.k8s.io, and list any resource in custom.metrics.k8s.io. ```release-note Introduce policy to allow the HPA to consume the metrics.k8s.io and custom.metrics.k8s.io API groups. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 52176, 43152). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. etcd3 store: retry with live object on conflict if there was a suggestion Retry with a live object instead of the cached version if the watch cache receives a conflict trying to do the update. Fixes #41892
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 52176, 43152). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Eliminate hangs/throttling of node heartbeat Fixes https://github.com/kubernetes/kubernetes/issues/48638 Fixes #50304 Stops kubelet from wedging when updating node status if unable to establish tcp connection. Notes that this only affects the node status loop. The pod sync loop would still hang until the dead TCP connections timed out, so more work is needed to keep the sync loop responsive in the face of network issues, but this change lets existing pods coast without the node controller trying to evict them ```release-note kubelet to master communication when doing node status updates now has a timeout to prevent indefinite hangs ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. fix Kubeadm phase addon regression What this PR does / why we need it: fix Kubeadm phase addon regression Special notes for your reviewer: CC @luxas
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 52486, 52588, 52524). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Add cluster-name option for cloud controller manager **What this PR does / why we need it**: `cluster-name` is used by servicecontroller and routecontroller, for controller-manager, we have a parameter to set it, but for cloud-controller-manager, it will always be of default value 'kubernetes'. An example of impact is Azure's loadbalancer, the loadbalancer resource created will always have the name 'kubernetes', while it used to be the cluster name set via controller manger's option. **Which issue this PR fixes** Fixes #52522 **Special notes for your reviewer**: **Release note**: ```release-note ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 52486, 52588, 52524). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Fix nil pointer dereference in cri stats provider when there are no image file systems **What this PR does / why we need it**: This PR fixes a nil pointer dereference in CRI stats provider when there are no image filesystems. See https://github.com/kubernetes/kubernetes/pull/51152 for discussion. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: **Release note**: ```release-note ``` /cc yujuhong yguo0905
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Changes the node cloud controller to use its name for events **What this PR does / why we need it**: Updates the event recorder component to be the `cloud-node-controller` instead of `cloudcontrollermanager`, which aligns with how other controllers are setup like the daemonset controller which uses `daemonset-controller` and the ccm uses `cloud-controller-manager`. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: **Release note**: ```release-note Use `cloud-node-controller` for cloud node controller events ``` /cc @luxas @wlan0 @jhorwit2
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 52488, 52548). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Bumped Metrics Server to v0.2.0 ref https://github.com/kubernetes/features/issues/271 **Release note**: ```release-note Introduced Metrics Server in version v0.2.0. For more details see https://github.com/kubernetes-incubator/metrics-server/releases/tag/v0.2.0. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 52488, 52548). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Enable overriding Heapster resource requirements in GCP This PR enables to override Heapster resource requirements in GCP. **Release note:** ```release-note ```
-
David Porter authored
-
David Porter authored
-
- 15 Sep, 2017 20 commits
-
-
Anirudh authored
-
Anirudh authored
all upgrade testsuites
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>.. Do not install metrics/v1alpha1 by default We want to have `metrics/v1alpha1` in the repo in order to support the previous version of HPA, but we don't want to install them by default. ref https://github.com/kubernetes-incubator/metrics-server/pull/15
-
fabriziopandini authored
-
Solly Ross authored
Since we weren't running the HPA with metrics REST clients by default, we had no bootstrap policy enabling the HPA controller to talk to the metrics APIs. This adds permissions for the HPA controller to talk list pods.metrics.k8s.io, and list any resource in custom.metrics.k8s.io.
-
Piotr Szczesniak authored
-
Andy Goldstein authored
In GuaranteedUpdate, if it was called with a suggestion (e.g. via the watch cache), and the suggested object is stale, perform a live lookup and then retry the update. Signed-off-by:Andy Goldstein <andy.goldstein@gmail.com>
-
Jacob Simpson authored
Add CLUSTER_SIGNING_DURATION environment variable to cluster configuration scripts to allow configuration of signing duration of certificates issued via the Certificate Signing Request API.
-
Casey Davenport authored
-
Casey Davenport authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Move 1.3.* release notes out of CHANGELOG.md **What this PR does / why we need it**: The latest CHANGELOG almost reach the size of 1M again. Move 1.3 release notes out of CHANGELOG.md **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # ref: #48985 #52174 **Special notes for your reviewer**: I wish I could split all <1.7 releases in one PR, but it's a bit painful to do that way. So I just split each release at a time. /cc @jdumars @dchen1107 **Release note**: ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Increase sliding window to 5hr for request_latencies metric We're seeing high latency values for a couple of types of api calls in our density test (ref https://github.com/kubernetes/kubernetes/issues/51899). And we're recording values from only the last 1 hour in the metric (as @wojtek-t told me offline) - so our test result is pretty much counting only the calls during the delete phase. cc @kubernetes/sig-scalability-misc @kubernetes/sig-api-machinery-misc @gmarek
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Revert "Update addon-resizer version" This reverts #46850 due to several issues with new version of addon resizer (#50599, #52535), as recommended by @piosz. cc @fgrzadkowski @x13n
-
Solly Ross authored
The PR which graduated autoscaling/v2alpha1 to beta accidentally missed enabling the API group by default. This rectifies that.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add extra steps to delete resource handler trace Based on https://github.com/kubernetes/kubernetes/issues/51899#issuecomment-329786131 cc @kubernetes/sig-scalability-misc @kubernetes/sig-api-machinery-misc @gmarek
-
Piotr Szczesniak authored
-
Piotr Szczesniak authored
-
Shyam Jeedigunta authored
-
Shyam Jeedigunta authored
-
Mik Vyatskov authored
-