- 03 Nov, 2016 1 commit
-
-
Jan Safranek authored
-
- 02 Nov, 2016 1 commit
-
-
Jan Safranek authored
In other words, add "provisioned-by" annotation to all PVCs that should be provisioned dynamically.
-
- 01 Nov, 2016 6 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Remove archived clientset We have [client-go](https://github.com/kubernetes/client-go) now, no need to keep archived clientset in master of k8s.io/kubernetes. Also updated the client-gen README. Fix https://github.com/kubernetes/kubernetes/issues/35803. cc @mikedanese ```release-note The main kubernetes repository stops hosting archived version of released clients. Please use [client-go](https://github.com/kubernetes/client-go). ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue break endless loop in vagrant cluster reference to [vagrant.md](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/local-cluster/vagrant.md) troubleshooting , I guess we could set a time to return from endless loop to register with cloud provider.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Correct the article in generated documents **What this PR does / why we need it**: Fix the article in generated docs for "create/delete [article] [kind]" **Which issue this PR fixes** fixes #32305 **Special notes for your reviewer**: None **Release note**: ``` release-note Correct the article in generated documents ``` For example: "a Ingress" > "an Ingress"
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Alternative unsafe copy Have run this for 2 hours in the stresser without an error (no guarantee). @wojtek-t can we do a 500 kubemark run with this prior to merge?
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Update PodAntiAffinity to ignore calls to subresources @smarterclayton I hit this when I was trying to evict a pod, apparently k8s does not have this particular admission plugin on by default. ptal @mml @davidopp fyi
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Allow apiserver to choose preferred kubelet address type Follow up to #33718 to stay compatible with clusters using DNS names for master->node communications. Adds the `--kubelet-preferred-address-types` apiserver flag for clusters that prefer a different node address type. ```release-note The apiserver can now select which type of kubelet-reported address to use for master->node communications, using the --kubelet-preferred-address-types flag. ```
-
- 31 Oct, 2016 32 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Bump rkt stage1-fly to 1.18.0 Bumps stage1-fly version.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Bump Kubelet workingset upper bound For https://github.com/kubernetes/kubernetes/issues/34990 Follow up to https://github.com/kubernetes/kubernetes/pull/35828, because working memory is too high now too.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Improve CockroachDB example This is primarily about pulling in the init container to make the config more production-ready, but I've pulled in a few other small improvements that have been made since this was first contributed. * Use an init container to eliminate potential edge case where losing the first pet's data could cause it to start a second logical cluster * Exec the cockroach binary so that it runs as PID 1 in the container * Make some small improvements to the README @bprashanth ```release-note ```
-
Fabio Yeon authored
-
Chao Xu authored
remove archived federation clientsets update README
-
Michael Taufen authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Disable update-staging-client-go until code freeze I don't want to cause developer friction until code freeze. I'll babysit the script for the moment to keep the client-go up-to-date. Should had done this in #34489.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue quota controller uses informers if available for pod calculation This PR does the following: 1. plumb informer factory into quota registry and evaluators 2. pod quota evaluator uses informers for determining aggregrate usage instead of making direct calls 3. admission code path does not use informers because 1. we do not want to add new watches in apiserver 2. admission code path does not require aggregate usage calculation As a result, quota controller is much faster in re-calculating quota usage when it observes a pod deletion. Follow-on PRs will make similar changes for other informer backed resources (pvcs next). /cc @deads2k @mfojtik @smarterclayton @kubernetes/rh-cluster-infra
-
Tim St. Clair authored
-
Jordan Liggitt authored
-
Alex Robinson authored
* Use an init container to eliminate potential edge case where losing the first pet's could cause it to start a second logical cluster * Exec the cockroach binary so that it runs as PID 1 in the container * Make some small improvements to the README
-
Chao Xu authored
-
Tim Hockin authored
build: kube-dns: remove out of date docs
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Initialize CIDR allocator before registering handle functions Currently we start shared informers after everything is already created, but this change make it future-proof. cc @davidopp @kevin-wangzefeng @foxish
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue update list of vailable resources Hi, kubectl get --help produce a list of resource types and aliases : ``` Valid resource types include: * clusters (valid only for federation apiservers) * componentstatuses (aka 'cs') ... ``` ``` release-note Update the list of resources in kubectl get --help ``` The list is currently outdated (for exemple missing networkpolicy). http://kubernetes.io/docs/user-guide/kubectl-overview/#resource-types has the same data and is also outdated. The patch updates these 2 lists.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Proposal for external dynamic provisioners @kubernetes/sig-storage
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Use PATCH to resume/pause deployment Alternative version of: https://github.com/kubernetes/kubernetes/pull/30919 Fixes: https://github.com/kubernetes/kubernetes/issues/20437
-
derekwaynecarr authored
-
gmarek authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue test: check for desired Deployment status prior to listing RSs Fixes the panic in https://github.com/kubernetes/kubernetes/issues/35337 @mfojtik
-
Clayton Coleman authored
-
Clayton Coleman authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Update heketi dependency to release3. commit hash#28b5cc4cc6d2b9bdfa91ed1b93efaab4931aa697 Signed-off-by: Humble Chirammal hchiramm@redhat.com
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue make localupcluster work with RBAC enabled When `ENABLE_RBAC=true` is set to true, `local-up-cluster` fails because it can't reach the endpoint (get a 403). This changes to an endpoint that the default policy allows anyone to see.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Misc master and federation cleanups - misc small cleanups - make ServerRunOption embeddings explicit in order to make the technical debt in our plumbing code visible.
-
Michal Fojtik authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Better logging and support for running non-default version from etcd image Ref #20504
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Remove stale volumes if endpoint/svc creation fails. Remove stale volumes if endpoint/svc creation fails. Signed-off-by: Humble Chirammal hchiramm@redhat.com
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Increase etcd3 compaction frequency @xiang90 @hongchaodeng - we already talked about it
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix conflict in kubemark
-
Dr. Stefan Schimanski authored
-
Dr. Stefan Schimanski authored
-