- 05 Sep, 2016 22 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add e2e test for Source IP preservation (pod to service cluster IP) Working on #27134. This PR added the e2e test for source ip preservation (pod to service cluster IP) in service.go. Test scenario described as below: - Pick two different nodes in cluster. - Create a clusterIP type service. - Create an echo server, which echoes back client IP, to be part of the service. - Create a client on another node. Hit the server through service cluster IP. - Verify the source IP. @girishkalele @freehan
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue test/e2e: fix flake for on delete on namespace <!-- 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 NONE ``` Fixes #27532
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Improve doc for the fake client Improve doc in this type. cc @derekwaynecarr @ncdc @deads2k
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Update build docs to include path for scripts. <!-- 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 fix updates the build docs (`build/README.md`) to include the path of `build/` for shell scripts (like `run.sh`, `shell.sh`). The reason is that while trying to follow the `build/README.md` to build the kubernetes, it is not obvious that all the scripts, e.g., `run.sh make`, `shell.sh`, etc. needs to be executed from the root directory (vs. executed from the `build/` directory). In other words, the executation should be: ``` build/run.sh make build/make-clean.sh ... ``` This fix adds `build/` so that it is easy for user to follow the steps. **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 ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add go-bindata as development dependency **What this PR does / why we need it**: Small update in the developer notes (a go dependency was missing, which I noticed when setting up my own development environment) **Which issue this PR fixes**: Not applicable **Special notes for your reviewer**: **Release note**: N/A ```release-note ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Typos and englishify pkg/cloudprovider + pkg/dns + pkg/kubectl **What this PR does / why we need it**: Just fixed some typos + "englishify" in pkg/cloudprovider + pkg/dns + pkg/kubectl **Which issue this PR fixes** : None **Special notes for your reviewer**: It's just fixes typos **Release note**: `NONE`
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Bumped memory limit for resource consumer. Fixes #31591. Bumped memory limit for resource consumer from 100 MB to 200 MB, increased request sizes so that the number of consumers will be smaller. Fixes #31591.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue NodeController listing nodes from apiserver cache Ref #31981 This is addressing this particular failure: https://github.com/kubernetes/kubernetes/issues/31981#issuecomment-244432054
-
Wojciech Tyczynski authored
-
Marek Grabowski authored
Add a log to help debug #31981
-
gmarek authored
-
Marek Grabowski authored
Fix density test
-
Wojciech Tyczynski authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Increase GC timeout for RCs bigger than 40k cc @caesarxuchao
-
gmarek authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Add few more logs to the Load test Useful to debug enormous-cluster failures.
-
gmarek authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Increase the threshold for apiserver CPU for 500 node kubemark Fix #32059
-
gmarek authored
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Enable Rescheduler by default Rescheduler is stable - e2e test is passing constantly for >1week. ref #29023 ```release-note Rescheduler which ensures that critical pods are always scheduled enabled by default in GCE. ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Unshare cluster, store in each test suite For https://github.com/kubernetes/kubernetes/issues/31962 and https://github.com/kubernetes/kubernetes/issues/31300. Just try to unshare it to minimize interface and focus on correctness of logic.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Allow IP addresses to be used as node names Fixes #32050 In `pkg/api/validation/validation.go`, there's already `ValidateNodeName()`, so using `ValidateDNS1123Label()` was ujustified. Also, it broke service endpoints in `hack/local-up-cluster.sh` and some other software that doesn't want to do extra work to provide resolvable hostnames for the nodes of test clusters, e.g. https://github.com/metral/nanokube https://github.com/sttts/kubernetes-dind-cluster And probably others. On affected installs, service latency e2e test hangs, see e.g. https://github.com/kubernetes/kubernetes/issues/30632#issuecomment-244431797 DNS1123Label suggestion is by @thockin, see [here](https://github.com/kubernetes/kubernetes/pull/30301#issuecomment-239602268). I think it's wrong though for aforementioned reasons :( PR that broke node names: #31311
-
- 04 Sep, 2016 10 commits
-
-
Ivan Shvedunov authored
Fixes #32050
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue The first letter should be small in errors.New <!-- 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 ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Fixes the master messaging <!-- 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**: Corrects the master unit messaging state to correctly reflect that kubernetes is active **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #32010 **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 None ``` Proof: 
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Skip gofmt for staging/ directory Don't run gofmt for example on: staging/src/k8s.io/client-go/1.4/_vendor Fixes #31875
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue fix deleteClaim
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Make it easier to debug conversion mismatches @thockin made finding mismatches easier
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Removed unused imports from mesos contrib. Removed the unused imports from the "main.go"s. Fixes #31681
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Bump ClusterAutoscaler to 0.3.0-beta6 Contains https://github.com/kubernetes/contrib/pull/1685.
-
Jeff Lowdermilk authored
Revert "Check server version when running scheduled job e2e tests"
-
Jeff Lowdermilk authored
-
- 03 Sep, 2016 8 commits
-
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue kubelet_test.go: use assertions Switch most of the tests in this file to using the assert library (`github.com/stretchr/testify/assert`) in the tests for better readability and less code in general.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Snapshotting design doc <!-- 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**: Design doc for volume snapshotting feature (alpha) **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 ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue The first letter is small <!-- 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 ```
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Check server version when running scheduled job e2e tests @janetkuo this is the promised followup to #30575 which is checking minimal server version when running ScheduledJob e2e's.
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Make it possible to set test args
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue retry oauth token fetch in gce cloudprovider Fixes https://github.com/kubernetes/kubernetes/issues/31560 The oauth client fetches a token on the initial request of that client. Let's warm the cache. cc @goltermann @lavalamp
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue update e2e test for federation replicaset controlelr e2e test to verify replicases synced to underlying clusters. @quinton-hoole @nikhiljindal @deepak-vij @kshafiee @mwielgus
-
Kubernetes Submit Queue authored
Automatic merge from submit-queue Run copy.sh to update client-go for pvcs Following up https://github.com/kubernetes/kubernetes/pull/31834 to copy the changes to client-go Ought to be v1.4, only touches client-go. (same reasoning as here: https://github.com/kubernetes/kubernetes/pull/31644#issuecomment-243274461)
-