- 17 Oct, 2016 23 commits
-
-
mbohlool authored
-
mbohlool authored
-
mbohlool authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Reduce amount of annoying logs in cacher
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue controller: set minReadySeconds in deployment's replica sets * Estimate available pods for a deployment by using minReadySeconds on the replica set. * Stop requeueing deployments on pod events, superseded by following the replica set status. * Cleanup redundant deployment utilities Fixes https://github.com/kubernetes/kubernetes/issues/26079 @kubernetes/deployment ptal
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add monitoring architecture <!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, read our contributor guidelines https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md and developer guide https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md 2. If you want *faster* PR reviews, read how: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/faster_reviews.md 3. Follow the instructions for writing a release note: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes --> **What this PR does / why we need it**: This adds a description of monitoring architecture. **Special notes for your reviewer**: This proposal have been already extensively discussed in [this doc](https://docs.google.com/document/d/1z7R44MUz_5gRLwsVH0S9rOy8W5naM9XE5NrbeGIqO2k); this is just a copy&paste so that it's in our repo. @kubernetes/autoscaling @kubernetes/sig-instrumentation @DirectXMan12 @davidopp @piosz @derekwaynecarr @thockin **Release note**: <!-- Steps to write your release note: 1. Use the release-note-* labels to set the release note state (if you have access) 2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`. --> ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue add admin,edit,view roles Adds some more basic roles to bootstrapping and associated tests.
-
Wojciech Tyczynski authored
-
Filip Grzadkowski authored
-
deads2k authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add flags for alternative API and discovery ports **What this PR does / why we need it**: We had many issues reported due to the fact that we are using port 443 by default, and we should allow users to override whatever defaults we pick. This doesn't touch on `localhost:8080` yet, which should just generally get rid of. **Which issue this PR fixes**: fixes #34311 #34307 #33638 **Special notes for your reviewer**: cc @pires **Release note**: ```release-note Add `kubeadm` flags `--api-port` and `--discovery-port`, change default API port to 6443 ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue clientgen: allow to pass custom apiPath when generating client sets This PR allow to pass the `--clientset-api-path` parameter to clientgen that allows to customize the default API path set in clients. This allows projects like OpenShift to re-use the client with different API path (`/oapi` in our case).
-
Ilya Dmitrichenko authored
-
Ilya Dmitrichenko authored
-
Ilya Dmitrichenko authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add logs generator @piosz Tool to test logging mechanisms, mentioned in #34310
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Extend tracing in watchCache
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix misspellings of 'receive' Fix typos
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Remove duplicate --etcd-servers arguments in kubeadm fixes: #34900 @pires @errordeveloper
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Elasticsearch and Kibana update ```release-note Updated Elasticsearch image from version 1.5.1 to version 2.4.1. Updated Kibana image from version 4.0.2 to version 4.6.1. ``` Updated es and kibana images. Made image versions match es/kibana versions they contain. ref #19149
-
Wojciech Tyczynski authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add tracing to listing in Cacher
-
Wojciech Tyczynski authored
-
- 16 Oct, 2016 11 commits
-
-
Lucas Käldström authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue make function ReadDockerConfigFile more flexible In our code, the public function `ReadDockerConfigFile` looks like not enough flexible: when I want to use this function to get docker config info from a specific path, I have to call `SetPreferredDockercfgPath`, and then the setting preferredPath will be valid in function `ReadDockerConfigFile`. I know in our code, we call `SetPreferredDockercfgPath` in one place ,then call `ReadDockerConfigFile` in another place, it was not in same context. But it looks like not thread safety. I think if user who use our code want to get docker config from a specific path, it is reasonable to call directly `ReadDockerConfigFile ` with a dockerconfigPath argument, and it can avoid some scenarios that thread is not safety . I add a test case for this function.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Added INSTANCE_PREFIX to project hash to avoid S3 bucket clash **What this PR does / why we need it**: Fixes an issue where if you run multiple k8s clusters in same region S3 resources are being overwritten and therefore node bootstrapping stalls, i.e. when using Auto scaling. **Special notes for your reviewer**: By adding the `INSTANCE_PREFIX` to the project hash in the S3 bucket the bucket will not be overwritten. **Release note**: <!-- Steps to write your release note: 1. Use the release-note-* labels to set the release note state (if you have access) 2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`. --> ```release-note ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Make Rackspace deploy scripts compatible with Kubernetes v1.3.0 []() * Use the current stable CoreOS image * Switch to etcd2 * Launch flanneld on master to make nodes accessible * Generate Service Account certificate and enable admission controls
-
Mik Vyatskov authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Delete all deployments when tear down cluster alive resources Delete all deployments when tear down cluster alive resources.
-
Mik Vyatskov authored
-
Jess Frazelle authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Register the kubeadm api group in cmd/kubeadm Fixes the issue mentioned in: https://github.com/kubernetes/kubernetes/pull/34885#issuecomment-253995383 My test config: ```yaml apiVersion: kubeadm.k8s.io/v1alpha1 kind: MasterConfiguration kubernetesVersion: v1.4.2 networking: podSubnet: 10.244.0.0/16 dnsDomain: k8s.somecompany.com serviceSubnet: 10.16.0.0/12 api: externalDNSNames: - myawesomek8snode secrets: givenToken: 92f7e2.3685fe2e01f799f3 ``` ```console # kubeadm init --config kubeadm.yaml ``` @kubernetes/sig-cluster-lifecycle
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue kubectl: apply prune should fallback to basic delete when a resource has no reaper Fixes #34790 cc @kubernetes/kubectl @MrHohn
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Change etcd Get operation to serializable Ref https://github.com/kubernetes/kubernetes/issues/34709
-
- 15 Oct, 2016 6 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Allow callers to bypass cmdutil.CheckError() logging **Release note**: ```release-note release-note-none ``` This patch is originally from: https://github.com/kubernetes/kubernetes/pull/25451 (https://github.com/kubernetes/kubernetes/pull/25451/commits/eedb67a30d3591bb609d649043a99f8fc46cd64a) Simplifies code where clients are writing their own errors, and want to terminate with an exit code. cc @smarterclayton
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue attempt to use discovery RESTMapper and fallback if we can't Updates `kubectl` to always attempt discovery regardless of server version. This is needed to extension servers.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue you can be authorized and have a failure Fix the authorization filter to allow you through and to avoid showing internal errors to users when authorization failed.
-
Lucas Käldström authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Update run flags to point to generators docs @janetkuo you've requested that in https://github.com/kubernetes/kubernetes/pull/32484#issuecomment-246840562 I'm opening this PR but like you I don't like the length of the descriptions already. The other problem with this is that there's not clean docs for a user to figure out what the generators are. I've stumbled upon this several times and I always found myself looking into the code :/ How about adding new flag/subcommand that will give you more information about generators and we'd move all those `--restart` and `--generator` information into specific generator info and present at the top level only general information?
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Doc: Explain how to use EBS storage on AWS <!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, read our contributor guidelines https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md and developer guide https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md 2. If you want *faster* PR reviews, read how: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/faster_reviews.md 3. Follow the instructions for writing a release note: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes --> **What this PR does / why we need it**: **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes # **Special notes for your reviewer**: **Release note**: <!-- Steps to write your release note: 1. Use the release-note-* labels to set the release note state (if you have access) 2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`. --> ```release-note ```
-