- 01 Feb, 2017 18 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40638, 40742, 40710, 40718, 40763) Reduce log noise when aws cloud cannot find public-ip4 metadata **What this PR does / why we need it**: The PR removes excessive log spam produced by the aws cloud provider for normal operating conditions. **Which issue this PR fixes** fixes https://github.com/kubernetes/kubernetes/issues/23155 **Special notes for your reviewer**: **Release note**: ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40638, 40742, 40710, 40718, 40763) Fix formatting issue of secret volume describer Fixing a `kubectl describe` bug **Before**: ```yaml ... Volumes: default-token-z7g96: Type: Secret (a volume populated by a Secret) SecretName: Optional: %v %!(EXTRA string=default-token-z7g96, bool=false)QoS Class: BestEffort ... ``` **After**: ```yaml ... Volumes: default-token-z7g96: Type: Secret (a volume populated by a Secret) SecretName: default-token-z7g96 Optional: false QoS Class: BestEffort ... ``` -
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40638, 40742, 40710, 40718, 40763) move client/record An attempt at moving client/record to client-go. It's proving very stubborn and needs a lot manual intervention and near as I can tell, no one actually gets any benefit from the sink and source complexity it adds. @sttts @caesarchaoxu
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40638, 40742, 40710, 40718, 40763) move pkg/storage to apiserver Mechanical move of `pkg/storage` (not sub packages) to `k8s.io/apiserver`. @sttts
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue kuberuntime: remove the kubernetesManagedLabel label The CRI shim should be responsible for returning only those containers/sandboxes created through CRI. Remove this label in kubelet.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40111, 40368, 40342, 40274, 39443) refactor hostport logic Refactor hostport logic to avoid using api.Pod object directly.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40111, 40368, 40342, 40274, 39443) Libvirt-coreos - Add execute permissions to kubernetes/bin **What this PR does / why we need it**: The master node was failing to start for me due to the permission errors on the kubernetes server binaries. **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 NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40111, 40368, 40342, 40274, 39443) Eliminate "Unknown service type: ExternalName" When creating an ExternalName service, rest.go still generate the warning message "Unknown service type: ExternalName". This should be eliminated as this type of service is supported now.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40111, 40368, 40342, 40274, 39443) Change OPENSTACK_IMAGE_NAME to be more specific There may already be other images in the cloud named CentOS7, but since we are fetching a very specific version (1604) we should go ahead and make the image name very specific as well. **What this PR does / why we need it**: Some clouds already have `Centos7` as an image that is available, however it may not be the *specific* version that openstack-heat looks for and downloads from CentOS. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: **Special notes for your reviewer**: **Release note**: ```release-note OpenStack-Heat will now look for an image named "CentOS-7-x86_64-GenericCloud-1604". To restore the previous behavior set OPENSTACK_IMAGE_NAME="CentOS7" ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add printer#EnsurePrintHeaders method This patch adds a new `EnsurePrintHeaders` method to the HumanReadablePrinter `ResourcePrinter`, which allows headers to be printed in cases where multiple lists of the same resource are printed consecutively, but are separated by non-printer related information. Related downstream PR: https://github.com/openshift/origin/pull/12528 **Release note**: ```release-note release-note-none ``` cc @fabianofranz @AdoHe
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix issue template to read more clearly **What this PR does / why we need it**: This PR fixes the github issue template. Currently the wording is very awkward.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Preventing nil pointer reference in client_config When a user tries to set the `extensions` map in the kube config, loading of the client config causes nil pointer exception because the `Context`, `Cluster`, `AuthInfo` objects are created without initializing the extensions map. This PR attempts to fix that.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Update 1.6.0-alpha.1 changelog clean up some auth-related changelogs
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fix kubectl->kubefed typo **What this PR does / why we need it**: The kubefed CLI too had a typo in it's example text. **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**:
-
deads2k authored
-
deads2k authored
-
deads2k authored
-
deads2k authored
-
- 31 Jan, 2017 22 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40527, 40738, 39366, 40609, 40748) Bump nginx ingress version to 0.9.0-beta.1
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40527, 40738, 39366, 40609, 40748) Removed Flaky tag from PV e2e, added [Volume] to disruptive PV e2e **What this PR does / why we need it**: Removes `[Flaky]` from PV e2e testing. Flakes were due to interference from an external test disrupting a cluster node. The test has been [removed](https://github.com/rmmh/kubernetes/commit/9f36c032de8c45beb02412d5abf870943023f6c4) and the flakes have [cleared](https://k8s-testgrid.appspot.com/google-gce#gce-flaky). Secondly, added `[Volume]` tag to PV disruptive tests. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #39119 **Release note**: NONE ```release-note ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40527, 40738, 39366, 40609, 40748) Log rectification Log error, modify
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40527, 40738, 39366, 40609, 40748) move portforward to client-go Second to last one. I had to split some tests like we did for apimachinery, but they still run in kubernetes. @sttts
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 40527, 40738, 39366, 40609, 40748) pkg/kubelet/dockertools/docker_manager.go: removing unused stuff This PR removes unused constants and variables. I checked that neither kubernetes nor openshift code aren't using them.
-
Derek Carr authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue add myself to build and test approvers
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add flag to node e2e test specifying location of ssh privkey **What this PR does / why we need it**: in CI, the ssh private key is not always located at `$HOME/.ssh`, so it's helpful to be able to override it. @krzyzacy here's my resurrected change. I'm not sure why I neglected to follow-through on it originally. **Release note**: ```release-note NONE ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue add deads2k to some cmd packages Selectively adding myself to cmd packages for commands that I've authored or significantly touched.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue test/images/mount-tester: ensure exec binary is o+rx The `mount-tester` image is currently used as a base layer for other test images (like `mounttest-user`) which perform uid/gid changes. However, the binary built in here just follows local umask, and currently is ``` -rwxr-x--- 1 root root 2052704 May 19 2016 mt ``` This commit adds an explicit chmod on the binary to make sure uid/gid tests can still run it as "others".
-
deads2k authored
-
Mike Danese authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 38772, 38797, 40732, 40740) Prevent spurious diff in all generated clients when adding new group/version Including custom arguments in the generated file comment means adding any new group/version results in a diff of all generated clients in all groups/versions @ncdc PTAL
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 38772, 38797, 40732, 40740) Sync client-go – third try Follow-up of https://github.com/kubernetes/kubernetes/pull/40692 & https://github.com/kubernetes/kubernetes/pull/40699. Approval and lgtm from https://github.com/kubernetes/kubernetes/pull/40692.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 38772, 38797, 40732, 40740) Synchronous spellcheck for pkg/volume/* **What this PR does / why we need it**: Increase code readability **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**: Minor contribution **Release note**: ```release-note ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue (batch tested with PRs 38772, 38797, 40732, 40740) AWS: Deprecate the bash deployment **What this PR does / why we need it**: Add a strong deprecation warning to the `kube-up.sh` AWS deployment. **Release note**: ```release-note The bash AWS deployment via kube-up.sh has been deprecated. See http://kubernetes.io/docs/getting-started-guides/aws/ for alternatives. ```
-
deads2k authored
-
bprashanth authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue refactor pv e2e code to improve readability **What this PR does / why we need it**: Moved the helper functions out of _persistent_volumes.go_ to a new file, _pvutil.go_, in order to improve readability and make it easier to add new tests. Also, all pod delete code now calls the same helper function `deletePodWithWait`. **Release note**: ``` NONE ```
-
Jordan Liggitt authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue e2e test should fail if err==timeout If err==timeout, it means the replicaset (the owner) is not deleted after 30s, which indicates a bug, so the e2e test should fail.
-
Jordan Liggitt authored
-