k8s-merge-robot
700fbd0543
Merge pull request #27461 from euank/e2e-rkt-runtime
...
Automatic merge from submit-queue
e2e: Allow skipping tests for specific runtimes, skip a few tests under rkt
The main benefit of this is that it gives a developer more useful output (more signal to noise) for things that are known broken on that runtime.
cc @kubernetes/rktnetes-maintainers , @ixdy
I'll run this PR through our jenkins and make sure things look happy and compare to the e2e results for this PR.
2016-06-26 18:47:42 -07:00
k8s-merge-robot
ff7c280200
Merge pull request #27163 from ixdy/curl-flakes
...
Automatic merge from submit-queue
Pass --keepalive-time 2 to curl to fix unexpected EOF flakes
I hope this fixes #22967 .
2016-06-26 13:35:03 -07:00
k8s-merge-robot
847ef7255c
Merge pull request #27250 from xiangpengzhao/fix_docproxy
...
Automatic merge from submit-queue
Set network related flags for container gen-swagger-docs
When running `hack/update-api-reference-docs.sh`, I get failure messages as below. This is because:
My env is behind a proxy, I have to input username/password in a page first for authentication before visiting internet. But I have no any way to visit that page in GUI mode in the container gen-swagger-docs. Can we run the container gen-swagger-docs using host network and passing an env variable `https_proxy` to it? I try this way and it works well. This would be helpful for me and other developers who may have this issue.
cc @caesarxuchao Thanks!
```
root@vm:/home/paas/zxp/code/k8s/fork/kubernetes# hack/update-api-reference-docs.sh
Note: This assumes that swagger spec has been updated. Please run hack/update-swagger-spec.sh to ensure that.
Generating api reference docs at /home/paas/zxp/code/k8s/fork/kubernetes/_output/generated_html
Reading swagger spec from: /home/paas/zxp/code/k8s/fork/kubernetes/api/swagger-spec/
--2016-06-09 16:35:26-- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/api/v1/register.go
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... failed: Name or service not known.
wget: unable to resolve host address ‘raw.githubusercontent.com’
--2016-06-09 16:36:06-- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/api/v1/register.go
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... failed: Name or service not known.
wget: unable to resolve host address ‘raw.githubusercontent.com’
--2016-06-09 16:36:46-- https://raw.githubusercontent.com/kubernetes/kubernetes/master/pkg/api/v1/register.go
Resolving raw.githubusercontent.com (raw.githubusercontent.com)... failed: Name or service not known.
wget: unable to resolve host address ‘raw.githubusercontent.com’
!!! Error in hack/update-api-reference-docs.sh:71
'docker run ${user_flags} --rm -v "${TMP_IN_HOST}":/output:z -v "${SWAGGER_PATH}":/swagger-source:z gcr.io/google_containers/gen-swagger-docs:v5 "${SWAGGER_JSON_NAME}" "${REGISTER_FILE_URL}"' exited with status 1
Call stack:
1: hack/update-api-reference-docs.sh:71 main(...)
Exiting with status 1
```
2016-06-25 19:49:54 -07:00
k8s-merge-robot
7d3d784655
Merge pull request #27902 from caesarxuchao/fix-test-cmd
...
Automatic merge from submit-queue
fix test-cmd multi-resource test
See inline descriptions.
2016-06-25 14:47:30 -07:00
k8s-merge-robot
951b591716
Merge pull request #26722 from deads2k/local-patch
...
Automatic merge from submit-queue
let patch use --local flag like `kubectl set image`
Adds the concept of a `--local` flag to `kubectl patch`. This flag is similar to `kubectl set image -f --local` because it will use the content of the file as the input to the patch operation instead of using the file content to file resource/name tuples.
This pull lets you run something like `kubectl create deployment --dry-run -o yaml | kubectl set volume --local -f - -o yaml | kubectl patch --local -f - --patch {} | kubectl create -f -`
As proof that it works, you can run against a local file just to mess around with it, but `--local -f -` is the most likely case.
```
$kubectl patch --local -f pkg/api/validation/testdata/v1/validPod.yaml --patch='{"spec": {"restartPolicy":"Never"}}'
apiVersion: v1
kind: Pod
metadata:
creationTimestamp: null
labels:
name: redis-master
name: name
spec:
containers:
- args:
- this
- is
- an
- ok
- command
image: gcr.io/fake_project/fake_image:fake_tag
name: master
resources: {}
restartPolicy: Never
status: {}
```
This is useful for setting rarely used, but immutable fields from `kubectl create` or `kubectl convert` without dropping to an interactive editor.
Some discussion here: https://github.com/kubernetes/kubernetes/issues/21648#issuecomment-218579977
@smarterclayton @kubernetes/kubectl
@eparis @soltysh @stevekuznetsov we've talked about this separately
2016-06-25 10:00:41 -07:00
k8s-merge-robot
1aefa19ab6
Merge pull request #26449 from aanm/fixing-ipv6-parse
...
Automatic merge from submit-queue
Make local-up-cluster.sh IPv6 friendly
Added a new environment variable `API_HOST_IP`. `API_HOST_IP` allows the
user to specify an IPv6 address that is parsable by Golang. `API_HOST` on
the other hand allows the user to specify the IPv6 address to be used in
a URL's format as described in RFC2732.
Example:
```bash
API_HOST_IP="FEDC:BA98:7654:3210:FEDC:BA98:7654:3210"
API_HOST="[FEDC:BA98:7654:3210:FEDC:BA98:7654:3210]
```
or
```bash
API_HOST_IP="FEDC:BA98:7654:3210:FEDC:BA98:7654:3210"
API_HOST="[${API_HOST_IP}]"
```
Signed-off-by: André Martins <aanm90@gmail.com>
2016-06-25 06:34:53 -07:00
k8s-merge-robot
0e28a01661
Merge pull request #26439 from aanm/adding-g-curl-option
...
Automatic merge from submit-queue
Add -g curl option to hack/lib/util.sh wait_for_url
Add `-g` curl option
```
This option switches off the "URL globbing parser". When you set this option,
you can specify URLs that contain the letters {}[] without having them being
interpreted by curl itself. Note that these letters are not normal legal URL
contents but they should be encoded according to the URI standard.
```
> Why?
So that IPv6 addresses with `[` and `]`, like `[::1]:8080`, work with that script.
Signed-off-by: André Martins <aanm90@gmail.com>
2016-06-25 05:59:09 -07:00
k8s-merge-robot
b4c81a073a
Merge pull request #25709 from asalkeld/null-deref
...
Automatic merge from submit-queue
Check for an empty value in validateField
```release-note
* Fix a panic when args was not supplied with any values.
```
reflect.TypeOf() can take a nil (it then returns a nil), but
Kind() panics on a nil.
Now the user gets the following output:
./kubectl.sh --server=http://localhost:8080 create -f ../../test-files/test-rc.yaml
error validating "../../test-files/test-rc.yaml": error validating data: unexpected nil value for field spec.template.spec.containers[0].args[0]; if you choose to ignore these errors, turn validation off with --validate=false
fixes #20627 and fixes #26927
2016-06-25 02:31:01 -07:00
k8s-merge-robot
7c355e18a7
Merge pull request #25085 from metral/recursive-edit
...
Automatic merge from submit-queue
enable recursive processing in kubectl edit
This PR was split out of https://github.com/kubernetes/kubernetes/pull/23673 per @deads2k's suggestion: https://github.com/kubernetes/kubernetes/pull/23673#discussion_r61291178
It makes use of the recursive processing of a directory in `kubectl edit`
2016-06-24 23:59:54 -07:00
k8s-merge-robot
fc1937f68f
Merge pull request #20273 from kargakis/allow-scaling-paused-deployments
...
Automatic merge from submit-queue
Proportionally scale paused and rolling deployments
Enable paused and rolling deployments to be proportionally scaled.
Also have cleanup policy work for paused deployments.
Fixes #20853
Fixes #20966
Fixes #20754
@bgrant0607 @janetkuo @ironcladlou @nikhiljindal
<!-- Reviewable:start -->
---
This change is [<img src="http://reviewable.k8s.io/review_button.svg " height="35" align="absmiddle" alt="Reviewable"/>](http://reviewable.k8s.io/reviews/kubernetes/kubernetes/20273 )
<!-- Reviewable:end -->
2016-06-24 19:41:51 -07:00
k8s-merge-robot
ba7e0b4dad
Merge pull request #27482 from quinton-hoole/2016-06-15-build-darwin-test-binaries-on-os-x
...
Automatic merge from submit-queue
Build Darwin test binaries on OS X when KUBE_FASTBUILD is set
Without this, on OS X, test binaries would not be built for the local ARCH, and test scripts fail with an obscure error due to not being able to find the correct binary to run.
This makes the behavior on OS X more consistent with Linux.
Tested on OS X and Linux.
2016-06-24 13:57:04 -07:00
k8s-merge-robot
120d2519ff
Merge pull request #27025 from asalkeld/type-o-number-or-name
...
Automatic merge from submit-queue
Fix type-o in definitions.html
Simple typing error.
fixes #14834
2016-06-24 13:56:51 -07:00
Manjunath A Kumatagi
ba1d201a4c
Need doc updated with export KUBERNETES_PROVIDER=local in local-up-cluster.sh script
2016-06-23 06:59:41 -04:00
k8s-merge-robot
a826ed0b04
Merge pull request #27743 from wonderfly/gci-preview-test
...
Automatic merge from submit-queue
e2e-runner: Improve the logic of detecting Docker releases
Apparently it didn't handle GitHub prereleases well. Also switch from
`JENKINS_GCI_IMAGE_TYPE` to `JENKINS_GCI_IMAGE_FAMILY` following up #27083 .
@dchen1107 @fejta Can you review?
cc/ @kubernetes/goog-image
2016-06-22 21:17:05 -07:00
k8s-merge-robot
443dab4855
Merge pull request #27894 from wonderfly/image_family
...
Automatic merge from submit-queue
e2e-runner: Get rid of the uses of JENKINS_GCI_IMAGE_TYPE
It's now `JENKINS_GCI_IMAGE_FAMILY`.
@fejta This is a quick bugfix which should have been done in #27083 . Can you review?
cc/ @kubernetes/goog-image The GCI e2e jobs are failing due to this.
2016-06-22 19:59:08 -07:00
Kris
233ea2f1ed
Add a missing $ for bash variable evaluation
2016-06-22 15:45:32 -07:00
Chao Xu
27f4eca5b3
fix test-cmd multi-resource test
2016-06-22 14:58:07 -07:00
Daniel Wang
cc8aaf195d
e2e-runner: Get rid of the uses of JENKINS_GCI_IMAGE_TYPE
...
It's now `JENKINS_GCI_IMAGE_FAMILY`.
2016-06-22 13:02:48 -07:00
Madhusudan.C.S
ea9cedab3a
Dumbed down version of providing a separate IP range for each cluster in the federation.
2016-06-22 12:48:47 -07:00
David McMahon
610234dc47
Move KUBE_GIT_UPSTREAM out of init.sh and into *-munge-docs.sh.
...
It is only used in those 2 scripts and this way we can set the value dynamically.
Clean up a bit too (80col, formatting)
2016-06-21 16:25:45 -07:00
Joe Finney
ab4a65c10a
Remove all traces of travis.
2016-06-21 15:58:34 -07:00
k8s-merge-robot
0e562d29c7
Merge pull request #26932 from aaronlevy/conformance-fix
...
Automatic merge from submit-queue
Allow conformance tests to run on non-GCE providers
fixes https://github.com/kubernetes/kubernetes/issues/26869
Creates a skeleton provider which has all the required function stubs -- but will allow a previously set "skeleton" KUBERNETES_PROVIDER to not be overriden with "gce".
2016-06-21 14:30:58 -07:00
Maciej Szulik
feb43c5e6d
Reapply ScheduledJob tests ( 2ab885a53a
)
2016-06-21 14:55:00 +02:00
k8s-merge-robot
ee35555cb6
Merge pull request #27570 from Random-Liu/add-runtime-request-timeout-flag
...
Automatic merge from submit-queue
Add runtime-request-timeout kubelet flag.
XRef #23563 .
Addresses https://github.com/kubernetes/kubernetes/issues/27388#issuecomment-226570083 .
Add a new kubelet flag `runtime-request-timeout`, and set to 2 minutes by default.
Now the flag only affects dockertools, rkt may also want to set request timeout according to the flag. @yifan-gu
This PR also removed the timeout for all long running operations to avoid issues like #27588 and #26122 .
@yujuhong @rrati
/cc @kubernetes/sig-node
[]()
2016-06-21 01:26:54 -07:00
xiangpengzhao
57011da088
Use host network for container gen-swagger-docs and set https_proxy if behind a proxy
2016-06-20 22:00:00 -04:00
Daniel Wang
93189dd569
e2e-runner: Improve the logic of detecting Docker releases
...
Apparently it didn't handle GitHub prereleases well. Also switch from
`JENKINS_GCI_IMAGE_TYPE` to `JENKINS_GCI_IMAGE_FAMILY` following up #27083 .
2016-06-20 17:51:20 -07:00
k8s-merge-robot
38b501806f
Merge pull request #27083 from wonderfly/update_gci_bucket
...
Automatic merge from submit-queue
Get GCI images from image family
The staging images are now created with image families, so we can get rid of the
image indices stored in GCS. Also, update the GCS bucket used for staging
images.
@Amey-D @spxtr Can you review?
cc/ @kubernetes/goog-image
2016-06-20 16:07:57 -07:00
k8s-merge-robot
96e2224851
Merge pull request #27706 from sttts/sttts-fix-api-ref-docs
...
Automatic merge from submit-queue
Fix hack/update-api-reference-docs on master and (future) branches
- update toplevel api object pattern in swagger doc script: the format of the `register.go` file was changed in e3af3451c8
. This fixes the bleeding.
- make `hack/update-api-reference-docs.sh` independent from master during **container run**. Container build is still dependent on master, but container rebuilds never happen I guess on a branch.
A rebuild of `gcr.io/google_containers/gen-swagger-docs:v6` is necessary, plus a cherry-pick onto the v1.3 branch.
Fixes the symptoms of #27685 and makes sure future branches do not break again.
2016-06-20 15:26:08 -07:00
Mike Danese
af0177efea
cleanup hack/verify-govet.sh to throttle process creation
...
Running this check as it is on master spikes my load average to 294.19
and looks up my workstation.
2016-06-20 14:16:43 -07:00
Daniel Wang
61b37e9338
Get GCI images from image family
...
The staging images are now created with image families, so we can get rid of the
image indices stored in GCS. Also, get images based on milestone number instead
of "image type".
2016-06-20 14:05:04 -07:00
Dr. Stefan Schimanski
cbb885c403
Revert "disable broken verifier"
...
This reverts commit 5b13a29e2a
.
2016-06-20 22:02:27 +02:00
Dr. Stefan Schimanski
6d75c01b1d
Fix hack/update-api-reference-docs.sh
...
- update toplevel api object pattern in swagger doc script
- make hack/update-api-reference-docs.sh indepenent from master
2016-06-20 22:02:04 +02:00
Michail Kargakis
f3d2e3ff22
controller: proportionally scale paused and rolling deployments
...
Enable paused and rolling deployments to be proportionally scaled.
Also have cleanup policy work for paused deployments.
2016-06-20 12:13:35 +02:00
markturansky
16ec36c591
added toggle to disable dynamic provisioning
2016-06-20 01:15:23 -04:00
k8s-merge-robot
58eae670b9
Merge pull request #27231 from brendandburns/test-cmd.sh
...
Automatic merge from submit-queue
Add test-cmd.sh tests for 3rd party resources.
Adding more test coverage, this time of the client side behavior.
[]()
2016-06-19 17:28:31 -07:00
Daniel Smith
5b13a29e2a
disable broken verifier
2016-06-18 23:04:32 -07:00
k8s-merge-robot
637734f003
Merge pull request #27047 from luxas/enable-ppc64le
...
Automatic merge from submit-queue
Enable all ppc64le builds, except for hyperkube
Partially fixes : #25886
Talked to @Pensu, and all other binaries seem to work fine
@david-mcmahon @ixdy @Pensu @smarterclayton
2016-06-18 16:32:19 -07:00
k8s-merge-robot
13cd6475c9
Merge pull request #26917 from fabioy/fix_multi_migs
...
Automatic merge from submit-queue
Handle multiple MIGs (single-zone) properly in GKE scripts.
Change the scripts for GKE to handle multiple node pools (MIGs) in the same zone.
Fixes https://github.com/kubernetes/test-infra/issues/100 .
[]()
2016-06-18 11:36:08 -07:00
k8s-merge-robot
48b255d424
Merge pull request #26813 from wonderfly/choose_docker_version
...
Automatic merge from submit-queue
Prep for continuous Docker validation test
```release-note
Add a test config variable to specify desired Docker version to run on GCI.
```
We want to continuously validate Docker releases (#25215 ), on GCI. This change
adds a new test config variable, `KUBE_GCI_DOCKER_VERSION`, through which we can
specify which version of Docker we want to run on the master and nodes. This
change also patches the Jenkins e2e-runner with the ability to fetch the latest
Docker (pre)release, and sets the aforementioned variable accordingly.
Tested on my local Jenkins instance that was able to start a cluster with the latest Docker version (different from installed version) running on both master and nodes.
@dchen1107 Can you review?
cc/ @andyzheng0831 for changes in `cluster/gce/gci/helper.sh`, and @ixdy @spxtr for changes to the Jenkins e2e-runner
cc/ @kubernetes/goog-image
2016-06-18 11:00:55 -07:00
Random-Liu
52ebd4ecf1
Add runtime-request-timeout kubelet flag.
2016-06-17 18:18:41 -07:00
k8s-merge-robot
2266c4eb1d
Merge pull request #27371 from andyzheng0831/network-plugin
...
Automatic merge from submit-queue
Revert "Revert "GCI: add support for network plugin""
PR #27027 added the network plugin support in GCI config, but later a bug in the network plugin broke e2e tests (see issue #27118 ). The bug was fixed by #27141 and we have been repeatedly run the serial e2e tests more than 10 times to verify the fix. Now it should be safe to put the GCI network plugin support back.
We will first merge in the master branch and monitor the Jenkins serial tests for a while and then cherry-pick it into release-1.3 branch.
2016-06-17 14:03:18 -07:00
Mike Danese
2c93ea5dcc
Merge pull request #27289 from mikedanese/split-verify
...
split verify out of unit/integration suite
2016-06-16 19:37:06 -07:00
Mike Danese
ee34c7695f
split verify out of unit/integration suite
2016-06-16 18:23:03 -07:00
k8s-merge-robot
8a89ea6058
Merge pull request #27568 from lavalamp/faster
...
Automatic merge from submit-queue
Make unit tests faster
2016-06-16 16:11:05 -07:00
k8s-merge-robot
6e3d37e314
Merge pull request #26399 from ixdy/jenkins-unittest-build
...
Automatic merge from submit-queue
Avoid duplicate building in Jenkins unit/integration job
Partially adopts #26392 : don't run `hack/build-go.sh` in the unit/integration job, since we do that already for e2e.
We do need to still build kubectl, however, so do that in `hack/test-cmd.sh`.
x-ref #25940
2016-06-16 16:11:01 -07:00
Daniel Smith
22eac7e56a
stop double testing, extra coverage not worth the time
2016-06-16 14:44:25 -07:00
Daniel Smith
8af08f90b5
remove unused prefix code, fix comment
2016-06-16 14:29:40 -07:00
Jeff Grafton
e880dbfd25
Update verify scripts to clean up even on failures
2016-06-16 11:45:26 -07:00
Daniel Smith
4a040d11ca
Merge pull request #26032 from pmorie/improve-tests
...
Testing improvements
2016-06-15 15:44:33 -07:00
k8s-merge-robot
38cd0d078e
Merge pull request #27311 from vmware/photon-controller-fixes
...
Automatic merge from submit-queue
Fixes and improvements to Photon Controller backend for kube-up
- Improve reliability of network address detection by using MAC
address. VMware has a MAC OUI that reliably distinguishes the VM's
NICs from the other NICs (like the CBR). This doesn't rely on the
unreliable reporting of the portgroup.
- Persist route changes. We configure routes on the master and nodes,
but previously we didn't persist them so they didn't last across
reboots. This persists them in /etc/network/interfaces
- Fix regression that didn't configure auth for kube-apiserver with
Photon Controller.
- Reliably run apt-get update: Not doing this can cause apt to fail.
- Remove unused nginx config in salt
2016-06-15 14:46:54 -07:00
Quinton Hoole
5c546a187b
Build Darwin test binaries on OS X.
2016-06-15 14:42:04 -07:00
Lucas Käldström
9673ca16b2
Enable builds for all ppc64le binaries except hyperkube
2016-06-15 22:59:25 +03:00
Euan Kemp
fb56095683
e2e: Add container runtime flag
2016-06-15 11:50:58 -07:00
k8s-merge-robot
6ebf168bc2
Merge pull request #27437 from jsafrane/local-up-syncclaim
...
Automatic merge from submit-queue
Update default value of CLAIM_BINDER_SYNC_PERIOD.
It's 15 seconds now, see #26414 and #24236 .
2016-06-15 10:57:21 -07:00
Jan Safranek
67e5f5c001
Update default value of CLAIM_BINDER_SYNC_PERIOD.
...
It's 15 seconds now, see #26414 .
2016-06-15 15:25:55 +02:00
Wojciech Tyczynski
e0498ed76a
Make timeout for starting system pods configurable
2016-06-15 11:25:42 +02:00
Alain Roy
5740ceb7f6
Fixes and improvements to Photon Controller backend for kube-up
...
- Improve reliability of network address detection by using MAC
address. VMware has a MAC OUI that reliably distinguishes the VM's
NICs from the other NICs (like the CBR). This doesn't rely on the
unreliable reporting of the portgroup.
- Persist route changes. We configure routes on the master and nodes,
but previously we didn't persist them so they didn't last across
reboots. This persists them in /etc/network/interfaces
- Fix regression that didn't configure auth for kube-apiserver with
Photon Controller.
- Reliably run apt-get update: Not doing this can cause apt to fail.
- Remove unused nginx config in salt
2016-06-14 15:40:33 -07:00
deads2k
ac64404d86
let patch use local file content to mutate
2016-06-14 14:38:00 -04:00
Andy Zheng
e6b744c85a
Revert "Revert "GCI: add support for network plugin""
...
This reverts commit 8207eddd99
.
2016-06-14 09:52:34 -07:00
Paul Morie
25f25cbafd
Improve debugging experience for single integration test case
2016-06-14 12:51:02 -04:00
k8s-merge-robot
c7e3b2f676
Merge pull request #27252 from mfanjie/fix-ensuredns
...
Automatic merge from submit-queue
federation: fix dns provider initialization issues
This PR is based on the integration test with Google DNS API. This is the first time of full integration test.
So multiple issues was found and I combined all of them in this single PR
1. add dns provider initialization and add ensureDns call when removing federation service.
2. add new flags federation-name and zone-name to controller manager, both are used as part of the dns record name
3. fix assertion failure at rrsets.go#L61, which will cause panic
4. change getFederationDNSZoneName to get zoneName from config instead of hard code
5. change logic of ensureDnsRrsets, only add new dns record when endpointReachable(set to true when ready address is catched) is true
6. fix bug in processEndpointUpdate, only call ensuredns when ready address is caught
7. change behavior of syncService, there is cases that endpoint is created before ingress IP assignment, so before there is defect for this case, ensureDns was not called when service being updated, so if Ingress IP is assigned after endpoint ready address is caught, the corresponding A records can not be created
8. add a checking before update federation service
@nikhiljindal , can you help to add 1.3 milestone when @quinton-hoole is on leave?
Thanks.
[]()
2016-06-14 03:20:13 -07:00
mfanjie
318f37ce0f
add federation-name and zone-name as controller manager flags
2016-06-14 15:36:37 +08:00
nikhiljindal
9b2b763ab0
Fixing references to federated-context and federation-e2e
2016-06-13 16:43:55 -07:00
André Martins
0ced1ddaee
Make local-up-cluster.sh IPv6 friendly
...
Added a new environment variable API_HOST_IP. API_HOST_IP allows the
user to specify an IPv6 address that is parsable by Golang. API_HOST on
the other hand allows the user to specify the IPv6 address to be used in
a URL's format as described in RFC2732.
Example:
API_HOST_IP="FEDC:BA98:7654:3210:FEDC:BA98:7654:3210"
API_HOST="[FEDC:BA98:7654:3210:FEDC:BA98:7654:3210]
or
API_HOST_IP="FEDC:BA98:7654:3210:FEDC:BA98:7654:3210"
API_HOST="[${API_HOST_IP}]"
Signed-off-by: André Martins <aanm90@gmail.com>
2016-06-13 11:33:06 +01:00
Brendan Burns
9ee25545a8
Add test-cmd.sh tests for 3rd party resources.
2016-06-11 20:56:13 -07:00
k8s-merge-robot
2ef20b41f6
Merge pull request #26686 from metral/fix-get-output
...
Automatic merge from submit-queue
fix recursive & non-recursive kubectl get of generic output format
This PR fixes the issues with `kubectl get` in https://github.com/kubernetes/kubernetes/issues/26466
Changes made:
- fix printing when using the generic output format in both non-recursive & recurvise settings to ensure that errors are being shown
- add tests to check printing generic output in a **non-recursive** setting with non-existent pods
- clean up the **recursive** `kubectl get` tests
/cc @janetkuo
2016-06-11 14:26:31 -07:00
k8s-merge-robot
0f24d00fbe
Merge pull request #26775 from piosz/generator
...
Automatic merge from submit-queue
Added hpa/v1 generator to kubectl autoscale
ref #21577
```release-note
New default horizontalpodautoscaler/v1 generator for kubectl autoscale.
Use autoscaling/v1 in kubectl by default.
```
[]()
2016-06-11 08:10:44 -07:00
k8s-merge-robot
adb06748f7
Merge pull request #27158 from nikhiljindal/dnsProvider
...
Automatic merge from submit-queue
federation: Adding dnsprovider flags to federation-controller-manager
2016-06-10 23:28:41 -07:00
Dawn Chen
f04d3ebdd2
Revert "Revert "e2e-runner.sh: don't overwrite readonly var""
2016-06-10 18:17:51 -07:00
Dawn Chen
3b0fadf396
Revert "Revert "third time charm for #27144 ""
2016-06-10 18:17:15 -07:00
Dawn Chen
f1651a0d34
Revert "third time charm for #27144 "
2016-06-10 17:57:09 -07:00
Dawn Chen
da90405844
Revert "e2e-runner.sh: don't overwrite readonly var"
2016-06-10 17:56:03 -07:00
Jeff Lowdermilk
f6c3eb8179
e2e-runner.sh: don't overwrite readonly var
2016-06-10 16:45:40 -07:00
Jeff Grafton
65e10cf50c
Avoid duplicate building in Jenkins unit/integration job
2016-06-10 16:42:17 -07:00
Jeff Lowdermilk
eab35fb037
third time charm for #27144
...
We really need a way to test the e2e-runner.
2016-06-10 16:18:53 -07:00
Jeff Lowdermilk
e47b9f36aa
Fix #27144
2016-06-10 15:54:51 -07:00
Jeff Lowdermilk
09a35325de
Merge pull request #27144 from jlowdermilk/gke-branch-tests
...
Use latest branch build for GKE tests.
2016-06-10 14:23:32 -07:00
Piotr Szczesniak
ba1c8a2ac5
Revert "ScheduledJob tests"
2016-06-10 16:22:04 +02:00
Wojciech Tyczynski
cfd8173f92
Revert "Add a custom main instead of the standard test main, to reduce stack …"
2016-06-10 11:49:42 +02:00
Piotr Szczesniak
1818b5b3fc
Added hpa/v1 generator to kubectl autoscale
2016-06-10 09:26:35 +02:00
nikhiljindal
3f3a2c14d1
Adding the dnsprovider flags to federation-controller-manager
2016-06-09 20:26:46 -07:00
k8s-merge-robot
6a388d4a0d
Merge pull request #27072 from colhom/federation-e2e-docs
...
Automatic merge from submit-queue
Updating e2e docs with instructions on running federation tests
Last two commits are for review. Depends on #26951
\cc @madhusudancs @quinton-hoole @nikhiljindal
[]()
2016-06-09 19:14:11 -07:00
k8s-merge-robot
31e0be6048
Merge pull request #26820 from lavalamp/fix-docs2
...
Automatic merge from submit-queue
Stop checking in generated documents
Part of #26205
Auto generated docs are **NO LONGER CHECKED IN**, only placeholders.
To generate them, e.g. before exporting docs, run hack/generate-docs.sh.
hack/verify-generated-docs.sh ensures that generated docs are merely the
placeholder text.
hack/update-generated-docs.sh puts the placeholder text in the proper
places.
The old munge behavior is moved into hack/{update|verify}-munge-docs.sh.
2016-06-09 18:32:39 -07:00
Jeff Grafton
e89e262196
Pass --keepalive-time 2 to curl to fix unexpected EOF flakes
2016-06-09 17:37:25 -07:00
Maciej Szulik
2ab885a53a
Revert commit a31ca0dc98
and move batch/v2alpha1 tests to separate group in KUBE_TEST_API_VERSIONS
2016-06-10 01:11:56 +02:00
Colin Hom
5f7c7ad195
document federation e2e cli flow
2016-06-09 15:11:52 -07:00
Dawn Chen
8207eddd99
Revert "GCI: add support for network plugin"
2016-06-09 13:24:05 -07:00
Jeff Lowdermilk
427e34a325
Use latest branch build for GKE tests.
...
Pull the latest build of the release the server is running, rather
than matching exact version. This allows GKE to pick up test fixes
from branch head, instead of waiting for a patch.
2016-06-09 12:34:24 -07:00
k8s-merge-robot
c80f650b70
Merge pull request #26188 from brendandburns/test_main
...
Automatic merge from submit-queue
Add a custom main instead of the standard test main, to reduce stack …
Adds a custom test main handler (see: `TestMain` in https://golang.org/pkg/testing/ for details)
Partial fix for https://github.com/kubernetes/kubernetes/issues/25965
This does the standard timeout, but strips non-kubernetes stacks out of the stack trace (e.g. it filters things like:
```
goroutine 466 [IO wait, 7 minutes]:
net.runtime_pollWait(0x7fd74c4672c0, 0x72, 0xc821614000)
/usr/local/go/src/runtime/netpoll.go:160 +0x60
net.(*pollDesc).Wait(0xc8215c21b0, 0x72, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:73 +0x3a
net.(*pollDesc).WaitRead(0xc8215c21b0, 0x0, 0x0)
/usr/local/go/src/net/fd_poll_runtime.go:78 +0x36
net.(*netFD).Read(0xc8215c2150, 0xc821614000, 0x1000, 0x1000, 0x0, 0x7fd74c491050, 0xc820014058)
/usr/local/go/src/net/fd_unix.go:250 +0x23a
net.(*conn).Read(0xc820a5a090, 0xc821614000, 0x1000, 0x1000, 0x0, 0x0, 0x0)
/usr/local/go/src/net/net.go:172 +0xe4
net/http.noteEOFReader.Read(0x7fd74c465258, 0xc820a5a090, 0xc8215f0068, 0xc821614000, 0x1000, 0x1000, 0x405773, 0x0, 0x0)
/usr/local/go/src/net/http/transport.go:1687 +0x67
net/http.(*noteEOFReader).Read(0xc8215ae1a0, 0xc821614000, 0x1000, 0x1000, 0xc82159ad1d, 0x0, 0x0)
<autogenerated>:284 +0xd0
bufio.(*Reader).fill(0xc8202a2b40)
/usr/local/go/src/bufio/bufio.go:97 +0x1e9
bufio.(*Reader).Peek(0xc8202a2b40, 0x1, 0x0, 0x0, 0x0, 0x0, 0x0)
/usr/local/go/src/bufio/bufio.go:132 +0xcc
net/http.(*persistConn).readLoop(0xc8215f0000)
/usr/local/go/src/net/http/transport.go:1073 +0x177
created by net/http.(*Transport).dialConn
/usr/local/go/src/net/http/transport.go:857 +0x10a6
```
We may want to get even more aggressive in the future.
@kubernetes/sig-testing
2016-06-09 04:11:01 -07:00
k8s-merge-robot
72beb65ee5
Merge pull request #27027 from andyzheng0831/gci-network
...
Automatic merge from submit-queue
GCI: add support for network plugin
I had run e2e against a cluster with both master and nodes on GCI a couple of times. The PR auto tests will cover the hybrid cluster with just master on GCI.
cc/ @roberthbailey @fabioy @kubernetes/goog-image
2016-06-08 23:01:19 -07:00
Daniel Smith
8faa88626d
Revamp doc generation
...
Auto generated docs are **NO LONGER CHECKED IN**, only placeholders.
To generate them, e.g. before exporting docs, run hack/generate-docs.sh.
hack/verify-generated-docs.sh ensures that generated docs are merely the
placeholder text.
hack/update-generated-docs.sh puts the placeholder text in the proper
places.
The old munge behavior is moved into hack/{update|verify}-munge-docs.sh.
2016-06-08 17:22:12 -07:00
k8s-merge-robot
6986a3b2e2
Merge pull request #27091 from mml/union-merge
...
Automatic merge from submit-queue
Mark known-flags to merge via union.
2016-06-08 17:11:02 -07:00
Matt Liggett
52f6b27365
Mark known-flags to merge via union.
...
This avoids pointless merge conflicts in a simple text file.
Fixes #27088 .
2016-06-08 15:59:35 -07:00
Matt Liggett
d09af4a1d6
Stop 'drain' deleting pods with local storage.
...
Unless forced with --delete-local-data. Also a refactoring of the
kubectl drain logic that selects/rejects pods and produces error/warning
messages.
2016-06-08 14:59:03 -07:00
k8s-merge-robot
525a56eff8
Merge pull request #26832 from pwittrock/node-e2e-makefile
...
Automatic merge from submit-queue
Node e2e Makefile support for running remote tests against kubernetes…
Fixes #26665
[]()
…-node-e2e-images.
2016-06-08 14:25:28 -07:00
Andy Zheng
66d6b43b67
GCI: add support for kubenet
2016-06-08 13:20:44 -07:00
k8s-merge-robot
49db4f89b2
Merge pull request #26920 from mml/flake.unsched
...
Automatic merge from submit-queue
Retain debug logs for etcd when there is a place to keep them.
2016-06-08 08:06:22 -07:00
Phillip Wittrock
e94e1c6e3d
Node e2e Makefile support for running remote tests against kubernetes-node-e2e-images.
...
Also includes other improvements:
- Makefile rule to run tests against remote instance using existing host or image
- Makefile will reuse an instance created from an image if it was not torn down
- Runner starts gce instances in parallel with building source
- Runner uses instance ip instead of hostname so that it doesn't need to resolve
- Runner supports cleaning up files and processes on an instance without stopping / deleting it
- Runner runs tests using `ginkgo` binary to support running tests in parallel
2016-06-08 07:31:54 -07:00
Angus Salkeld
165f4de167
Fix type-o in definitions.html
2016-06-08 14:22:16 +10:00
k8s-merge-robot
a283a0a759
Merge pull request #26828 from vishh/oom-kill-enable
...
Automatic merge from submit-queue
Enable support for memory eviction configuration via salt
Added evictions based on memory by default whenever the available memory is < 100Mi.
Updated GCE and GCI.
2016-06-07 21:12:50 -07:00
Aaron Levy
e8d1dae1a9
Use a skeleton provider for unimplemented functionality
2016-06-07 16:08:09 -07:00
Dawn Chen
0d3be6a316
Merge pull request #26735 from timstclair/local-e2e
...
Fixes for running node e2es
2016-06-07 14:51:18 -07:00
Matt Liggett
5dcb8210ac
Retain debug logs for etcd when there is a place to keep them.
...
For help debugging #25845
2016-06-07 12:25:10 -07:00
Fabio Yeon
da112e23af
Handle multiple MIGs (single-zone) properly in GKE scripts.
2016-06-07 08:59:51 -07:00
k8s-merge-robot
72b1be9c76
Merge pull request #26789 from ihmccreery/always-skew-client
...
Automatic merge from submit-queue
Always skew the client when running version-skew tests
As mentioned in the comments:
- for upgrade jobs, we want kubectl to be at the same version as master.
- for client skew tests, we want to use the skewed kubectl (that's what we're testing).
So, remove gate on `JENKINS_USE_SKEW_KUBECTL`, and always use the skewed `kubectl`.
This should go in before https://github.com/kubernetes/test-infra/pull/109 .
2016-06-06 23:08:44 -07:00
Vishnu kannan
7e731dac60
ignore _output directory in verify flags script
...
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-06-06 17:47:38 -07:00
Vishnu kannan
ca657cecff
make flags script happy
...
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-06-06 17:47:38 -07:00
Brendan Burns
94b24351da
Add a custom main instead of the standard test main, to reduce stack spew.
2016-06-06 13:40:09 -07:00
k8s-merge-robot
b6b079b1e9
Merge pull request #26812 from spxtr/redirect
...
Automatic merge from submit-queue
Upload build-log.txt if it exists.
Companion to https://github.com/kubernetes/test-infra/pull/112 .
2016-06-06 10:22:53 -07:00
k8s-merge-robot
57125d81e1
Merge pull request #26621 from liyimeng/kolla-k8s
...
Automatic merge from submit-queue
Fix the problem in building hyperkube for 3rd party registry
Minor bugfix. fixes #26620
[]()
2016-06-04 04:23:31 -07:00
Prashanth Balasubramanian
2439930592
Fix srv record lookup
2016-06-03 20:41:08 -07:00
Joe Finney
771cdccbd3
Upload build-log.txt if it exists.
2016-06-03 14:26:27 -07:00
Daniel Wang
a3d712c359
Prep for continuous Docker validation test
...
We want to continuously validate Docker releases (#25215 ), on GCI. This change
adds a new test config variable, `KUBE_GCI_DOCKER_VERSION`, through which we can
specify which version of Docker we want to run on the master and nodes. This
change also patches the Jenkins e2e-runner with the ability to fetch the latest
Docker (pre)release, and sets the aforementioned variable accordingly.
2016-06-03 13:42:13 -07:00
k8s-merge-robot
69e45dc30d
Merge pull request #26671 from vishh/node-e2e-images
...
Automatic merge from submit-queue
Support images and instances to exist in different GCP projects for node
Forked off from #26314
2016-06-03 13:38:02 -07:00
k8s-merge-robot
421c12e69e
Merge pull request #26458 from david-mcmahon/godep-version
...
Automatic merge from submit-queue
Check for a valid godep version.
2016-06-03 11:04:38 -07:00
Isaac Hollander McCreery
28738ff787
Always skew the client when running version-skew tests
2016-06-03 10:31:23 -07:00
k8s-merge-robot
4adc00eceb
Merge pull request #26454 from thockin/licenses_again
...
Automatic merge from submit-queue
Don't allow deps with no discernible license
This updates the few deps we had with no LICENSE file to current versions that do have that file. It also disallows new deps without obvious licenses.
2016-06-03 01:18:14 -07:00
k8s-merge-robot
75ef1ca270
Merge pull request #26351 from saad-ali/attachDetachControllerKubeletChanges
...
Automatic merge from submit-queue
Attach/Detach Controller Kubelet Changes
This PR contains changes to enable attach/detach controller proposed in #20262 .
Specifically it:
* Introduces a new `enable-controller-attach-detach` kubelet flag to enable control by attach/detach controller. Default enabled.
* Removes all references `SafeToDetach` annotation from controller.
* Adds the new `VolumesInUse` field to the Node Status API object.
* Modifies the controller to use `VolumesInUse` instead of `SafeToDetach` annotation to gate detachment.
* Modifies kubelet to set `VolumesInUse` before Mount and after Unmount.
* There is a bug in the `node-problem-detector` binary that causes `VolumesInUse` to get reset to nil every 30 seconds. Issue https://github.com/kubernetes/node-problem-detector/issues/9#issuecomment-221770924 opened to fix that.
* There is a bug here in the mount/unmount code that prevents resetting `VolumeInUse in some cases, this will be fixed by mount/unmount refactor.
* Have controller process detaches before attaches so that volumes referenced by pods that are rescheduled to a different node are detached first.
* Fix misc bugs in controller.
* Modify GCE attacher to: remove retries, remove mutex, and not fail if volume is already attached or already detached.
Fixes #14642 , #19953
```release-note
Kubernetes v1.3 introduces a new Attach/Detach Controller. This controller manages attaching and detaching volumes on-behalf of nodes that have the "volumes.kubernetes.io/controller-managed-attach-detach" annotation.
A kubelet flag, "enable-controller-attach-detach" (default true), controls whether a node sets the "controller-managed-attach-detach" or not.
```
2016-06-02 23:30:32 -07:00
k8s-merge-robot
c4874be34e
Merge pull request #26553 from wojtek-t/test_path_prefix
...
Automatic merge from submit-queue
Test non-default etcdPrefixes.
Fix #26489
2016-06-02 22:43:16 -07:00
Mike Metral
4409eed57f
fix recursive & non-recursive kubectl get of generic output format
2016-06-02 21:46:15 -07:00
k8s-merge-robot
eb57124562
Merge pull request #26522 from xiangpengzhao/fix_noproxy
...
Automatic merge from submit-queue
Export no_proxy if behind a proxy
Fix #26261
2016-06-02 18:43:43 -07:00
k8s-merge-robot
0a2a7a9d6a
Merge pull request #26528 from johscheuer/hack-update-api-docs
...
Automatic merge from submit-queue
Fixes #26526 - hack/update-api-reference-docs.sh
I opened a Pull request to fix this issue https://github.com/kubernetes/kubernetes/issues/26526
The problem is that the update script ignores white spaces but the verify script doesn't which leads to a strange behaviour -> you use the update script but the verify script tells you that the api docs are not up to date.
2016-06-02 17:04:10 -07:00
Tim Hockin
3c6ce53b7f
Fix call-sites after dep updates
2016-06-02 16:57:28 -07:00
Saad Ali
9dbe943491
Attach/Detach Controller Kubelet Changes
...
This PR contains Kubelet changes to enable attach/detach controller control.
* It introduces a new "enable-controller-attach-detach" kubelet flag to
enable control by controller. Default enabled.
* It removes all references "SafeToDetach" annoation from controller.
* It adds the new VolumesInUse field to the Node Status API object.
* It modifies the controller to use VolumesInUse instead of SafeToDetach
annotation to gate detachment.
* There is a bug in node-problem-detector that causes VolumesInUse to
get reset every 30 seconds. Issue https://github.com/kubernetes/node-problem-detector/issues/9
opened to fix that.
2016-06-02 16:47:11 -07:00
David McMahon
d038c53c0b
Check for a valid godep version.
2016-06-02 16:35:14 -07:00
Tim Hockin
aae0c90d64
Abort if we can't find a license
2016-06-02 15:57:30 -07:00
Tim Hockin
392c5dc618
Update license for go4.org
...
Add it as a special case package root and import the license file. This was
the only UNKNOWN license, prior to the change to not look at upstream repo
state.
2016-06-02 15:57:30 -07:00
Tim St. Clair
fef89f1b39
Refresh sudo credentials before running node e2e
2016-06-02 13:16:26 -07:00
Vishnu kannan
60ed27783e
Support images and instances to exist in different GCP projects for node
...
e2e.
Add current user to docker group on instances for node e2e.
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-06-01 18:01:02 -07:00
Daniel Wang
a8701baf17
Move the defaults setting of GCI to util.sh
...
This change recovers some of the side effects of
https://github.com/kubernetes/kubernetes/pull/26197 , i.e., keeps the defaults of
`NODE_IMAGE` and `NODE_IMAGE_PROJECT` to `MASTER_IMAGE` and
`MASTER_IMAGE_PROJECT`, for backward compatibility. Although it keeps
`OS_DISTRIBUTION` defaulting to `gci`, the default settings of these vars are
moved to `cluster/gce/util.sh` and conditioned on `OS_DISTRIBUTION==gci`.
2016-06-01 15:37:02 -07:00
k8s-merge-robot
9336eb516b
Merge pull request #26575 from mwielgus/gke-token-src
...
Automatic merge from submit-queue
Pass /etc/gce.conf to cluster autoscaler if needed
cc: @vulpecula @piosz @jszczepkowski @fgrzadkowski
2016-06-01 09:42:45 -07:00
Mike Danese
d046275a36
now that go test runs iteration loops, use that instead of custom executor
2016-06-01 09:09:23 -07:00
k8s-merge-robot
bc6c66d4d4
Merge pull request #25726 from jszczepkowski/hpa-testfix
...
Automatic merge from submit-queue
Rework of resource consumer.
2016-06-01 08:50:23 -07:00
Jerzy Szczepkowski
967a7c95d2
Rework of resource consumer.
...
Major rework of resource consumer: added controller running as a pod that spreads requests around consumers. This should fix #21664 and #23536 .
2016-06-01 15:50:03 +02:00
k8s-merge-robot
5a5a6cc4d3
Merge pull request #26523 from luxas/fix_native_build_go
...
Automatic merge from submit-queue
Don't set the env var CC when not cross-compiling
I noticed that this script was trying to use `arm-linux-gnueabi-gcc` also when running natively on arm.
When running natively, `CC` should always be `gcc` (which also is the default)
Also added `federation-controller-manager` to the static list, I think someone forgot to do that.
@ixdy @david-mcmahon @spiffxp @spxtr
2016-06-01 05:58:03 -07:00
Marcin Wielgus
4c467e1017
Update underscore flag exceptions
2016-06-01 13:54:28 +02:00
Jerzy Szczepkowski
93e5b12a06
Multiple MIGs in e2e cluster autoscaling tests.
...
Implemented support for multiple MIGs in e2e cluster autoscaling tests.
2016-06-01 11:20:41 +02:00
Liyi Meng
6c195a4923
Fix the problem in building hyperkube for 3rd party registry
2016-06-01 04:38:48 -04:00
Girish Kalele
60d2293f4c
Address review comments
2016-05-31 10:14:33 -07:00
Wojciech Tyczynski
9a5d0e0fa0
Test non-default etcdPrefixes.
2016-05-31 10:49:30 +02:00
Piotr Szczesniak
22dc21d703
Removed metrics api group
2016-05-31 09:48:39 +02:00
Lucas Käldström
a46a1cdc12
Don't set the env var CC when not cross-compiling
2016-05-30 23:59:34 +03:00
k8s-merge-robot
6136d4c250
Merge pull request #25981 from liggitt/test-cmd-osx
...
Automatic merge from submit-queue
Allow running test-cmd on osx
2016-05-30 08:16:46 -07:00
Johannes Scheuermann
ec26e62ec3
This fixes #26526 the white space problem
2016-05-30 15:32:43 +02:00
Xiangpeng Zhao
ab9d60f26e
Add a comment
2016-05-30 20:18:06 +08:00
k8s-merge-robot
5fd2bb5c20
Merge pull request #26047 from dims/fix-issue-26041
...
Automatic merge from submit-queue
Get install-etcd.sh to work on OSX
Check the platform before we download the etcd binary. On OSX, save
the zip file, unzip it and link the directory with the correct
name.
Fixes #26041
2016-05-30 02:19:02 -07:00
Dr. Stefan Schimanski
a79a420fde
Move shell completion generation into 'kubectl completion' command
2016-05-30 07:23:36 +02:00
Angus Salkeld
5dcbc7ce5b
Check for an empty value in validateField
...
reflect.TypeOf() can take a nil (it then returns a nil), but
Kind() panics on a nil.
Fixes #20627
2016-05-30 14:12:18 +10:00
k8s-merge-robot
fe5edcf1b4
Merge pull request #26438 from aanm/adding-etcd-addr-option
...
Automatic merge from submit-queue
Add -addr option to hack/lib/etcd.h
Added -addr to etcd hack script so it listens on the same address specified in the `host` variable.
Signed-off-by: André Martins <aanm90@gmail.com>
2016-05-29 19:58:14 -07:00
k8s-merge-robot
feee4834c8
Merge pull request #25685 from pwittrock/nodee2e
...
Automatic merge from submit-queue
Support per-test-environment ginkgo flags for node e2e tests to facilitate skipping miss behaving tests in PR builder
We had an issue today where some node e2e tests were timing out in the pr builder. We want to be able to skip tests in the pr builder and leave them running in the CI if this happens again.
[]()
2016-05-29 05:42:51 -07:00
Chao Xu
b3df629432
add gc and its enablement flag to kube-controller-manager
2016-05-28 14:12:33 -07:00
k8s-merge-robot
a24584465e
Merge pull request #24965 from Arvinderpal/add_cni_dir_to_local_cluster_up
...
Automatic merge from submit-queue
Adds --network-plugin-dir argument to hack/local-up-cluster.sh
CNI Network Plugin developers who want to use hack/local-up-cluster.sh need to specify the --network-plugin-dir option to kubelet.
2016-05-28 11:53:54 -07:00
mfanjie
6133db345f
add federation service controller
2016-05-29 00:25:07 +08:00
André Martins
10fb9bdcf3
Add -addr option to hack/lib/etcd.h
...
Signed-off-by: André Martins <aanm90@gmail.com>
2016-05-28 12:15:45 +01:00
k8s-merge-robot
74b20cccc6
Merge pull request #25813 from rrati/kubelet-pods-per-core
...
Automatic merge from submit-queue
Added pods-per-core to kubelet. #25762
Added --pods-per-core to kubelet
#25762
2016-05-28 03:08:28 -07:00
k8s-merge-robot
3f455fba12
Merge pull request #26441 from aanm/fixing-local-up-cluster-sh
...
Automatic merge from submit-queue
Add more global options to local-up-cluster.sh
I added a couple more global variables to the `local-up-cluster.sh` script.
The `KUBELET_HOST` environment name make sense to me. If it isn't the best name I will change it.
The `ETCD` ones make sense since they are being used under `hack/lib/etcd.sh`
Signed-off-by: André Martins <aanm90@gmail.com>
2016-05-28 01:30:55 -07:00
k8s-merge-robot
011258917b
Merge pull request #26465 from david-mcmahon/addvendor
...
Automatic merge from submit-queue
Verify changes against upstream vendor/ as well.
cc @ixdy
2016-05-28 00:43:37 -07:00
k8s-merge-robot
a5222574d4
Merge pull request #25614 from justinsb/feature/flag-configure-cloud-routes
...
Automatic merge from submit-queue
kube-controller-manager: Add configure-cloud-routes option
This allows kube-controller-manager to allocate CIDRs to nodes (with
allocate-node-cidrs=true), but will not try to configure them on the
cloud provider, even if the cloud provider supports Routes.
The default is configure-cloud-routes=true, and it will only try to
configure routes if allocate-node-cidrs is also configured, so the
default behaviour is unchanged.
This is useful because on AWS the cloud provider configures routes by
setting up VPC routing table entries, but there is a limit of 50
entries. So setting configure-cloud-routes on AWS would allow us to
continue to allocate node CIDRs as today, but replace the VPC
route-table mechanism with something not limited to 50 nodes.
We can't just turn off the cloud-provider entirely because it also
controls other things - node discovery, load balancer creation etc.
Fix #25602
2016-05-27 23:52:51 -07:00
k8s-merge-robot
5b03fd5697
Merge pull request #26448 from pwittrock/fix-26318-kubemark-junit-results
...
Automatic merge from submit-queue
Kubemark e2e tests should exit 0 for test failures.
Fixed #26318
2016-05-27 23:04:36 -07:00
k8s-merge-robot
4aa8c7340b
Merge pull request #26333 from fejta/ssh
...
Automatic merge from submit-queue
Push public key to project if not already present
Fixes https://github.com/kubernetes/kubernetes/issues/26128
Fixes https://github.com/kubernetes/kubernetes/issues/26129
Whenever the ssh key changes (which happens right now whenever we add/change a new jenkins agent) this key will not get pushed to the project until either `gcloud compute ssh` or `gcloud compute config-ssh` runs. As a result instances on this project will reject ssh attempts with this key.
In many cases this will not happen until after a test on a project fails and we attempt to ssh to the nodes to grab logs.
This verifies the presence of the ssh key before starting tests, and attempts to add it if it is missing.
2016-05-27 22:10:19 -07:00
David McMahon
12edc97862
Verify changes against upstream vendor/ as well.
2016-05-27 16:27:42 -07:00
André Martins
bd37100713
Add more global env vars to local-up-cluster.sh
...
Signed-off-by: André Martins <aanm90@gmail.com>
2016-05-27 23:58:01 +01:00
Phillip Wittrock
c3e1c12985
Kubemark e2e tests should exit 0 for test failures.
...
Jenkins relies on junit.xml to identify test failures
and non-0 exit codes to indentify infrastructure failures.
Test failures in kubemark tests should not cause the test
script to exit non-0. Infrastructure failures should.
- Add function to dump cluster logs without exiting (refactor)
- Change `test/kubemark/stop-kubemark.sh` to be run regardless of whether tests fail or not
- Exit code for failed tests overwritten to be the exit code of dumping the cluster logs
2016-05-27 15:45:18 -07:00
Alex Robinson
90ca2aae24
Merge pull request #26423 from wojtek-t/speedup_update_codecget
...
Speedup update_codecgen by precomputing dependencies.
2016-05-27 14:19:08 -07:00
Erick Fejta
0e1c2ee20c
Push public key to project if not already present
2016-05-27 13:56:18 -07:00
Wojciech Tyczynski
92fc59cacf
Speedup update_codecgen by precomputing dependencies.
2016-05-27 22:01:06 +02:00
André Martins
8497255bcd
Add -g curl option to hack/lib/util.sh wait_for_url
...
Signed-off-by: André Martins <aanm90@gmail.com>
2016-05-27 20:50:38 +01:00
Alex Robinson
aa4e182656
Merge pull request #26094 from mhrgoog/godeps_verify_echo
...
Godeps verify echo
2016-05-27 11:27:01 -07:00
Tim Hockin
847b56b253
Simplify godep licenses logic
...
This code used to actually reach out to the internet to look for files. This
is flaky, slow, and semantically WRONG. The license that is upstream might
actually be different than what we have vendored. Only look at local files.
This now passes back-to-back updates and verifies.
2016-05-27 10:01:27 -07:00
Justin Santa Barbara
b754393630
kube-controller-manager: Add configure-cloud-routes option
...
This allows kube-controller-manager to allocate CIDRs to nodes (with
allocate-node-cidrs=true), but will not try to configure them on the
cloud provider, even if the cloud provider supports Routes.
The default is configure-cloud-routes=true, and it will only try to
configure routes if allocate-node-cidrs is also configured, so the
default behaviour is unchanged.
This is useful because on AWS the cloud provider configures routes by
setting up VPC routing table entries, but there is a limit of 50
entries. So setting configure-cloud-routes on AWS would allow us to
continue to allocate node CIDRs as today, but replace the VPC
route-table mechanism with something not limited to 50 nodes.
We can't just turn off the cloud-provider entirely because it also
controls other things - node discovery, load balancer creation etc.
Fix #25602
2016-05-27 09:42:20 -04:00
Wojciech Tyczynski
19ccbb9f99
Speed up test, by not running with custom etcd prefix
2016-05-27 14:30:24 +02:00
Robert Rati
2d487f7c06
Added pods-per-core to kubelet. #25762
2016-05-27 07:10:13 -04:00
k8s-merge-robot
227b8bad81
Merge pull request #26365 from janetkuo/tag-test-image
...
Automatic merge from submit-queue
Prevent use of ":latest" or untagged gcr.io images
Ref #20836
[]()
2016-05-27 01:12:57 -07:00
Eric Paris
cd700ee3eb
Merge pull request #26313 from nikhiljindal/fedServerDoc
...
federation: Adding a tool to generate docs for federation apiserver and controller manager
2016-05-26 23:09:51 -04:00
Phillip Wittrock
1d91d24548
Allow per-environment ginkgo flags to be passed to the node e2e tests so that we can selectively disable slow tests in the PR builder when needed.
2016-05-26 15:05:40 -07:00
Alex Mohr
edda837142
Merge pull request #25599 from caesarxuchao/orphaning-finalizer
...
Add orphaning finalizer logic to GC
2016-05-26 13:19:19 -07:00
Alex Mohr
6f919dc6fc
Merge pull request #25634 from ericchiang/rbac_api_group
...
Add RBAC authorization API group and authorizer
2016-05-26 12:36:53 -07:00
Alex Mohr
4357b8a0a6
Merge pull request #25324 from jfrazelle/add-seccomp
...
Add Seccomp to Annotations
2016-05-26 10:50:06 -07:00
Alex Mohr
6b169eaa85
Merge pull request #25125 from colhom/federation-e2e
...
e2e tests for federated-apiserver
2016-05-26 10:40:30 -07:00
Janet Kuo
0f42def115
Fix incorrect gofmt hint
2016-05-26 10:27:45 -07:00
Janet Kuo
d18438406b
Add check to prevent use of untagged or :latest gcr.io images in e2e tests
2016-05-26 10:27:31 -07:00
Abhi Shah
965e8dce12
Merge pull request #26114 from ArtfulCoder/dnsport
...
Add dnsmasq as a DNS cache in kube-dns pod
2016-05-26 08:13:58 -07:00
k8s-merge-robot
44de311c0a
Merge pull request #24826 from caesarxuchao/autogenerate-1-3
...
Automatic merge from submit-queue
Add release_1_3 clientset in update-codegen
Add release_1_3 clientset in update-codegen to keep it update-to-date; update the generated clientset.
2016-05-26 05:21:32 -07:00
k8s-merge-robot
bda0dc88aa
Merge pull request #25457 from saad-ali/expectedStateOfWorldDataStructure
...
Automatic merge from submit-queue
Attach Detach Controller Business Logic
This PR adds the meat of the attach/detach controller proposed in #20262 .
The PR splits the in-memory cache into a desired and actual state of the world.
2016-05-26 00:41:54 -07:00
Chao Xu
cc4ffe0714
add release_1_3 clientset in update-codegen
2016-05-25 21:14:16 -07:00
k8s-merge-robot
128e7f13af
Merge pull request #26243 from metral/fix-pause
...
Automatic merge from submit-queue
use kubectl-with-retry on pause & resume
attempts to fix https://github.com/kubernetes/kubernetes/issues/25645 by using `kubectl-with-retry` on `rollout {pause,resume}` (`resume` is for safe measures) instead of `kubectl` directly, as is done with other `rollout {pause,resume}` tests in this same script.
2016-05-25 19:49:45 -07:00
Colin Hom
a092fd2dd4
Federation build and e2e test integration
...
Federation components are now buildable and e2e-testable via e2e.go.
2016-05-25 15:07:27 -07:00
nikhiljindal
f98bda0b47
Adding a tool to generate federation docs
2016-05-25 15:04:20 -07:00
Eric Chiang
323e804f39
add rbac for tests and kubectl
2016-05-25 14:25:56 -07:00
Eric Chiang
ef40aa9572
pkg/master: enable certificates API and add rbac authorizer
2016-05-25 14:24:47 -07:00
Mike Metral
54e6d2356c
use kubectl-with-retry on pause & resume
2016-05-25 13:37:57 -07:00
k8s-merge-robot
e8f3cc9072
Merge pull request #26101 from pwittrock/node-e2e-junit
...
Automatic merge from submit-queue
Node e2e junit test artifacts
[]()
- Add junit test reported
- Write etcd.log, kubelet.log and kube-apiserver.log to files instead of stdout
- Scp artifacts to the jenkins WORKSPACE
Fixes #25966
2016-05-25 02:45:56 -07:00
k8s-merge-robot
201aa24b85
Merge pull request #25701 from wonderfly/drop_trusty
...
Automatic merge from submit-queue
e2e-runner: Drop Trusty support in favor of GCI
Now that GCI (Google Container-VM Image) is out, we will start running e2e tests
with it instead of Ubuntu Trusty. This change updates `e2e-runner.sh` to replace
the Trusty related logic with GCI.
_Note that this change has to go in the same time as https://github.com/kubernetes/test-infra/pull/54_
@spxtr Can you review?
cc/ @andyzheng0831 @kubernetes/goog-image
2016-05-25 00:58:18 -07:00
Abhishek Shah
10f9789bc3
added dnsmasq container in kubedns pod
2016-05-25 00:23:57 -07:00
saadali
92500a20d7
Attach detach controller business logic added
...
Split controller cache into actual and desired state of world.
Controller will only operate on volumes scheduled to nodes that
have the "volumes.kubernetes.io/controller-managed-attach" annotation.
2016-05-24 23:01:16 -07:00
xiangpengzhao
6d2b72d3b9
Set no_proxy for localhost
2016-05-24 20:26:16 -04:00
Mike Danese
1ef1906209
Merge pull request #26197 from wonderfly/update_default_master_image
...
Replace containervm with GCI as default master image for GCE clusters
2016-05-24 16:58:14 -07:00
pwittrock
eae1961599
Node e2e export test artifacts to jenkins.
...
- Add junit test reported
- Write etcd.log, kubelet.log and kube-apiserver.log to files instead of stdout
- Scp artifacts to the jenkins WORKSPACE
Fixes #25966
2016-05-24 23:00:58 +00:00
Daniel Wang
3d95151971
Replace containervm with GCI as default master image for GCE clusters
2016-05-24 17:28:17 -05:00
k8s-merge-robot
f5b5d2bc26
Merge pull request #26196 from nikhiljindal/renameFedAPIServer
...
Automatic merge from submit-queue
Renaming federated-apiserver to federation-apiserver
Its not a "federated" apiserver. Its an apiserver for federation.
The corresponding controller manager is also called federation-controller-manager.
If we are going to rename, it should be done in 1.3 before people write scripts referencing the binary name.
2016-05-24 15:21:11 -07:00
k8s-merge-robot
50524c78a1
Merge pull request #20672 from brendandburns/dump
...
Automatic merge from submit-queue
Add a 'kubectl clusterinfo dump' option
Ref: #3500
@bgrant0607 @smarterclayton @jszczepkowski
Usage:
```
# Dump current cluster state to stdout
kubectl clusterinfo dump
# Dump current cluster state to /tmp
kubectl clusterinfo dump --output-directory=/tmp
# Dump all namespaces to stdout
kubectl clusterinfo dump --all-namespaces
# Dump a set of namespaces to /tmp
kubectl clusterinfo dump --namespaces default,kube-system --output-directory=/tmp
```
<!-- Reviewable:start -->
---
This change is [<img src="http://reviewable.k8s.io/review_button.svg " height="35" align="absmiddle" alt="Reviewable"/>](http://reviewable.k8s.io/reviews/kubernetes/kubernetes/20672 )
<!-- Reviewable:end -->
2016-05-24 14:24:17 -07:00
Chao Xu
1665546d2d
add finalizer logics to the API server and the garbage collector; handling DeleteOptions.OrphanDependents in the API server
2016-05-24 13:07:28 -07:00
Jess Frazelle
aa8c72adaa
seccomp: add annotations and test for docker runtime
...
Signed-off-by: Jess Frazelle <me@jessfraz.com>
2016-05-24 12:25:21 -07:00
nikhiljindal
991eb753a2
Renaming federated-apiserver to federation-apiserver
2016-05-24 11:49:39 -07:00
Janet Kuo
89df549016
Add pre-condition before editing pod in test-cmd.sh
2016-05-23 15:04:43 -07:00
Davanum Srinivas
0f94aeada2
Get install-etcd.sh to work on OSX
...
Check the platform before we download the etcd binary. On OSX, save
the zip file, unzip it and link the directory with the correct
name.
Fixes 26041
2016-05-23 17:34:52 -04:00
Michael Rubin
7900d0897d
Adding "Pass/Fail" echo
2016-05-23 12:03:56 -07:00
Jordan Liggitt
33ae2b856e
Allow running test-cmd on osx
2016-05-23 13:01:04 -04:00
Andy Zheng
f31c4f6d69
Revert "Revert "Add support for running GCI on the GCE cloud provider""
...
This reverts commit 40f53b1765
.
2016-05-23 00:52:08 -07:00
k8s-merge-robot
086ace44b8
Merge pull request #25548 from jlowdermilk/lower-ginkgo-parallelism
...
Automatic merge from submit-queue
Lower ginkgo parallelism and move same image rolling-update test out of flaky
Tentative fix for #25140 .
2016-05-22 18:43:57 -07:00
k8s-merge-robot
0257f54a8c
Merge pull request #24850 from madhusudancs/speedup-do-nothing
...
Automatic merge from submit-queue
Improve the speed of do-nothing build.
As @thockin found out here https://github.com/kubernetes/kubernetes/issues/24518 , vast majority of the do-nothing build time is spent in rebuilding the test binaries. There is no staleness check support for test binaries.
This commit implements the staleness checks for test binaries and uses them while building packages.
On my workstation, do-nothing hack/build-go.sh time goes from ~20 secs to ~4 secs, of which only ~1 sec is from doing test binary staleness check now (as opposed to ~17 secs it took to build the test binaries before). I did some experiments to bring this time down to <1 sec. I measured using go test -bench, but it was not very useful in this case. I believe, a vast majority of that ~1 second is being spent in fork/exec and piping the results back to the staleness check program along with the ser-deser involved, but it needs to be validated. Not a proof, but to provide some supporting evidence to this claim, running `go list -f format packages` in the shell takes about 600ms irrespective of what's in the format.
Tests are TBD. I am still trying to figure out how to test this, but I would like to get early feedback
cc @mikedanese @mml
2016-05-22 10:33:04 -07:00
Mike Metral
4913481b05
enable recursive processing in kubectl edit
2016-05-22 09:49:11 -07:00
k8s-merge-robot
39f0c6ba25
Merge pull request #24719 from bprashanth/kubectl_tls
...
Automatic merge from submit-queue
Add a kubectl create secret tls command
A somewhat hasty implementation that enables progress along: https://github.com/kubernetes/kubernetes/issues/20176#issuecomment-177409516 , https://github.com/kubernetes/kubernetes/issues/24669 , https://github.com/kubernetes/kubernetes/issues/20176#issuecomment-198142836 if associated parties have spare cycles. @kubernetes/kubectl
<!-- Reviewable:start -->
---
This change is [<img src="http://reviewable.k8s.io/review_button.svg " height="35" align="absmiddle" alt="Reviewable"/>](http://reviewable.k8s.io/reviews/kubernetes/kubernetes/24719 )
<!-- Reviewable:end -->
2016-05-22 09:40:42 -07:00
k8s-merge-robot
a503bb828a
Merge pull request #24653 from gtank/go-devel-builds
...
Automatic merge from submit-queue
hack: allow devel builds of go
This is issue https://github.com/kubernetes/kubernetes/issues/6913 . It seems reasonable that someone running a devel build is responsible for making sure it's a sane version.
<!-- Reviewable:start -->
---
This change is [<img src="http://reviewable.k8s.io/review_button.svg " height="35" align="absmiddle" alt="Reviewable"/>](http://reviewable.k8s.io/reviews/kubernetes/kubernetes/24653 )
<!-- Reviewable:end -->
2016-05-22 08:51:54 -07:00
k8s-merge-robot
82cb4c1758
Merge pull request #23930 from ArtfulCoder/vendor-skydns
...
Automatic merge from submit-queue
Use SkyDNS as a library for a more integrated kube DNS
2016-05-21 23:33:35 -07:00
k8s-merge-robot
9e8282c586
Merge pull request #25838 from cjcullen/authzcache
...
Automatic merge from submit-queue
Cache webhook authorization responses
Similar to #25694 , but for authorization.
2016-05-21 20:34:34 -07:00
Cole Mickens
6d774c9d37
add hack/dev-push-hyperkube.sh
2016-05-21 15:44:46 -07:00
CJ Cullen
d03dbbcc14
Add LRU Expire cache to webhook authorizer.
2016-05-21 14:50:50 -07:00
k8s-merge-robot
346f965871
Merge pull request #25694 from cjcullen/authncache
...
Automatic merge from submit-queue
Cache Webhook Authentication responses
Add a simple LRU cache w/ 2 minute TTL to the webhook authenticator.
Kubectl is a little spammy, w/ >= 4 API requests per command. This also prevents a single unauthenticated user from being able to DOS the remote authenticator.
2016-05-21 10:48:38 -07:00
k8s-merge-robot
88daa2efde
Merge pull request #25611 from soltysh/remote_check
...
Automatic merge from submit-queue
Update upstream remote regex
I've fixed the upstream remote regex so that it properly recognizes ssh link, like this one:
```
upstream git@github.com:kubernetes/kubernetes.git (fetch)
```
[]()
2016-05-21 01:34:10 -07:00
k8s-merge-robot
46504c2042
Merge pull request #14943 from vishh/qos
...
Automatic merge from submit-queue
Updaing QoS policy to be at the pod level
Quality of Service will be derived from an entire Pod Spec, instead of being derived from resource specifications of individual resources per-container.
A Pod is `Guaranteed` iff all its containers have limits == requests for all the first-class resources (cpu, memory as of now).
A Pod is `BestEffort` iff requests & limits are not specified for any resource across all containers.
A Pod is `Burstable` otherwise.
Note: Existing pods might be more susceptible to OOM Kills on the node due to this PR! To protect pods from being OOM killed on the node, set `limits` for all resources across all containers in a pod.
<!-- Reviewable:start -->
---
This change is [<img src="http://reviewable.k8s.io/review_button.svg " height="35" align="absmiddle" alt="Reviewable"/>](http://reviewable.k8s.io/reviews/kubernetes/kubernetes/14943 )
<!-- Reviewable:end -->
2016-05-20 22:58:04 -07:00
k8s-merge-robot
70cd282f11
Merge pull request #25944 from pwittrock/fix-24905
...
Automatic merge from submit-queue
Pre-pull images in node e2e-tests. Possible resolution for #24905
[]()
2016-05-20 18:50:11 -07:00
Mike Danese
fbf6bbc49a
Merge pull request #25596 from derekparker/inotify
...
kubelet: Optionally, have kubelet exit if lock file contention is observed, using --exit-on-lock-contention flag
2016-05-20 16:40:10 -07:00
Abhishek Shah
a92ea56024
added build stuff for kube-dns
2016-05-20 15:08:11 -07:00
Vishnu kannan
a64fe6572a
satisfy flags check script by including a few files
...
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-05-20 15:03:26 -07:00
k8s-merge-robot
f935507235
Merge pull request #19242 from mqliang/node-controller
...
Automatic merge from submit-queue
add CIDR allocator for NodeController
This PR:
* use pkg/controller/framework to watch nodes and reduce lists when allocate CIDR for node
* decouple the cidr allocation logic from monitoring status logic
<!-- Reviewable:start -->
---
This change is [<img src="http://reviewable.k8s.io/review_button.svg " height="35" align="absmiddle" alt="Reviewable"/>](http://reviewable.k8s.io/reviews/kubernetes/kubernetes/19242 )
<!-- Reviewable:end -->
2016-05-20 09:45:05 -07:00
k8s-merge-robot
2c471bce4e
Merge pull request #25509 from janetkuo/kubectl-set-image
...
Automatic merge from submit-queue
Add 'kubectl set image'
```release-note
Add "kubectl set image" for easier updating container images (for pods or resources with pod templates).
```
**Usage:**
```
kubectl set image (-f FILENAME | TYPE NAME) CONTAINER_NAME_1=CONTAINER_IMAGE_1 ... CONTAINER_NAME_N=CONTAINER_IMAGE_N
```
**Example:**
```console
# Set a deployment's nginx container image to 'nginx:1.9.1', and its busybox container image to 'busybox'.
$ kubectl set image deployment/nginx busybox=busybox nginx=nginx:1.9.1
# Update all deployments' nginx container's image to 'nginx:1.9.1'
$ kubectl set image deployments nginx=nginx:1.9.1 --all
# Update image of all containers of daemonset abc to 'nginx:1.9.1'
$ kubectl set image daemonset abc *=nginx:1.9.1
# Print result (in yaml format) of updating nginx container image from local file, without hitting the server
$ kubectl set image -f path/to/file.yaml nginx=nginx:1.9.1 --local -o yaml
```
I abandoned the `--container=xxx --image=xxx` flags in the [deploy proposal](https://github.com/kubernetes/kubernetes/blob/master/docs/proposals/deploy.md#kubectl-set ) since it's much easier to use with just KEY=VALUE (CONTAINER_NAME=CONTAINER_IMAGE) pairs.
Ref #21648
@kubernetes/kubectl @bgrant0607 @kubernetes/sig-config
[]()
2016-05-20 07:13:45 -07:00
mqliang
17d5a302bb
make podcidr mask size configurable
2016-05-20 20:44:40 +08:00
k8s-merge-robot
2c038e38c5
Merge pull request #25817 from ihmccreery/fix-skew-kubectl
...
Automatic merge from submit-queue
Fix JENKINS_USE_SKEW_KUBECTL
I got this logic wrong; the first is a NOT comparison, so the second should only be available if that NOT comparison returns true.
2016-05-20 04:42:19 -07:00
k8s-merge-robot
97a7d009ad
Merge pull request #25708 from ixdy/node-e2e-test-timeout
...
Automatic merge from submit-queue
Add a timeout to the node e2e Ginkgo test runner
Also add a few debugging statements to indicate progress.
Should help prevent #25639 , since we'll timeout tests before Jenkins times out the build.
2016-05-20 04:42:16 -07:00
k8s-merge-robot
e851d749e4
Merge pull request #25583 from chrislovecnm/cassandra-image-bump
...
Automatic merge from submit-queue
Cassandra examples updating images to v9
- this is a version bump for the C* image
- I also increased the cpu to .5 because .1 is slow like warm death
Who can actually run the build to get the container to the examples repo?
2016-05-20 04:42:12 -07:00
Filip Grzadkowski
31c1825856
Merge pull request #25753 from dlorenc/nodecount
...
Add a flag that lets e2e tests be run against single-node clusters.
2016-05-20 10:30:12 +02:00
Phillip Wittrock
839f4f8dd2
Pre-pull images in node e2e-tests. Possible resolution for #24905
2016-05-20 05:22:30 +00:00
Daniel Wang
fe7dd4cae7
e2e-runner: Drop Trusty support in favor of GCI
...
Now that GCI (Google Container-VM Image) is out, we will start running e2e tests
with it instead of Ubuntu Trusty. This change updates `e2e-runner.sh` to replace
the Trusty related logic with GCI.
2016-05-19 17:51:53 -07:00
k8s-merge-robot
505fb85726
Merge pull request #25920 from wonderfly/use_base_image
...
Automatic merge from submit-queue
Jenkins: start using base images for Trusty tests
@spxtr Can you review this XS change?
cc/ @kubernetes/goog-image
2016-05-19 17:13:27 -07:00
Daniel Wang
967b869c67
Jenkins: start using base images for Trusty tests
2016-05-19 15:23:30 -07:00
Clayton Coleman
2c9b83f291
Disable ppc64le for now
2016-05-19 10:19:35 -04:00
Daniel Smith
40f53b1765
Revert "Add support for running GCI on the GCE cloud provider"
2016-05-18 21:31:28 -07:00
Janet Kuo
4332472bde
Add 'kubectl set image'
2016-05-18 21:23:17 -07:00
Derek Parker
f307e97f87
kubelet: Add --exit-on-lock-contention flag
...
This patch adds the --exit-on-lock-contention flag, which must be used
in conjunction with the --lock-file flag. When provided, it causes the
kubelet to wait for inotify events for that lock file. When an 'open'
event is received, the kubelet will exit.
2016-05-18 16:21:47 -07:00
chrislovecnm
98cafe64ac
More updates to docker, including more env overrides. For example you can now set cluster name.
...
someone tell me if this is wrong, but I do not think "examples/cassandra/image/run.sh: cluster_name \" should have been found
2016-05-18 17:03:46 -06:00
Andy Zheng
a737e1eba1
Add support for running GCI on the GCE cloud provider
2016-05-18 15:15:05 -07:00
Daniel Smith
ae27975300
Merge pull request #25743 from wojtek-t/test_upgrade_protobufs
...
Test storage upgrade to protobufs
2016-05-18 14:44:16 -07:00
CJ Cullen
57f96a932f
Add expiration LRU cache for webhook token authenticator.
2016-05-18 11:58:11 -07:00
k8s-merge-robot
3a5d53d467
Merge pull request #23430 from huangyuqi/uber-cluster-manager
...
Automatic merge from submit-queue
Implement the cluster-controller of kubernetes federation
This PR is the cluster-controller of kubernetes federation.
This controller of federation phase 1 just collect the status of federated clusters.
2016-05-18 10:07:27 -07:00
Isaac Hollander McCreery
20e220e51c
Fix JENKINS_USE_SKEW_KUBECTL
2016-05-18 08:46:45 -07:00
k8s-merge-robot
48c90f15c5
Merge pull request #24509 from caesarxuchao/primitive-gc
...
Automatic merge from submit-queue
Adding garbage collector controller
Adding the propagator and garbage processor of the gc.
Design doc is at https://github.com/kubernetes/kubernetes/blob/master/docs/proposals/garbage-collection.md
<!-- Reviewable:start -->
---
This change is [<img src="http://reviewable.k8s.io/review_button.svg " height="35" align="absmiddle" alt="Reviewable"/>](http://reviewable.k8s.io/reviews/kubernetes/kubernetes/24509 )
<!-- Reviewable:end -->
2016-05-18 03:14:25 -07:00
k8s-merge-robot
07d1060192
Merge pull request #25765 from mtaufen/node_e2e_fix
...
Automatic merge from submit-queue
Remove call to setup_env from hack/e2e-node-test.sh
[]()
This messes with the GOPATH in a way that confuses ginkgo,
and doesn't appear to be necessary to run the tests
Removes likely unnecessary use of sudo, though it should be noted that
e2e_node_suite_test.go uses sudo to do something with locksmithd, so you
currently end up using it anyway.
Updates the error for not having ginkgo built to recommend the new vendor/
path for ginkgo, and to recommend using make instead of hack/build-go.sh
Should resolve #25682
2016-05-17 16:37:18 -07:00
Michael Taufen
ee079c958a
Remove call to setup_env from hack/e2e-node-test.sh
...
This messes with the GOPATH in a way that confuses ginkgo,
and doesn't appear to be necessary to run the tests
Removes likely unnecessary use of sudo, though it should be noted that
e2e_node_suite_test.go uses sudo to do something with locksmithd, so you
currently end up using it anyway.
Updates the error for not having ginkgo built to recommend the new vendor/
path for ginkgo, and to recommend using make instead of hack/build-go.sh
Should resolve #25682
2016-05-17 11:46:00 -07:00
Dan Lorenc
fb2817a335
Add the check_node_count flag to the excluded flags whitelist.
2016-05-17 10:53:42 -07:00
Dan Lorenc
7e9cae85fe
Add a flag that lets e2e tests be run against single-node clusters.
2016-05-17 09:18:20 -07:00
Wojciech Tyczynski
03268e44c0
Test storage upgrade to protobufs
2016-05-17 15:53:34 +02:00
Prashanth Balasubramanian
daa8e29c5b
Add a kubectl create secret tls command
2016-05-16 22:38:56 -07:00
Jeff Grafton
83dd910175
Add a timeout to the node e2e Ginkgo test runner
...
Also add a few debugging statements to indicate progress.
2016-05-16 20:22:41 -07:00
k8s-merge-robot
445deb21e6
Merge pull request #25043 from spxtr/node-name
...
Automatic merge from submit-queue
Add NODE_NAME to started.json.
Sometimes a single Jenkins node gets borked. Lets upload what node we're on before running tests. See [this list of env vars that Jenkins sets for us.](https://wiki.jenkins-ci.org/display/JENKINS/Building+a+software+project#Buildingasoftwareproject-JenkinsSetEnvironmentVariables ) I think this info should be added to gubernator.
2016-05-16 18:58:03 -07:00
Brendan Burns
092afb6285
Address comments.
2016-05-16 16:50:53 -07:00
Joe Finney
52f758e38a
Add NODE_NAME to started.json.
2016-05-16 16:21:45 -07:00
George Tankersley
8b507d8cdc
hack: allow devel builds of go
2016-05-16 11:06:21 -07:00
huangyuqi
21fe26bd07
remove the rs&subrs logic from cluster controller
2016-05-16 16:48:27 +08:00
k8s-merge-robot
0985f847ea
Merge pull request #25311 from swagiaal/check-openssl
...
Automatic merge from submit-queue
Verify that openssl is installed in local-up-cluster.sh
2016-05-16 01:45:54 -07:00
Chao Xu
21706384f7
use garbage queue drained instead of a watch
2016-05-16 00:14:51 -07:00
Chao Xu
c73406bcfe
the garbage collector controller
2016-05-15 16:04:19 -07:00
k8s-merge-robot
eae98632d5
Merge pull request #25627 from luxas/faster-local-up-cluster
...
Automatic merge from submit-queue
Build hyperkube in hack/local-up-cluster instead of separate binaries
This speeds up the build time a lot.
Also add arm64 as a valid arch
This is quite trivial. Let's get it in asap
@thockin @pmorie @liggitt @eparis @zmerlynn @smarterclayton
2016-05-15 09:49:30 -07:00
k8s-merge-robot
87403cfe7b
Merge pull request #25173 from ixdy/gcloud-grep-awk-cut
...
Automatic merge from submit-queue
Use --format='value(name)' with gcloud instead of grep/awk/cut
Fixing our fragile parsing of `gcloud` is getting old (#24746 , #25159 , maybe others?).
Instead, let's just get the proper output out of `gcloud` in the first place.
2016-05-15 07:46:28 -07:00
Lucas Käldström
8e64b5f347
Speed up hack/local-up-cluster.sh by building hyperkube instead of separate binaries. Also add arm64 as a valid arch
2016-05-15 16:38:11 +03:00
k8s-merge-robot
9cf6642531
Merge pull request #25110 from metral/recursive-rollout
...
Automatic merge from submit-queue
enable recursive processing in kubectl rollout
This PR was split out of https://github.com/kubernetes/kubernetes/pull/23673 per @deads2k's suggestion: https://github.com/kubernetes/kubernetes/pull/23673#discussion-diff-61290415
It makes use of the recursive processing of a directory in `kubectl rollout {undo,pause,resume}` which now also conforms to the [command conventions](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/kubectl-conventions.md#command-implementation-conventions ).
`kubectl rollout history` is being omitted for the time being as its encountering what appears to be an anomaly of an issue: https://github.com/kubernetes/kubernetes/issues/24606 . Once this issue has been resolved I will modify it to be recursive
2016-05-15 06:14:21 -07:00
k8s-merge-robot
5d6c5f5af8
Merge pull request #25022 from zhouhaibing089/sort-fix
...
Automatic merge from submit-queue
Support struct,array,slice types when sorting kubectl output
Fixes https://github.com/kubernetes/kubernetes/issues/24328 .
Briefly, `sorting_printer` only take cares of the following type kinds:
* `reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64`
* `reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64`
* `reflect.Float32, reflect.Float64`
* `reflect.String`
* `reflect.Ptr`
This commit aims to add `reflect.Struct, reflect.Slice, reflect.Array`.
/cc @bgrant0607
2016-05-15 04:16:12 -07:00
Madhusudan.C.S
47efee7ce4
Add more tests.
2016-05-14 23:19:18 -07:00
Madhusudan.C.S
7e486bd777
Build and use the teststale binary on only the host platform.
2016-05-14 20:29:39 -07:00
Madhusudan.C.S
317a7d2e52
Write the first test: Isn't it strange that the elaborate setup that is required alone is somewhat longer than the actual code to do the staleness check\!?
2016-05-14 20:29:38 -07:00
Madhusudan.C.S
55589e070b
Virtualize the constructs a bit to make the code testable.
2016-05-14 05:03:15 -07:00
Maciej Szulik
c283103602
Update upstream remote regex
2016-05-14 09:48:14 +02:00
k8s-merge-robot
0165fd2f6f
Merge pull request #25443 from nikhiljindal/tryingClientGen
...
Automatic merge from submit-queue
Adding Services to federation clientset
Commits:
1. Regenerate the client without any changes to client-gen
2. Update clientgen to add a parameter to specify generating client only for Services v1 object.
3. Regenerate federation_internalclientset
4. Regenerate federation_release_1_3
Second commit is the most important one. Other 3 commits are auto generated by running client-gen.
I have added a command line argument to client-gen that takes in a list of group/version/resource. If a group version is part of this list, then only the resources in this list are included in the client. For other group versions, the existing check of genclient=true in types.go is used.
Other alternatives considered were:
* Update genclient in types.go to mention the clientset name in which it should be included instead of just saying genclient=true (so Services will say genclient=core,federation while all other v1 resources will say genclient=core). This requires a code change in types.go to change a client set.
* Create another types.go which will only include Services and use that to generate federation clientset. This will lead to duplicate Service definition.
cc @caesarxuchao @lavalamp @jianhuiz @mfanjie @kubernetes/sig-cluster-federation
<!-- Reviewable:start -->
---
This change is [<img src="http://reviewable.k8s.io/review_button.svg " height="35" align="absmiddle" alt="Reviewable"/>](http://reviewable.k8s.io/reviews/kubernetes/kubernetes/25443 )
<!-- Reviewable:end -->
2016-05-14 00:20:28 -07:00
Madhusudan.C.S
704ef5bb6e
Replace log with glog.
...
Show log messages to users is unnecessary. It is only for
debugging purposes.
2016-05-13 23:09:44 -07:00
Madhusudan.C.S
dd154350e8
Address review comments.
2016-05-13 23:09:44 -07:00
Madhusudan.C.S
dcaf005ffe
Improve the speed of do-nothing build.
...
As thockin found out here https://github.com/kubernetes/kubernetes/issues/24518 ,
vast majority of the do-nothing build time is spent in rebuilding the test
binaries. There is no staleness check support for test binaries.
This commit implements the staleness checks for test binaries and uses them
while building packages.
Tests are TBD. I am still trying to figure out how to test this.
2016-05-13 23:09:44 -07:00
k8s-merge-robot
9796900306
Merge pull request #25551 from mml/db.store.codegen
...
Automatic merge from submit-queue
The remaining API changes for PodDisruptionBudget.
It's mostly the boilerplate required for the registry, some extra codegen, and a few tests.
Will squash once we're sure it's good.
2016-05-13 20:15:15 -07:00
Matt Liggett
f5e8d41431
Finish implementing policy API.
...
Registry implementation and addition to the master.
2016-05-13 17:27:58 -07:00
Jeff Lowdermilk
9a20ca2899
Merge pull request #25163 from derekwaynecarr/pod-eviction-grace-period-flag
...
Pod eviction grace period flag
2016-05-13 16:17:27 -07:00
k8s-merge-robot
ce80372573
Merge pull request #25500 from mml/2016
...
Automatic merge from submit-queue
It's 2016, yo.
2016-05-13 14:24:57 -07:00
nikhiljindal
73895c0418
Updating client-gen to support a user specified override on the resources to be included in generated client
2016-05-13 14:12:58 -07:00
Jeff Lowdermilk
1795edf355
Merge pull request #25376 from ixdy/dockerized-e2e
...
dockerized e2e: only mount GCE ssh keyfile
2016-05-13 13:50:32 -07:00
Matt Liggett
2bc46d5085
It's 2016, yo.
2016-05-13 12:41:40 -07:00
Jeff Lowdermilk
ba170aa191
Merge pull request #25492 from metral/test-cmd
...
fix filepath for cert_data in hack/test-cmd.sh
2016-05-13 11:23:33 -07:00
Jeff Lowdermilk
7bf10eb502
Merge pull request #25000 from ihmccreery/skew-client
...
Add infra to e2e-runner and job configs to allow running tests with a skewed kubectl
2016-05-13 10:35:50 -07:00
derekwaynecarr
d6354a54ad
Add kubelet flag for eviction max pod grace period
2016-05-13 11:19:05 -04:00
k8s-merge-robot
17345bf857
Merge pull request #25372 from derekwaynecarr/more-eviction-flags
...
Automatic merge from submit-queue
Add eviction-pressure-transitition-period flag to kubelet
This PR does the following:
* add the new flag to control how often a node will go out of memory pressure or disk pressure conditions see: https://github.com/kubernetes/kubernetes/pull/25282
* pass an `eviction.Config` into `kubelet` so we can group config
/cc @vishh
2016-05-13 05:46:15 -07:00
k8s-merge-robot
4bb30e0097
Merge pull request #24806 from jayunit100/kubectl-stdin
...
Automatic merge from submit-queue
[e2e] kubectl stdin
Problem: Currently kubectl heavily relies on files which have to be (for lack of a better word :):):)) "written" to the file system. This hinders adoption of something like gobindata, by forcing an intermediary generated-assets directory type thing.
Solution: Lets migrate `kubectl.go` testing over to using standard input streams.
cc @kubernetes/sig-testing @timothysc
2016-05-13 00:10:43 -07:00
Eric Paris
b4f5108d39
Ignore godep version used to created Godep.json
2016-05-12 22:04:24 -04:00
Eric Paris
ad3e18d60c
Stop pinning to version v53
2016-05-12 22:04:24 -04:00
Eric Paris
5543e2e3fd
Create a script to update godeps
...
Since its hard for an individual to remember that we need codecgen and
ginkgo in godeps but don't actually have that dependancy listed in a way
that godep can automatically find.
2016-05-12 22:04:19 -04:00
derekwaynecarr
2c01edf9ea
Add eviction-pressure-transition-period flag to kubelet
2016-05-12 17:33:00 -04:00
Jeff Lowdermilk
e93346def4
Lower ginkgo nodes to avoid resource contention in parallel tests
2016-05-12 14:12:37 -07:00
k8s-merge-robot
08440b5dcc
Merge pull request #24836 from Clarifai/gpu-impl
...
Automatic merge from submit-queue
WIP v0 NVIDIA GPU support
```release-note
* Alpha support for scheduling pods on machines with NVIDIA GPUs whose kubelets use the `--experimental-nvidia-gpus` flag, using the alpha.kubernetes.io/nvidia-gpu resource
```
Implements part of #24071 for #23587
I am not familiar with the scheduler enough to know what to do with the scores. Mostly punting for now.
Missing items from the implementation plan: limitranger, rkt support, kubectl
support and docs
cc @erictune @davidopp @dchen1107 @vishh @Hui-Zhi @gopinatht
2016-05-12 14:04:15 -07:00
k8s-merge-robot
f45bcc5ffb
Merge pull request #24900 from ericchiang/rbac_types
...
Automatic merge from submit-queue
pkg/apis/rbac: Add Openshift authorization API types
This PR updates #23396 by adding the Openshift RBAC types to a new API group.
Changes from Openshift:
* Omission of [ResourceGroups](4589987883/pkg/authorization/api/types.go (L32-L104)
) as most of these were Openshift specific. Would like to add the concept back in for a later release of the API.
* Omission of IsPersonalSubjectAccessReview as its implementation relied on Openshift capability.
* Omission of SubjectAccessReview and ResourceAccessReview types. These are defined in `authorization.k8s.io`
~~API group is named `rbac.authorization.openshift.com` as we omitted the AccessReview stuff and that seemed to be the lest controversial based on conversations in #23396 . Would be happy to change it if there's a dislike for the name.~~ Edit: API groups is named `rbac`, sorry misread the original thread.
As discussed in #18762 , creating a new API group is kind difficult right now and the documentation is very out of date. Got a little help from @soltysh but I'm sure I'm missing some things. Also still need to add validation and a RESTStorage registry interface. Hence "WIP".
Any initial comments welcome.
cc @erictune @deads2k @sym3tri @philips
2016-05-12 13:03:50 -07:00
Mike Metral
30f21fd431
enable recursive processing in kubectl rollout
2016-05-12 01:27:17 -07:00
k8s-merge-robot
87d11300f0
Merge pull request #25447 from nikhiljindal/verifyFedClientGen
...
Automatic merge from submit-queue
Updating hack/update-codegen to keep federation_clientset updated
Right now, there is no check for this and hence federation_clientset becomes stale over time.
Updating hack/update-codegen to keep federation_clientset updated.
hack/verify-codegen.sh ensures that it is updated.
cc @caesarxuchao @lavalamp @jianhuiz @kubernetes/sig-cluster-federation
2016-05-12 00:29:28 -07:00
k8s-merge-robot
0ef4c6407b
Merge pull request #24902 from cjcullen/webhookAuthn
...
Automatic merge from submit-queue
Webhook Token Authenticator
Add a webhook token authenticator plugin to allow a remote service to make authentication decisions.
2016-05-11 22:08:58 -07:00
k8s-merge-robot
b1560f36c3
Merge pull request #25477 from gmarek/e2e_dump
...
Automatic merge from submit-queue
Add a flag to disable dumpig logs after e2e test failure
cc @kubernetes/sig-testing
2016-05-11 20:34:58 -07:00
saadali
07f1e58d9a
Modify verify-godeps to use v63 and hack
2016-05-11 17:59:29 -07:00
Mike Metral
1737736960
fix filepath for cert_data
2016-05-11 13:07:45 -07:00
Isaac Hollander McCreery
3f3e2d9b9a
Add infra to e2e-runner to allow running tests with a skewed kubectl
2016-05-11 11:08:19 -07:00
k8s-merge-robot
7ae1dab280
Merge pull request #25172 from pwittrock/kubectl-apiversion
...
Automatic merge from submit-queue
Kubectl support for validating nested objects with different ApiGroups
## Pull Request Guidelines
1. Please read our [contributor guidelines](https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md ).
1. See our [developer guide](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md ).
1. Follow the instructions for [labeling and writing a release note for this PR](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes ) in the block below.
```release-note
kubectl now supports validation of nested objects with different ApiGroups (e.g. objects in a List)
```
[]()
#24089
2016-05-11 10:11:55 -07:00
gmarek
2696e35be3
Add a flag to disable dumpig logs after e2e test failure
2016-05-11 16:53:30 +02:00
Eric Chiang
6a1f46895e
pkg/apis: rbac types added
2016-05-11 12:01:06 +02:00
nikhiljindal
754848cf52
Updating update-codegen to update federation_clientset as well
2016-05-10 17:20:21 -07:00
CJ Cullen
eb3b0e78b4
Add a webhook token authenticator plugin.
2016-05-10 14:54:35 -07:00
Maciej Szulik
a31ca0dc98
enable batch/v2alpha1 tests
2016-05-10 22:40:24 +02:00
Maciej Szulik
5ef870d4c7
Added JobTemplate, a preliminary step for ScheduledJob and Workflow
2016-05-10 21:48:39 +02:00
Jay Vyas
801c968fff
Standard input for kubectl tests
...
rebased to include gobindata as well.
2016-05-10 14:16:50 -04:00
Phillip Wittrock
680b2b9d09
Kubectl support for validating nested objects with different ApiGroups (e.g. Lists containing objects in different api groups). Closes #24089
2016-05-09 19:38:40 -07:00
Rudi Chiarito
362c763fca
WIP v0 NVIDIA GPU support
...
Implements part of #24071
I am not familiar with the scheduler enough to know what to do with the scores. Punting for now.
Missing items from the implementation plan: limitranger, rkt support, kubectl
support and user docs
2016-05-09 19:20:05 -04:00
Jeff Grafton
5c77a3bd7c
dockerized e2e: explicitly mount public and private ssh keys
2016-05-09 15:50:55 -07:00
k8s-merge-robot
e973b5d27a
Merge pull request #25354 from wojtek-t/fix_protobuf_generator
...
Automatic merge from submit-queue
Fix script for updating protobufs.
Fix #25351
@thockin
2016-05-09 09:24:58 -07:00
k8s-merge-robot
58ccbffb82
Merge pull request #25303 from ingvagabund/hack-update-all-remove-dollar-symbol
...
Automatic merge from submit-queue
Hack update all remove dollar symbol
When not running ./hack/update in silent mode, the script fails due to undefined ``$Updating`` variable.
2016-05-09 08:36:10 -07:00
Wojciech Tyczynski
9a8e4f69cd
Fix script for updating protobufs.
2016-05-09 15:57:26 +02:00
k8s-merge-robot
06e2a3543f
Merge pull request #25310 from swagiaal/cloud-provder
...
Automatic merge from submit-queue
Add cloud-provider setting to local-up-cluster.sh
2016-05-09 01:08:19 -07:00
k8s-merge-robot
fa95788e56
Merge pull request #24242 from thockin/godep_vendor_dir
...
Automatic merge from submit-queue
Move godeps to vendor/
This is a first-step towards glide support, maybe we don't want or need to take this, but it was easy to try.
This fails to compile, not sure why:
```
# k8s.io/kubernetes/pkg/apis/extensions/v1beta1
_output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion_generated.go:2703: undefined: extensions.ClusterAutoscaler
_output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion_generated.go:2703: undefined: ClusterAutoscaler
_output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion_generated.go:2719: undefined: extensions.ClusterAutoscaler
_output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion_generated.go:2719: undefined: ClusterAutoscaler
_output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion_generated.go:2723: undefined: extensions.ClusterAutoscalerList
_output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion_generated.go:2723: undefined: ClusterAutoscalerList
_output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion_generated.go:3468: Convert_extensions_JobSpec_To_v1beta1_JobSpec redeclared in this block
previous declaration at _output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion.go:328
_output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion_generated.go:3845: Convert_extensions_ScaleStatus_To_v1beta1_ScaleStatus redeclared in this block
previous declaration at _output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion.go:98
_output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion_generated.go:4737: Convert_v1beta1_JobSpec_To_extensions_JobSpec redeclared in this block
previous declaration at _output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion.go:380
_output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion_generated.go:5186: Convert_v1beta1_ScaleStatus_To_extensions_ScaleStatus redeclared in this block
previous declaration at _output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion.go:120
_output/local/go/src/k8s.io/kubernetes/pkg/apis/extensions/v1beta1/conversion_generated.go:2723: too many errors
!!! Error in /home/thockin/tmp/godep-vendor/src/k8s.io/kubernetes/hack/lib/golang.sh:417
```
2016-05-08 22:20:09 -07:00
k8s-merge-robot
5dd087040b
Merge pull request #24511 from pbx0/kubelet-symlink
...
Automatic merge from submit-queue
cluster/images/hyperkube: create symlink for each server
Add a kubelet symlink so that the hyperkube image can appear as a kubelet image. https://github.com/kubernetes/kubernetes/issues/24510
2016-05-08 21:31:23 -07:00
Tim Hockin
2100016e0f
Don't set the golang env for ginkgo
...
a) it doesn't need it
b) changing CWD to a path with symlinks breaks deep within ginkgo, where it
crafts a relative path to ../../../../../../platforms/amd64/whatever which then
traverses the physical path not the symlinked one, and breaks.
2016-05-08 20:32:09 -07:00
Tim Hockin
18e7a3eb24
Get rid of hack/after-build scripts
...
The build is now fast enough to not need them.
2016-05-08 20:32:06 -07:00
Tim Hockin
833770d9ac
Fix verify-godeps
2016-05-08 20:30:39 -07:00
Tim Hockin
bfabdb05c5
Fix update-generated-swagger-docs
2016-05-08 20:30:39 -07:00
Tim Hockin
3facb3522b
Godeps licenses
...
Fix the licenses script and run it.
2016-05-08 20:30:39 -07:00
Tim Hockin
537602d296
Get rid of _workspace in jenkins
2016-05-08 20:30:38 -07:00
Tim Hockin
79e2e5c108
Make *-generated-protobuf work with vendor
2016-05-08 20:30:38 -07:00
Tim Hockin
9a83015e60
Fix path munging funcs and usage
...
Our `realpath` and `readlink -f` functions (required only because of MacOS,
thanks Steve) were poor substitutes at best. Mostly they were downright
broken. This thoroughly overhauls them and adds a test (in comments, since we
don't seem to have shell tests). For all the interesting cases I could think
of, the fakes act just like the real thing.
Then use those and canonicalize KUBE_ROOT. In order to make recursive calls of
our shell tool not additively grow `pwd` we have to essentially make the
sourcing of init.sh idempotent.
2016-05-08 20:30:38 -07:00
Tim Hockin
527cb50583
Demand at least go1.6
2016-05-08 20:30:37 -07:00
Tim Hockin
cbf886c7f4
Convert everything to use vendor/
2016-05-08 20:30:37 -07:00
k8s-merge-robot
41b7b04faf
Merge pull request #24554 from ingvagabund/dhodovska-events-flag-for-describers
...
Automatic merge from submit-queue
Introduce events flag for describers
Printing events for a given object is not always needed. Thus, introducing --show-events=false to ``kubectl describe`` to skip events printing.
Fixes : #24239
2016-05-08 14:41:28 -07:00
k8s-merge-robot
f46f35a9df
Merge pull request #23600 from mikedanese/addon-manager
...
Automatic merge from submit-queue
run kube-addon-manager in a static pod
Depends on https://github.com/kubernetes/kubernetes/pull/23605 and https://github.com/kubernetes/kubernetes/pull/24108
Ref #23233
2016-05-08 11:30:44 -07:00
k8s-merge-robot
8a04506546
Merge pull request #23009 from uluyol/c-pause
...
Automatic merge from submit-queue
Reimplement 'pause' in C - smaller footprint all around
Statically links against musl. Size of amd64 binary is 3560 bytes.
I couldn't test the arm binary since I have no hardware to test it on, though I assume we want it to work on a raspberry pi.
This PR also adds the gcc5/musl cross compiling image used to build the binaries.
@thockin
2016-05-08 09:29:32 -07:00
k8s-merge-robot
f2f3b49f58
Merge pull request #22575 from MikaelCluseau/wip-issue-20466
...
Automatic merge from submit-queue
Add subPath to mount a child dir or file of a volumeMount
Allow users to specify a subPath in Container.volumeMounts so they can use a single volume for many mounts instead of creating many volumes. For instance, a user can now use a single PersistentVolume to store the Mysql database and the document root of an Apache server of a LAMP stack pod by mapping them to different subPaths in this single volume.
Also solves https://github.com/kubernetes/kubernetes/issues/20466 .
2016-05-08 08:45:15 -07:00
Sami Wagiaalla
e9045bea22
Verify that openssl is installed in local-up-cluster.sh
2016-05-07 12:59:17 -04:00
Sami Wagiaalla
dc6f36634d
Add cloud-provider setting to local-up-cluster.sh
2016-05-07 12:57:58 -04:00
Jan Chaloupka
8f6b8923f0
Remove superfluous dollar causing hack/update-all.sh to fail when not running in silent mode
2016-05-07 10:15:32 +02:00
Matt Liggett
c00fa39eee
Define PodDisruption API types.
2016-05-06 17:24:53 -07:00
Jeff Grafton
bc7922c374
Replace awkward bash pipelines with gcloud's --format='value()'
...
Also remove old `gcloud compute instance-groups managed get-operation`
code. This command doesn't even exist in gcloud anymore.
2016-05-06 15:49:57 -07:00
Robert Bailey
f0d4437fc7
Merge pull request #24769 from smarterclayton/testcmd_on_mac
...
Allow test-cmd to run on non-Linux OS
2016-05-06 13:54:43 -07:00
Robert Bailey
2f65d2e617
Merge pull request #24666 from smarterclayton/munge_upstream
...
mungedocs should not assume upstream remote
2016-05-06 13:37:35 -07:00
Robert Bailey
828b4f8240
Merge pull request #24825 from kubernetes/revert-23157-fix-tags
...
Revert "Always use long format in git tag."
2016-05-06 13:34:32 -07:00
Mike Danese
3e1c0b5951
run kube-addon-manager in a pod
2016-05-06 11:01:06 -07:00
k8s-merge-robot
a64ef4d3df
Merge pull request #25042 from wonderfly/trusty_beta_to_1_2
...
Automatic merge from submit-queue
Update e2e-runner.sh so it can fetch multiple types of Trusty images
Trusty beta images now work with k8s 1.2.
@spxtr, @andyzheng0831 Can you review this?
2016-05-06 04:51:57 -07:00
k8s-merge-robot
346ddc52c2
Merge pull request #24748 from Random-Liu/cleanup-with-new-engine-api
...
Automatic merge from submit-queue
Kubelet: Cleanup with new engine api
Finish step 2 of #23563
This PR:
1) Cleanup go-dockerclient reference in the code.
2) Bump up the engine-api version.
3) Cleanup the code with new engine-api.
Fixes #24076 .
Fixes #23809 .
/cc @yujuhong
2016-05-06 03:16:53 -07:00
Jan Chaloupka
dd2c9c578d
Introduce kubectl describe --show-events
...
Introduce DescriberSettings for Describer display options
Introduce --show-events flag and DescriberSettings in Describer methods
Introduce unit-tests
Regenerated kubectl describe docs
Add events flag tests to test-cmd.sh
Signed-off-by: dhodovsk@redhat.com
Signed-off-by: jchaloup@redhat.com
2016-05-06 11:40:11 +02:00
Kevin
82ba4f077e
implement inter pod topological affinity and anti-affinity
2016-05-06 06:46:23 +00:00
Wojciech Tyczynski
28a8a23471
Merge pull request #25240 from thockin/fix-codecgen-sort
...
Fix codecgen sort
2016-05-06 08:28:51 +02:00
k8s-merge-robot
9a1b2540b0
Merge pull request #24739 from zmerlynn/1000nodes
...
Automatic merge from submit-queue
Jenkins: Clean up even if we can't bring cluster up
We're gathering all the cluster logs, go ahead and clean up the
resources.
2016-05-05 23:16:41 -07:00
Mikaël Cluseau
06900a934d
Introduce subPath in VolumeMount
2016-05-06 15:08:41 +11:00
Tim Hockin
24f9beb1ff
remove DBG and old code
2016-05-05 20:11:16 -07:00
Tim Hockin
457b27d25f
Fix codecgen sort
2016-05-05 20:10:38 -07:00
k8s-merge-robot
ab36e0e35e
Merge pull request #24710 from smarterclayton/store_proto_in_etcd
...
Automatic merge from submit-queue
Allow etcd to store protobuf objects
Split storage serialization from client negotiation, and allow API server to take flag controlling serialization.
TODO:
* [x] API server still doesn't start - range allocation object doesn't seem to round trip correctly to etcd
* [ ] Verify that third party resources are ignoring protobuf (add a test)
* [ ] Add integration tests that verify storage is correctly protobuf
* [ ] Add a global default for which storage format to prefer?
2016-05-05 19:00:20 -07:00
k8s-merge-robot
ba7dc5e6e6
Merge pull request #25118 from ixdy/dockerized-e2e
...
Automatic merge from submit-queue
Map secret files into dockerized e2e
Rather than copying the GCE and AWS private keys/credentials to each Jenkins VM, we can put them in credentials and map them through.
This is one half of the change; if the relevant environment variables are set, we'll mount the files in.
cc @fejta @rmmh @apelisse
2016-05-05 16:52:05 -07:00
Patrick Baxter
4d35231bd6
cmd/hyperkube: add make-symlinks flag
2016-05-05 21:36:18 +00:00
Clayton Coleman
e0ebcf4216
Split the storage and negotiation parts of Codecs
...
The codec factory should support two distinct interfaces - negotiating
for a serializer with a client, vs reading or writing data to a storage
form (etcd, disk, etc). Make the EncodeForVersion and DecodeToVersion
methods only take Encoder and Decoder, and slight refactoring elsewhere.
In the storage factory, use a content type to control what serializer to
pick, and use the universal deserializer. This ensures that storage can
read JSON (which might be from older objects) while only writing
protobuf. Add exceptions for those resources that may not be able to
write to protobuf (specifically third party resources, but potentially
others in the future).
2016-05-05 12:08:23 -04:00
Piotr Szczesniak
caa96f4cf3
Merge pull request #25133 from jayunit100/c2fix
...
flake fix for cassandra:cassandra
2016-05-05 10:00:00 +02:00
Muhammed Uluyol
f3690e2d5e
build/pause: write in C
...
Builds statically against glibc. References to the old pause
image have been updated.
2016-05-04 21:45:52 -04:00
jay vyas
7a824aaf49
Cassandra de-flake
2016-05-04 21:11:56 -04:00
k8s-merge-robot
83c121e921
Merge pull request #25108 from lavalamp/master
...
Automatic merge from submit-queue
Fix verify codecgen
Fixes #25103 .
2016-05-04 14:44:16 -07:00
Daniel Smith
8ac89346db
Fix codecgen
...
* Make verify call update
* Make update's topological sort not confused about the "io" package
2016-05-04 13:01:43 -07:00
Jeff Grafton
6a0c152476
Map secret files into dockerized e2e
2016-05-04 12:29:04 -07:00
k8s-merge-robot
bacb12a112
Merge pull request #25001 from gmarek/jenkins
...
Automatic merge from submit-queue
Default KUBEMARK_TEST_ARGS
2016-05-04 10:16:40 -07:00
k8s-merge-robot
1642083e60
Merge pull request #24645 from jlowdermilk/rolling-update
...
Automatic merge from submit-queue
kubectl rolling-update support for same image
Fixes #23497 .
Enables `kubectl rolling-update --image` to the same image, adding a `--image-pull-policy` flag to remove ambiguity. This allows rolling-update to behave as an "update and/or restart" (https://github.com/kubernetes/kubernetes/issues/23497#issuecomment-212349730 ), or as a forced update when the same tag can mean multiple versions (e.g. `:latest`). cc @janetkuo @nikhiljindal
2016-05-04 07:24:22 -07:00
k8s-merge-robot
43b644ea6f
Merge pull request #24998 from spxtr/remove-test-history
...
Automatic merge from submit-queue
Move test-history code into the test-infra repository.
~~Waiting on https://github.com/kubernetes/test-infra/pull/3~~ ready to go
2016-05-03 17:41:24 -07:00
k8s-merge-robot
cfd7a99fe3
Merge pull request #25046 from dlorenc/boilerplate
...
Automatic merge from submit-queue
Add several arguments to boilerplate.py
This commit makes the root directory and boilerplate content directory configurable.
The defaults have remained the same, so no behavior changes should be expected.
cc @eparis
ref https://github.com/kubernetes/minikube/pull/37
2016-05-03 11:26:29 -07:00
k8s-merge-robot
f29d597d02
Merge pull request #25052 from ixdy/build-image-name-in-docker
...
Automatic merge from submit-queue
Use HOSTNAME in Docker build image tag hash
Fixes #24661 by including `$HOSTNAME` when generating the build image tag hash.
When running the verification checks under Docker, the `$KUBE_ROOT` will be identical across builds, so tags will collide unless we add additional uniqueness. By default, the hostname inside a Docker container is its ID, which should be unique enough for us.
I also deleted a misleading error message from the same check.
@kubernetes/sig-testing
2016-05-03 02:00:52 -07:00
dlorenc
bc9877be3e
Make flags hyphenated instead of using underscores.
2016-05-02 21:45:09 -07:00
dlorenc
e1c5791631
Add several arguments to boilerplate.py
...
This commit makes the root directory, boilerplate content directory and
the directories to skip configurable.
The defaults have remained the same, so no behavior changes should be expected.
2016-05-02 21:45:04 -07:00
Jeff Grafton
83ac3ea0c9
Make comment explain why we need sudo
...
Also make the check more correct and quieter.
2016-05-02 16:25:03 -07:00
Jeff Grafton
0f041382ee
Use HOSTNAME in Docker build image tag hash
...
Additionally, use REPO_DIR in update-generated-protobuf, since this
should be more unique (when set).
2016-05-02 16:03:27 -07:00
Joe Finney
3da5c69307
Move test history into the test-infra repo.
2016-05-02 15:31:00 -07:00
Daniel Wang
f355222060
e2e-runner.sh: Ability to fetch multiple types of Trusty images
2016-05-02 15:20:19 -07:00
Joe Finney
60d50d7253
Update Jenkins README to point to test-infra.
2016-05-02 13:43:35 -07:00
Joe Finney
df832d15ce
Remove Jenkins Job Builder scripts and configs.
2016-05-02 13:43:35 -07:00
k8s-merge-robot
708c1a5c95
Merge pull request #24636 from ixdy/dockerized-e2e
...
Automatic merge from submit-queue
Run Kubemark builds inside Docker
Since Docker-in-Docker is tricky to get right (esp. wrt volume mounts), I'm only enabling it when necessary for a build (e.g. for kubemark).
cc @spxtr @fejta @wojtek-t
2016-05-02 13:16:18 -07:00
zhouhaibing089
09d4d5ed78
let type struct,array,slice also being considerred when sorting kubectl output
2016-05-02 23:17:18 +08:00
k8s-merge-robot
f500194d92
Merge pull request #23673 from metral/multiple-resources
...
Automatic merge from submit-queue
allow kubectl subcmds to process multiple resources
~~autoscale, expose & patch~~ Many kubectl subcommands were limited to processing one resource at a time.
This PR allows those subcommands to process multiple resources.
This PR is in reference to https://github.com/kubernetes/kubernetes/pull/23116#issuecomment-202360784 by @deads2k
2016-05-02 07:09:44 -07:00
k8s-merge-robot
c6157a2356
Merge pull request #24266 from spxtr/1.6.1
...
Automatic merge from submit-queue
Up to go 1.6.2 for build and test.
~~1.6.1 contains some security fixes. 1.6.2 should be out soon.~~ 1.6.2 is out :D
Images aren't pushed yet.
2016-05-02 05:23:16 -07:00
k8s-merge-robot
66730c53c5
Merge pull request #24445 from vishh/framework-node-e2e
...
Automatic merge from submit-queue
Framework support for node e2e.
This should let us port existing e2e tests to the node e2e suite, if the tests are node specific.
2016-05-02 02:17:48 -07:00
k8s-merge-robot
8fba6de835
Merge pull request #24117 from XiaoningDing/federation-client
...
Automatic merge from submit-queue
Federation client for cluster
generate v1alpha1 and unversioned client for federation/clusters
#23653 , requires #23847 , #23998
@nikhiljindal @quinton-hoole @caesarxuchao
2016-05-02 01:41:08 -07:00
Mike Metral
999c8e211e
allow kubectl subcmds to process multiple resources
...
- use resource.Visit() to recursively process resources, as well as, aggregate
errors where possible
2016-05-01 20:27:37 -07:00
gmarek
07f1b2f4c5
Default KUBEMARK_TEST_ARGS
2016-04-30 01:33:10 +02:00
Vishnu kannan
fa476b8044
Framework support for node e2e.
...
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-04-29 15:37:35 -07:00
Random-Liu
3876972d3f
Clean up go-dockerclient reference.
2016-04-29 13:32:19 -07:00
Joe Finney
4c298678af
Remove metadata-cache.
2016-04-29 11:50:55 -07:00
k8s-merge-robot
11298d02e0
Merge pull request #24455 from hongchaodeng/fl
...
Automatic merge from submit-queue
Provide flags to use etcd3 backed storage
ref: #24405
What's in this PR?
- Add a new flag "storage-backend" to choose "etcd2" or "etcd3". By default (i.e. empty), it's "etcd2".
- Take out etcd config code into a standalone package and let it create etcd2 or etcd3 storage backend given user input.
2016-04-29 08:49:04 -07:00
k8s-merge-robot
f1fca6fd9d
Merge pull request #24969 from gmarek/jenkins
...
Automatic merge from submit-queue
Fix zone in kubemark-100
2016-04-29 03:08:34 -07:00
gmarek
f53ba39a7a
Fix zone in kubemark-100
2016-04-29 10:43:11 +02:00
k8s-merge-robot
b16fb60c87
Merge pull request #24956 from fejta/own
...
Automatic merge from submit-queue
Create OWNERS for jenkins data
Assigne jenkins changes to more precise owners.
2016-04-28 23:17:59 -07:00
Arvinderpal
1a92f2b9de
Adds --network-plugin-dir argument to hack/local-up-cluster.sh
...
to allow local deploys to specify cni plugin directory.
2016-04-28 21:03:33 -07:00
Erick Fejta
d8456690c0
Create OWNERS for jenkins data
2016-04-28 18:03:11 -07:00
jianhuiz
d169fa6864
generate v1alpha and unversioned clientset for federation/clusters
2016-04-28 16:27:22 -07:00
k8s-merge-robot
5fc5967059
Merge pull request #24941 from gmarek/jenkins
...
Automatic merge from submit-queue
Move kubemark-100 to us-central
2016-04-28 12:33:29 -07:00
Jeff Grafton
03934a9081
Enable docker-in-docker and run Kubemark tests in dockerized-e2e.
2016-04-28 11:53:49 -07:00
Jeff Grafton
0db145c15d
Support docker-in-docker in containerized e2e when needed.
2016-04-28 11:52:47 -07:00
gmarek
89c39bc3eb
Move kubemark-100 to us-central
2016-04-28 20:11:28 +02:00
Ryan Hitchman
a563c0173c
Fix test-history. RE objects aren't callable.
2016-04-28 11:11:11 -07:00
k8s-merge-robot
8179a0d30e
Merge pull request #24616 from gmarek/jenkins
...
Automatic merge from submit-queue
Add kubemark-100 for testing out new performance measurements
cc @spxtr
2016-04-28 06:49:48 -07:00
Hongchao Deng
c0071a1595
add flags to enable etcd3
2016-04-28 09:48:16 +08:00
Clayton Coleman
4636af5b87
mungedocs should not assume upstream remote
...
The standard Git convention is "origin", not "upstream", so make it
flexible in the scripts for those who are set up differently.
2016-04-27 21:33:09 -04:00
k8s-merge-robot
bc1756c56c
Merge pull request #24370 from fejta/crit
...
Automatic merge from submit-queue
Add blocking suites to daily summary
Add a section for blocking suites, and refactor some of the code.

/cc @rmmh
2016-04-27 17:24:23 -07:00
gmarek
b5dcf822c8
Add bi-hourly kubemark-100 for testing out new performance measurements
2016-04-27 22:17:48 +02:00
CJ Cullen
3253739505
Use ABAC authz instead of AllowAll.
2016-04-27 11:38:15 -07:00
k8s-merge-robot
3a19ad7908
Merge pull request #24559 from derekwaynecarr/eviction_flags
...
Automatic merge from submit-queue
Add kubelet flags for eviction threshold configuration
This PR just adds the flags for kubelet eviction and the associated generated code.
I am happy to tweak text, but we can also do that later at this point in the release.
Since this causes codegen, I wanted to stage this first.
/cc @vishh @kubernetes/sig-node
2016-04-27 10:25:48 -07:00
Zach Loafman
d1dadf70f4
Jenkins: Clean up even if we can't bring cluster up
...
We're gathering all the cluster logs, go ahead and clean up the
resources.
2016-04-27 09:44:14 -07:00
k8s-merge-robot
9db40b6b8d
Merge pull request #24345 from gmarek/enable_gatherer
...
Automatic merge from submit-queue
Enable resource gatherer in Kubemark tests
Depends on #24291
Ref. #23820
cc @jlowdermilk
2016-04-27 08:32:20 -07:00
k8s-merge-robot
3fa84134cd
Merge pull request #24124 from vmware/photon-controller
...
Automatic merge from submit-queue
Initial kube-up support for VMware's Photon Controller
This is for: https://github.com/kubernetes/kubernetes/issues/24121
Photon Controller is an open-source cloud management platform. More
information is available at:
http://vmware.github.io/photon-controller/
This commit provides initial support for Photon Controller. The
following features are tested and working:
- kube-up and kube-down
- Basic pod and service management
- Networking within the Kubernetes cluster
- UI and DNS addons
It has been tested with a Kubernetes cluster of up to 10
nodes. Further work on scaling is planned for the near future.
Internally we have implemented continuous integration testing and will
run it multiple times per day against the Kubernetes master branch
once this is integrated so we can quickly react to problems.
A few things have not yet been implemented, but are planned:
- Support for kube-push
- Support for test-build-release, test-setup, test-teardown
Assuming this is accepted for inclusion, we will write documentation
for the kubernetes.io site.
We have included a script to help users configure Photon Controller
for use with Kubernetes. While not required, it will help some
users get started more quickly. It will be documented.
We are aware of the kube-deploy efforts and will track them and
support them as appropriate.
2016-04-27 01:02:03 -07:00
k8s-merge-robot
b7e4672db9
Merge pull request #23847 from XiaoningDing/federation-apiobject-cluster
...
Automatic merge from submit-queue
Federation apiobject cluster
add federation api group
add cluster api object and registry
~~generate cluster client~~ moved to #24117
update scripts to generate files for /federation
#19313 #23653 #23554
@nikhiljindal @quinton-hoole, @deepak-vij, @XiaoningDing, @alfred-huangjian @mfanjie @huangyuqi @colhom
2016-04-27 00:26:22 -07:00
Erick Fejta
e01825bfee
Add blocking suites to daily summary
...
Add title and optional script to html header
2016-04-26 20:15:25 -07:00
Jeff Grafton
6367cd135f
Only remove day+ old containers in Jenkins daily cleanup
2016-04-26 17:08:23 -07:00
k8s-merge-robot
64fbb4a81e
Merge pull request #24740 from caesarxuchao/change-update-all-order
...
Automatic merge from submit-queue
update codegen before update codecgen
Currently if I remove an API field, update-codecgen will complain generated deepcopy functions referring to invalid fields. Running update-codegen before update-codecgen solves the problem.
2016-04-26 15:13:40 -07:00
Isaac Hollander McCreery
215872613b
Revert "Always use long format in git tag."
2016-04-26 15:03:15 -07:00
Joe Finney
6b012493c3
Revert "Shallow clone for kubernetes-build and kubernetes-test-go jobs."
...
This reverts commit 5121ce3dc3
.
2016-04-26 14:15:42 -07:00
k8s-merge-robot
95f2ca2ff6
Merge pull request #24766 from spxtr/shallow-ye
...
Automatic merge from submit-queue
Shallow clone for kubernetes-build and kubernetes-test-go jobs.
This should save us about 160M per clone.
2016-04-26 13:00:23 -07:00
gmarek
24bf07cc20
Enable resource gatherer in Kubemark tests
2016-04-26 21:53:05 +02:00
k8s-merge-robot
96586e7c60
Merge pull request #23958 from petervo/byte-args
...
Automatic merge from submit-queue
kubectl: Allow []byte config fields to be set by the cli
Allows []byte config fields such as 'certificate-authority-data' to be set using `kubectl config set` commands.
2016-04-26 10:23:07 -07:00
k8s-merge-robot
9b08bc62d1
Merge pull request #24623 from ixdy/kubemark-cluster-logs
...
Automatic merge from submit-queue
Use cluster/log-dump.sh to collect base cluster logs in kubemark
Fixes #24415 .
cc @fejta @spxtr @wojtek-t
2016-04-26 09:13:42 -07:00
k8s-merge-robot
d609e6cc98
Merge pull request #24676 from jeffvance/hack-pv
...
Automatic merge from submit-queue
added claim_binder sync period
simple addition to local-up-cluster to support pvclaimbinder-sync-period.
2016-04-26 08:07:15 -07:00
k8s-merge-robot
b8131feaf4
Merge pull request #24131 from fejta/cron
...
Automatic merge from submit-queue
Script to cache metadata requests on the jenkins master
Fixes https://github.com/kubernetes/kubernetes/issues/23545
Create an http server which caches most requests to the metadata server. Use special logic to cache access tokens such that the expires_on json field is correct. Add a script to simplify enabling/disabling the cache by editing `/etc/hosts`
2016-04-26 08:07:13 -07:00
jianhuiz
3bdd4130cd
add protobuf generation
2016-04-26 02:08:10 -07:00
jianhuiz
1c1ad1ad3f
add cluster registry
2016-04-26 02:06:47 -07:00
Erick Fejta
7605ff0380
Script to cache metadata requests on the jenkins master
2016-04-25 23:15:27 -07:00
Clayton Coleman
4752d1a181
Allow test-cmd to run on non-Linux OS
2016-04-25 19:40:25 -04:00
Joe Finney
5121ce3dc3
Shallow clone for kubernetes-build and kubernetes-test-go jobs.
2016-04-25 15:43:55 -07:00
Zach Loafman
a505882adb
gke-large-cluster: Allow up to 1% of 1000 = 10 nodes
...
Per 2016/03/16 GKE release note, CreateCluster can return success with
only 99% success.
2016-04-25 14:16:26 -07:00
Alain Roy
fa9d79df75
Initial kube-up support for VMware's Photon Controller
...
This is for: https://github.com/kubernetes/kubernetes/issues/24121
Photon Controller is an open-source cloud management platform. More
information is available at:
http://vmware.github.io/photon-controller/
This commit provides initial support for Photon Controller. The
following features are tested and working:
- kube-up and kube-down
- Basic pod and service management
- Networking within the Kubernetes cluster
- UI and DNS addons
It has been tested with a Kubernetes cluster of up to 10
nodes. Further work on scaling is planned for the near future.
Internally we have implemented continuous integration testing and will
run it multiple times per day against the Kubernetes master branch
once this is integrated so we can quickly react to problems.
A few things have not yet been implemented, but are planned:
- Support for kube-push
- Support for test-build-release, test-setup, test-teardown
Assuming this is accepted for inclusion, we will write documentation
for the kubernetes.io site.
We have included a script to help users configure Photon Controller
for use with Kubernetes. While not required, it will help some
users get started more quickly. It will be documented.
We are aware of the kube-deploy efforts and will track them and
support them as appropriate.
2016-04-25 13:24:16 -07:00
Zach Loafman
cc7634f84a
Change kubernetes-e2e-gke-large-cluster to n1-highmem-2
...
c.f. internal b/27776043
2016-04-25 11:19:42 -07:00
Chao Xu
5cd4929764
update codegen before update codecgen
2016-04-25 11:15:53 -07:00
Jeff Vance
f4f6a53a3b
added claim_binder sync period
2016-04-25 09:40:50 -07:00
Jeff Lowdermilk
1baa473ef2
kubectl rolling-update support for same image
2016-04-25 09:20:15 -07:00
derekwaynecarr
1ff0a793d7
Add generated artifacts for kubelet flags
2016-04-24 19:03:23 -04:00
k8s-merge-robot
945daaae91
Merge pull request #24626 from nikhiljindal/kubeapiversions
...
Automatic merge from submit-queue
Removing KUBE_API_VERSIONS from our test scripts
We dont need to specify them.
Its an unnecessary extra change that people have to make while adding a group.
We also need this change for ubernetes.
cc @caesarxuchao @jianhuiz
2016-04-22 16:36:19 -07:00
petervo
4f9d3ace5d
kubectl: Allow []byte config fields to be set by the cli
...
Allows []byte config fields such as 'certificate-authority-data'
to be set using `kubectl config set` commands.
2016-04-22 15:53:24 -07:00
k8s-merge-robot
2e9bcb8311
Merge pull request #24025 from ZJU-SEL/fix-working-dirctory-mistake
...
Automatic merge from submit-queue
fix relative working dirctory of KUBE_ROOT
fix relative working dirctory of `KUBE_ROOT`, do not need to change to `KUBE_ROOT` in the first place
Signed-off-by: Crazykev <zcq8989@gmail.com>
2016-04-22 15:01:16 -07:00
Joe Finney
009ea19bf6
Up to go 1.6.2.
2016-04-22 14:21:52 -07:00
k8s-merge-robot
19a106f61e
Merge pull request #24274 from euank/configurable-release-bucket
...
Automatic merge from submit-queue
jenkins: Allow configuration of release bucket
This allows others to leverage the existing E2E code to test some
patched kube binary by simply overriding the bucket and reusing many of
the existing scripts
2016-04-21 23:09:05 -07:00
k8s-merge-robot
7acb5db00f
Merge pull request #24637 from caesarxuchao/disable-linkcheck-jenkins
...
Automatic merge from submit-queue
disable linkcheck jenkins job
I don't have time to fix linkcheck any soon, so temporarily disable the job.
ref #23162
2016-04-21 19:04:00 -07:00
Chao Xu
68e474381e
disable linkcheck jenkins job
2016-04-21 16:07:47 -07:00
k8s-merge-robot
c9ab0ebbd4
Merge pull request #24627 from zmerlynn/1000nodes
...
Automatic merge from submit-queue
First pass at a GKE large cluster Jenkins job
Runs a 1000 node GKE parallel e2e test. On demand only. We'll add more
tests as I see what actually works - this is going to have some
flakiness on its own.
2016-04-21 15:40:54 -07:00
k8s-merge-robot
e73606b974
Merge pull request #24574 from nikhiljindal/buildFederatedServer
...
Automatic merge from submit-queue
update hack/build-go to build federation/cmd/federated-apiserver as well
federation/cmd/federated-apiserver was added in https://github.com/kubernetes/kubernetes/pull/23509
cc @jianhuiz
2016-04-21 15:00:06 -07:00
Jeff Grafton
308692a0c5
Use cluster/log-dump.sh to collect base cluster logs in kubemark
2016-04-21 14:39:10 -07:00
Zach Loafman
fa2a516fce
First pass at a GKE large cluster Jenkins job
...
Runs a 1000 node GKE parallel e2e test. On demand only. We'll add more
tests as I see what actually works - this is going to have some
flakiness on its own.
2016-04-21 14:36:56 -07:00
nikhiljindal
75b0842388
Removing KUBE_API_VERSIONS from our test scripts
2016-04-21 13:56:04 -07:00
k8s-merge-robot
34fc7f0401
Merge pull request #24461 from wojtek-t/enable_components_to_use_protobufs
...
Automatic merge from submit-queue
Allow components to use protobufs while talking to apiserver.
2016-04-21 12:46:17 -07:00
nikhiljindal
aa4cdac005
hack/build-go tp build federation/cmd/federated-apiserver as well
2016-04-21 12:38:53 -07:00
k8s-merge-robot
de3ce4f465
Merge pull request #24519 from fejta/heapster
...
Automatic merge from submit-queue
Disable heapster job which has been broken for a month
https://github.com/kubernetes/kubernetes/issues/23538
This job is no longer producing a useful signal. http://kubekins.dls.corp.google.com/ shows that the last pass was nearly two months ago. I would like to disable the job until someone has the chance to fix it so we are not wasting jenkins resources, contributing to system instability.
2016-04-21 11:29:19 -07:00
Wojciech Tyczynski
43f5102903
Verify protobufs
2016-04-21 16:22:52 +02:00
Wojciech Tyczynski
31e2f8e485
Regenerate files
2016-04-21 14:12:13 +02:00
Erick Fejta
e5dfba496d
Disable heapster job which has been broken for a month
2016-04-20 20:09:09 -07:00
Prashanth Balasubramanian
0ac10c6cc2
PetSet type, apps apigroup
2016-04-20 18:49:31 -07:00
k8s-merge-robot
2599607a64
Merge pull request #24521 from fejta/flannel
...
Automatic merge from submit-queue
Disable flannel job until it works
https://github.com/kubernetes/kubernetes/issues/24520
See bug, this job is fails every time and has done so for two months. Until someone has time to investigate and fix disable the job on jenkins so we're not wasting resources and reducing system stability.
2016-04-20 18:27:28 -07:00
k8s-merge-robot
cee4273e43
Merge pull request #24374 from smarterclayton/proto_default_on
...
Automatic merge from submit-queue
Enable protobuf compilation by default
Enables protobuf compilation, build verification checks, and generates all initial code.
kubectl is now 47M on OSX, build time from clean on a 2014 MBP (4 core) on Go 1.6 is ~150s.
@wojtek-t
2016-04-20 18:27:26 -07:00
Erick Fejta
7c2eb2c43e
Disable flannel job until it works
2016-04-20 17:18:01 -07:00
k8s-merge-robot
49741c71aa
Merge pull request #24270 from gtank/swaggergen-defaults
...
Automatic merge from submit-queue
hack: change update-swagger-spec.sh apiserver defaults
Removing the explicit list of KUBE_API_VERSIONS will cause the apiserver
to enable all APIs by default. This change reduces the amount of script
hacking needed to add new API groups in the future.
2016-04-20 17:13:34 -07:00
goltermann
3fa6c6f6d9
Enable vet
2016-04-20 09:48:24 -07:00
Clayton Coleman
befe95869b
Add generated-protobuf to hack/update-all.sh
2016-04-20 12:13:10 -04:00
Clayton Coleman
ddb7b54006
Ensure a newline at the end of all API docs
2016-04-20 12:13:08 -04:00
Clayton Coleman
cea4c010a6
Strip the proto build guard
2016-04-20 12:12:29 -04:00
k8s-merge-robot
86544c2288
Merge pull request #24426 from pwittrock/flaky
...
Automatic merge from submit-queue
Incremental improvements to kubelet e2e tests
- Add keep-alive to ssh connection
- Don't try to stop services on image-based runs
- Increase jenkins ci timeout to 90 minutes to accomadate unpredictable go build times
- Remove spammy log statement
2016-04-19 22:36:40 -07:00
CJ Cullen
760568796f
Masquerade traffic from off-cluster going through kube-proxy.
2016-04-19 21:39:34 -07:00
k8s-merge-robot
265c7df39e
Merge pull request #24232 from spxtr/e2e-docs
...
Automatic merge from submit-queue
Add some more info to the Jenkins README.
This is a bit of a work-in-progress, and I'd appreciate feedback on what to add or remove. I'm not sure that I need to say so much about the GCS format, and I should probably say some more about JJB.
@kubernetes/sig-testing
2016-04-19 16:37:15 -07:00
k8s-merge-robot
c1fe51c7f8
Merge pull request #24439 from nikhiljindal/fixVerifySwaggerDocs
...
Automatic merge from submit-queue
Removing call to update-swagger-spec.sh from update-generated-swagger-docs.sh
Fixes https://github.com/kubernetes/kubernetes/issues/24233
Right now `update-generated-swagger-docs.sh` calls `update-swagger-spec.sh`, but `verify-generated-swagger-docs.sh` does not verify swagger spec (that is done by `verify-swagger-spec.sh`).
Hence, `verify-swagger-spec` breaks if it is called after `verify-generated-swagger-docs`.
Fixing it by removing the call to `update-swagger-spec.sh` from `update-generated-swagger-docs.sh`.
This will require users to run both `update-swagger-spec` and `update-generated-swagger-docs` when they update api types, but they already need to run many more scripts (`update-api-reference-docs`, `update-codegen`).
People should mostly be running hack/update-all.sh directly :)
2016-04-19 15:07:10 -07:00
Jeff Lowdermilk
d5425708a6
Merge pull request #24425 from jlowdermilk/list-resources
...
Always pull list-resources.sh from head
2016-04-19 14:54:49 -07:00
k8s-merge-robot
d01939e604
Merge pull request #24283 from andyzheng0831/e2e
...
Automatic merge from submit-queue
Shorten cluster names in GKE Jenkins on Trusty
We identified an issue that the PD tests in GKE Jenkins on Trusty fail because the PD name is longer than the limit of 63 characters. The PD name embeds the "E2E_NAME" env variable exported in the Jenkins job configuration. This PR shortens that string for all GKE Jenkins on Trusty. As a result, the PD name will meet the limit requirement.
2016-04-19 14:31:30 -07:00
k8s-merge-robot
02a133e21f
Merge pull request #24468 from johscheuer/fix-kube-root-codegen
...
Automatic merge from submit-queue
Remove double assignment of KUBE_ROOT
`KUBE_ROOT` got assigned twice in the codegen script.
2016-04-19 13:51:16 -07:00
k8s-merge-robot
d1c5ae65d8
Merge pull request #24480 from spxtr/bump-test-go
...
Automatic merge from submit-queue
Bump kubernetes-test-go timeout.
It looks like the run times got more inconsistent because of load on the VM. Adding another Jenkins slave improved things so we're not constantly timing out, but it still gets a little close to timing out at times.
Average runtime is ~45 mins so I went with a 100 min timeout.
Fixes #24285
2016-04-19 13:03:30 -07:00
k8s-merge-robot
705837683a
Merge pull request #24346 from spxtr/remove-1-1-soak
...
Automatic merge from submit-queue
Remove soak and disruptive 1.1 Jenkins jobs.
They're both in the kubernetes-jenkins project, not their own. The disruptive one isn't a critical build, and I don't think the soak should be critical at all, since it's never green for a week anyway and I don't think we ever plan for it to be.
2016-04-19 13:03:28 -07:00
Jeff Lowdermilk
4402cbc289
Always pull list-resources.sh from head
...
This should fix tag-pinned GKE tests that are currently broken
because #24058 doesn't exist for v1.2.2.
2016-04-19 11:40:59 -07:00
k8s-merge-robot
c9c2a252f6
Merge pull request #24477 from ihmccreery/bump-timeout
...
Automatic merge from submit-queue
Bump upgrade test timout to 10 hours
@spxtr is it reasonable to expect that running the v1.2 tests in serial would take longer than ~ 5 hours (assuming the upgrade beforehand takes < 1 hour)?
2016-04-19 10:48:46 -07:00
Joe Finney
999ee9a222
Bump kubernetes-test-go timeout.
2016-04-19 10:02:31 -07:00
Isaac Hollander McCreery
59dfea62cc
Bump upgrade test timout to 10 hours
2016-04-19 09:35:34 -07:00
Johannes Scheuermann
38cb577cd3
Remove double assignment of KUBE_ROOT
2016-04-19 16:18:16 +02:00
k8s-merge-robot
b1aabc794d
Merge pull request #24448 from a-robinson/multizone
...
Automatic merge from submit-queue
Use 3 nodes per zone in the GKE multizone test instead of 1
@quinton-hoole @saad-ali
2016-04-19 03:47:10 -07:00
k8s-merge-robot
c37e3cc6b9
Merge pull request #24435 from spxtr/fix-test-go
...
Automatic merge from submit-queue
Run test-go less often on release branches.
I made 1.2 run every 3 hours and 1.1 run every 6 hours. They'll still run right away once a build completes.
I'm going to have to lower the number of executors on the Jenkins slaves that run test-go jobs, since running 3 at a time makes them use up all the CPU and flake.
2016-04-19 03:47:09 -07:00
k8s-merge-robot
9ae35f875d
Merge pull request #23774 from cjdrake/master
...
Automatic merge from submit-queue
Replace tab with eight spaces
This file only uses spaces for indentation, and my text editor highlighted the one tab.
2016-04-19 03:47:06 -07:00
Alex Robinson
27096ccf5c
Use 3 nodes per zone in the GKE multizone test instead of 1
2016-04-18 21:32:52 -07:00
nikhiljindal
be5b842eb3
Adding note regarding which script requires another script to be run before that
2016-04-18 17:58:02 -07:00
nikhiljindal
ff06f1e200
removing call to update-swagger-spec.sh from update-generated-swagger-docs.sh
2016-04-18 17:58:02 -07:00
k8s-merge-robot
5abbc24a86
Merge pull request #24432 from ihmccreery/upg-num-node-fix
...
Automatic merge from submit-queue
Export NUM_MINIONS and MINION_SIZE for experimental upgrade tests
This has precedent in `e2e.sh`: https://github.com/kubernetes/kubernetes/blob/release-1.1/hack/jenkins/e2e.sh#L811
2016-04-18 16:51:25 -07:00
Joe Finney
8436b9dc72
Run test-go less often on release branches.
2016-04-18 16:15:53 -07:00
Isaac Hollander McCreery
36d46e6464
Export NUM_MINIONS=3 and MINION_SIZE='n1-standard-2' for experimental upgrade tests starting in v1.1.
2016-04-18 16:02:16 -07:00
Phillip Wittrock
90d2f9ad5e
Incremental improvements to kubelet e2e tests
...
- Add keep-alive to ssh connection
- Don't try to stop services on image-based runs
- Increase jenkins ci timeout to 90 minutes to accomadate unpredictable go build times
- Remove spammy log statement
2016-04-18 13:56:07 -07:00
Joe Finney
f3b2490c90
Kubemark tests need to run on the Jenkins master.
2016-04-18 09:56:02 -07:00
Joe Finney
f815be2c72
Revert "Revert "Revert "Revert "Run most GCE, GKE, and Kubemark e2e jobs inside Docker""""
...
This reverts commit e0f585ae93
.
2016-04-18 09:55:09 -07:00
k8s-merge-robot
a275a045d1
Merge pull request #23914 from sky-uk/make-etcd-cache-size-configurable
...
Automatic merge from submit-queue
Make etcd cache size configurable
Instead of the prior 50K limit, allow users to specify a more sensible size for their cluster.
I'm not sure what a sensible default is here. I'm still experimenting on my own clusters. 50 gives me a 270MB max footprint. 50K caused my apiserver to run out of memory as it exceeded >2GB. I believe that number is far too large for most people's use cases.
There are some other fundamental issues that I'm not addressing here:
- Old etcd items are cached and potentially never removed (it stores using modifiedIndex, and doesn't remove the old object when it gets updated)
- Cache isn't LRU, so there's no guarantee the cache remains hot. This makes its performance difficult to predict. More of an issue with a smaller cache size.
- 1.2 etcd entries seem to have a larger memory footprint (I never had an issue in 1.1, even though this cache existed there). I suspect that's due to image lists on the node status.
This is provided as a fix for #23323
2016-04-17 00:06:31 -07:00
k8s-merge-robot
bfc953cd4b
Merge pull request #23890 from pmorie/kubectl-describe-envs
...
Automatic merge from submit-queue
Correctly handle secret and configMap envs in kubectl describe
Fixes #23679
cc @kubernetes/kubectl @jwforres
2016-04-16 17:08:58 -07:00
k8s-merge-robot
957ee1d50a
Merge pull request #23819 from rrati/controller-manager-startup-delay
...
Automatic merge from submit-queue
Added optional delays to starting controller managers. #22669
2016-04-16 15:33:32 -07:00
Andy Zheng
b2b738eed3
Shorten cluster names in GKE Jenkins on Trusty
2016-04-16 08:56:43 -07:00
k8s-merge-robot
e87d8bacc4
Merge pull request #24273 from gtank/local-up-advertise
...
Automatic merge from submit-queue
hack: specify --advertise-address in hack/local-up-cluster.sh
This fixes the bug where the script fails to launch an apiserver on a
machine without active networking (issue #24272 ).
2016-04-16 07:31:14 -07:00
k8s-merge-robot
d40bf503ed
Merge pull request #24256 from porridge/fix-newlines
...
Automatic merge from submit-queue
Fix spacing in usage_from_stdin and info_from_stdin (issue #24186 ).
If "a" is a bash array, then the syntax to append the contents of $line as a
new element to the array is a+=("$line"), not messages+=$line
Using the former syntax just seems to append to the first element, creating a
long string and thus losing newline information.
Fixing this allows us to drop some empty lines from invocations of
usage_from_stdin.
2016-04-16 07:31:12 -07:00
k8s-merge-robot
8a44115cc5
Merge pull request #24338 from spxtr/linkcheck
...
Automatic merge from submit-queue
Move cmd/linkcheck to test targets.
https://github.com/kubernetes/kubernetes/issues/24285#issuecomment-210306681
2016-04-16 00:00:30 -07:00
k8s-merge-robot
7bc49fb085
Merge pull request #24243 from hodovska/master
...
Automatic merge from submit-queue
Remove --api-version usage in test-cmd.sh.
Kubectl flag `--api-version` has been deprecated.
Fixes #24053
2016-04-16 00:00:27 -07:00
Joe Finney
e0f585ae93
Revert "Revert "Revert "Run most GCE, GKE, and Kubemark e2e jobs inside Docker"""
...
This reverts commit 93ea0252fd
.
2016-04-15 18:41:40 -07:00
Joe Finney
009b0f051d
Merge pull request #24356 from spxtr/revert-revert
...
Revert "Revert "Run most GCE, GKE, and Kubemark e2e jobs inside Docker""
2016-04-15 16:02:30 -07:00
k8s-merge-robot
985b5f14e2
Merge pull request #24168 from ixdy/jenkins-daily-maintenance-job
...
Automatic merge from submit-queue
Rename "gcloud-update" jobs to "daily-maintenace" and add Docker cleanup
I'm guessing Jenkins Job Builder won't delete the old job, and we'll need to do that manually?
@spxtr @fejta
2016-04-15 15:41:03 -07:00
k8s-merge-robot
03f48e730e
Merge pull request #22810 from amygdala/cassandra2
...
Automatic merge from submit-queue
phase 2 of cassandra example overhaul
Here's the next iteration in overhauling this example, towards https://github.com/kubernetes/kubernetes/issues/20961 . This removes the pod adoption part, but doesn't (yet) otherwise change any of the resources used.
It also includes some README cleanup, and removes some explicit specification of labels in the rc yaml.
This PR doesn't yet add any commentary on how we're using the seed provider (re: https://github.com/kubernetes/kubernetes/issues/20961#issuecomment-190405959 etc.). Maybe we should add that.
Also: LMK if this PR should include any changes to the links out to the docs.
cc @bgrant0607 @johndmulhausen
2016-04-15 15:41:01 -07:00
Joe Finney
93ea0252fd
Revert "Revert "Run most GCE, GKE, and Kubemark e2e jobs inside Docker""
...
This reverts commit b2f8b1962f
.
2016-04-15 14:56:48 -07:00
k8s-merge-robot
82458d8f46
Merge pull request #24281 from ixdy/dockerized-e2e
...
Automatic merge from submit-queue
Set metadata.google.internal IP in dockerized e2e based on /etc/hosts
Support the metadata cacher from #24131 inside dockerized e2e runs.
cc @fejta
2016-04-15 14:48:15 -07:00
Jeff Grafton
9fa35d0bc6
Set metadata.google.internal IP in dockerized e2e based on /etc/hosts
2016-04-15 12:12:12 -07:00
k8s-merge-robot
75d9b36a2a
Merge pull request #24175 from fejta/fast
...
Automatic merge from submit-queue
Restart job 5m after the previous failure.
If a job flakes at the beginning of it scripts, it will likely sit around doing nothing for 30m blocking the merge queue. Decreasing this to 5m.
2016-04-15 12:04:08 -07:00
Mike Danese
c5cc0c34fb
Merge pull request #24277 from ihmccreery/upgrade-timeout
...
Use a sane timeout for experimental upgrade jobs, and skip v1.1 tests
2016-04-15 11:40:09 -07:00
Joe Finney
c2906ee09d
Remove soak and disruptive 1.1 Jenkins jobs.
2016-04-15 11:34:30 -07:00
Joe Finney
7179296e30
Move cmd/linkcheck to test targets.
2016-04-15 09:55:04 -07:00
Erick Fejta
f5cc8f772b
Restart job 5m after the previous failure.
2016-04-15 07:33:18 -07:00
k8s-merge-robot
ff1da7674d
Merge pull request #24268 from wojtek-t/remove_old_conversions_generator
...
Automatic merge from submit-queue
Remove old conversion generator
2016-04-15 04:25:19 -07:00
Wojciech Tyczynski
89e860e622
Remove old conversion generator
2016-04-15 12:07:57 +02:00
Amy Unruh
8846b313dc
phase 2 of cassandra example overhaul
2016-04-14 21:55:23 -07:00
Daniel Smith
225f4786af
Merge pull request #24026 from gmarek/gofmt
...
Add go1.4 and 1.6 to hack/verify-gofmt.sh and fail verify check if go…
2016-04-14 16:56:33 -07:00
Daniel Smith
a42d7fa31c
Merge pull request #23756 from smarterclayton/force_delete
...
Add a client flag to delete "--now" for grace period 0
2016-04-14 16:55:07 -07:00
Daniel Smith
d8532e0746
Merge pull request #24294 from spxtr/build-boop
...
Bump kubernetes-build timeout.
2016-04-14 16:23:11 -07:00
Daniel Smith
f778cb3bc7
Merge pull request #24223 from tyangliu/generate-yaml-docs
...
Include genyaml in update/verify generated docs scripts
2016-04-14 16:22:03 -07:00
Joe Finney
21e664aa95
Bump kubernetes-build timeout.
2016-04-14 16:16:21 -07:00
Daniel Smith
276665f774
Merge pull request #24289 from spxtr/bandaid
...
Bump the kubernetes-test-go timeout.
2016-04-14 15:52:12 -07:00
Joe Finney
b00ade13e5
Bump the kubernetes-test-go timeout.
2016-04-14 15:48:37 -07:00
Daniel Smith
a4e0aaab9d
Merge pull request #24068 from ixdy/jjb-diff
...
Compute Jenkins job config XML changes easily
2016-04-14 15:12:09 -07:00
Daniel Smith
4389aa1364
Merge pull request #23931 from luxas/build_for_arm64
...
Build Kubernetes, etcd and flannel for arm64 and ppc64le
2016-04-14 15:10:37 -07:00
Joe Finney
e6919f335e
Update Jenkins documentation.
2016-04-14 14:13:32 -07:00
Isaac Hollander McCreery
5e1a268511
Use a sane timeout for experimental upgrade jobs, and skip v1.1 tests properly
2016-04-14 13:13:20 -07:00
Euan Kemp
9f9c54cdd2
jenkins: Allow configuration of release bucket
...
This allows others to leverage the existing E2E code to test some
patched kube binary by simply overriding the bucket and reusing many of
the existing scripts
2016-04-14 12:26:43 -07:00
George Tankersley
07eb9ec305
hack: specify advertise address for local-up-cluster.sh
...
This fixes the bug where the script fails to launch an apiserver on a
machine without active networking.
2016-04-14 12:08:21 -07:00
George Tankersley
64b11a0b79
hack: change update-swagger-spec.sh apiserver defaults
...
Removing the explicit list of KUBE_API_VERSIONS will cause the apiserver
to enable all APIs by default. This change reduces the amount of script
hacking needed to add new API groups in the future.
2016-04-14 11:48:11 -07:00
Daniel Smith
490c68dbe3
Merge pull request #23768 from wojtek-t/conversions_with_framework_6
...
Migrate to new conversions generator - part 2
2016-04-14 11:30:21 -07:00
Marcin Owsiany
9ce855269e
Fix spacing in usage_from_stdin and info_from_stdin (issue #24186 ).
...
If "a" is a bash array, then the syntax to append the contents of $line as a
new element to the array is a+=("$line"), not messages+=$line
Using the former syntax just seems to append to the first element, creating a
long string and thus losing newline information.
Fixing this allows us to drop some empty lines from invocations of
usage_from_stdin.
2016-04-14 18:19:02 +02:00
Dominika Hodovska
70a43aa043
Remove --api-version usage in test-cmd.sh.
2016-04-14 10:14:11 +02:00
Lucas Käldström
4559a84d3b
Build Kubernetes, etcd and flannel for arm64 and ppc64le
2016-04-14 07:29:10 +03:00
Daniel Smith
d19bc6b245
Merge pull request #24222 from pwittrock/jjbto
...
Increase kubelet timeout from 30->45 minutes to address long build ti…
2016-04-13 17:15:25 -07:00
Phillip Wittrock
e79483ab0b
Increase kubelet timeout from 30->45 minutes to address long build times.
2016-04-13 15:14:12 -07:00
Thomas Liu
f4f04e2985
Include genyaml in update/verify generated docs scripts
2016-04-13 15:11:31 -07:00
goltermann
a3104ba96c
Final vet fixes; enabling vet checks in verify scripts.
2016-04-13 13:51:51 -07:00
Tim St. Clair
b0d3f32e88
Update test/e2e for test/e2e/framework refactoring
2016-04-13 10:50:17 -07:00
Robert Rati
83de3e9733
Added optional delays to starting controller managers. #22669
2016-04-13 09:52:28 -04:00
k8s-merge-robot
d8680feda6
Merge pull request #24184 from fejta/kubemark
...
Automatic merge from submit-queue
Increase 5 node kubemark to a 60m timeout, schedule every 5m
Closes https://github.com/kubernetes/kubernetes/issues/24183 and should reduce mergebot flakes
http://kubekins.dls.corp.google.com/view/Submit%20Queue/job/kubernetes-kubemark-5-gce/1354/consoleFull is an example where everything seemed to be running find but ran out of time after 30m, which is only slightly slower than its average passing runtime of 20m. I'm increasing to 3x average runtime.
2016-04-13 04:43:05 -07:00
Erick Fejta
e1ed4d48a4
Increase 5 node kubemark to a 60m timeout and start every 5m (when not already running)
2016-04-13 01:28:46 -07:00
k8s-merge-robot
42ac05fa20
Merge pull request #24115 from rmmh/test-history-suites
...
Automatic merge from submit-queue
Add suite pages to test-history
This changes http://storage.googleapis.com/kubernetes-test-history/static/index.html to look like:

And adds sub-pages to show test results for specific suites:

2016-04-12 19:48:56 -07:00
Erick Fejta
b2f8b1962f
Revert "Run most GCE, GKE, and Kubemark e2e jobs inside Docker"
2016-04-12 18:40:21 -07:00
Ryan Hitchman
5683c0b087
Make test-history generator create pages for individual suites
...
This makes it easier to determine which tests cause particular suites to
fail.
All static HTML pages are now generated by one invocation of gen_html.py.
- make index include good/flake/fail numbers for each link
- consistently use % for string interpolation
2016-04-12 18:07:59 -07:00
Jeff Grafton
d82a8cb282
Add a verify check to check Jenkins job config changes
2016-04-12 16:49:28 -07:00
Jeff Grafton
47967d0756
Add script to compute diff in Jenkins job config changes
2016-04-12 16:49:22 -07:00
Jeff Grafton
5bcd1f8d7b
Rename "gcloud-update" jobs to "daily-maintenace" and add Docker cleanup
2016-04-12 16:43:34 -07:00
Abhi Shah
405656eff8
Merge pull request #24149 from ihmccreery/upgrade-clean
...
e2e-runner: don't clean old binaries before upgrade
2016-04-12 15:19:56 -07:00
Jeff Grafton
0fb747882d
Merge pull request #24109 from ixdy/dockerized-e2e
...
Run most GCE, GKE, and Kubemark e2e jobs inside Docker
2016-04-12 14:38:04 -07:00
k8s-merge-robot
95871a3582
Merge pull request #24066 from wonderfly/serial_tests_trusty
...
Automatic merge from submit-queue
Start running [Serial] tests in Trusty CI jobs and the release job of Trusty-dev
Adding these tests as requested in https://github.com/kubernetes/kubernetes/issues/23956#issuecomment-207096136
@spxtr Can you review this?
cc/ @dchen1107 @andyzheng0831
2016-04-12 13:28:40 -07:00
Isaac Hollander McCreery
7fb421bdc3
e2e-runner: don't clean old binaries before upgrade
2016-04-12 11:12:59 -07:00
Alex Robinson
80a75ff76c
Merge pull request #24075 from a-robinson/multizone
...
Add an e2e test suite for multi-zone GKE clusters.
2016-04-12 09:31:24 -07:00
James Ravn
5bb0595260
Make deserialization cache size configurable
...
Instead of the default 50K entries, allow users to specify more sensible
sizes for their cluster.
2016-04-12 13:42:27 +01:00
Jeff Grafton
a639e702f0
Run most GCE, GKE, and Kubemark e2e jobs inside Docker
...
Explicitly pin all <= 1.1 e2e jobs, upgrade, soak, and AWS jobs to
the master node and "legacy" e2e runner.
2016-04-11 14:26:00 -07:00
Jordan Liggitt
37c86041ca
Preserve int64 data when patching
2016-04-11 16:23:28 -04:00
Jeff Grafton
1816582fda
Remove "dirty workspace" check in e2e-runner.sh
2016-04-11 12:02:14 -07:00
Jeff Grafton
94d4a3eca3
Merge pull request #24010 from ixdy/dockerized-e2e
...
Run kubernetes-e2e-g[ck]e-flaky inside Docker
2016-04-11 11:36:18 -07:00
Isaac Hollander McCreery
f9ffeb8244
Merge pull request #24077 from ihmccreery/upgrade-version-1.1
...
Fix upgrade jobs again
2016-04-11 09:52:46 -07:00
Wojciech Tyczynski
7448cc04e1
Switch to new generator
2016-04-11 08:04:45 +02:00
k8s-merge-robot
e31177219b
Merge pull request #23962 from fejta/test-cmd
...
Automatic merge from submit-queue
Update hack/test-cmd.sh to use tagged, gcr.io images
Migrate hack/test-cmd.sh and related test data to use tagged, gcr.io versions of the images for #13288 and #20836
2016-04-09 20:37:45 -07:00
Isaac Hollander McCreery
a2fc84878e
Use 1.1 as published version for experimental upgrade jobs
2016-04-08 17:31:10 -07:00
Alex Robinson
e686ba978f
Add an e2e test suite for multi-zone GKE clusters.
2016-04-09 00:14:44 +00:00
Jeff Grafton
fde3545351
Use dockerized e2e for g[ck]e-flaky jobs, and run on the Jenkins slave
...
Force all other e2e jobs to run on master.
2016-04-08 16:45:00 -07:00
Jeff Grafton
253711016e
Make e2e-runner.sh work inside Docker and add wrapper script
2016-04-08 16:42:09 -07:00
Jeff Lowdermilk
3a1767fda0
Merge pull request #23649 from ihmccreery/release-pin
...
Create test job against release/latest on GKE
2016-04-08 16:38:42 -07:00
Erick Fejta
7d2055a762
Increase *-slow workflow timeouts to 150 as avg runtime is 50m
2016-04-08 15:54:49 -07:00
Daniel Wang
f7b674533c
Start running [Serial] tests in Trusty CI jobs and the release job of Trusty-dev
2016-04-08 14:25:11 -07:00
Jeff Lowdermilk
9ee4d79a62
Merge pull request #23821 from spxtr/retry-404
...
Retry the cloudsdk gsutil copy.
2016-04-08 12:56:28 -07:00
Jeff Lowdermilk
8b6ab71901
Merge pull request #23760 from spxtr/disable-jobs
...
Disable autoscaling Jenkins job.
2016-04-08 12:54:41 -07:00
Jeff Lowdermilk
653bc04eb2
Merge pull request #24032 from ixdy/update-job
...
Only keep 7 days' worth of logs for kubernetes-update-jenkins-jobs
2016-04-08 12:44:29 -07:00
Jeff Lowdermilk
c0567e3b5f
Merge pull request #24046 from ihmccreery/fix-upgrade-splits
...
Fix upgrade tests
2016-04-08 12:43:51 -07:00
Jeff Lowdermilk
48ea7cae48
Merge pull request #23970 from fejta/slow
...
Increase standard e2e suite timeout to 50m, twice mean runtime
2016-04-08 09:33:32 -07:00
Isaac Hollander McCreery
1c28cf016c
Fix upgrade tests
2016-04-08 08:28:18 -07:00
gmarek
c36e965c45
Change the go version checking in go format to the same as in contrib.
2016-04-08 10:14:01 -04:00
Jeff Grafton
c924f5aa87
Only keep 7 days' worth of logs for kubernetes-update-jenkins-jobs
2016-04-08 00:21:47 -07:00
Clayton Coleman
ea3467f822
Add a client flag for --now delete
...
Is equivalent to --grace-period=0 but is more intuitive for end users.
2016-04-07 23:45:08 -04:00
Crazykev
7c9dfd8620
fix relative working dirctory of KUBE_ROOT
...
Signed-off-by: Crazykev <zcq8989@gmail.com>
2016-04-08 11:00:27 +08:00
Erick Fejta
5fd47873dd
Update hack/test-cmd.sh to use tagged, gcr.io images
2016-04-07 17:55:22 -07:00
Jeff Lowdermilk
d427eeea10
Merge pull request #23842 from mml/gcloud
...
Set CLOUDSDK_CORE_PRINT_UNHANDLED_TRACEBACKS on GCE e2e runs.
2016-04-07 15:59:23 -07:00
k8s-merge-robot
25ffc6ab03
Merge pull request #23984 from vishh/skip-tests-node-e2e
...
Automatic merge from submit-queue
Add an option to focus or skip tests in the node e2e makefile rule.
cc @kubernetes/sig-node
2016-04-07 14:09:12 -07:00
Paul Morie
9069cbb086
Correctly handle secret and configMap envs in kubectl describe
2016-04-07 14:16:59 -04:00
Vishnu kannan
1e7e941dae
Add an option to focus or skip tests in the node e2e makefile rule.
...
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-04-07 10:22:22 -07:00
Erick Fejta
7416c4470c
Increase standard e2e suite timeout to 50m, twice mean runtime
2016-04-06 19:11:17 -07:00
Joe Finney
5f5639da1e
Retry the cloudsdk gsutil copy.
2016-04-06 16:42:14 -07:00
k8s-merge-robot
7b0766ad67
Merge pull request #23712 from freehan/jenkins
...
Automatic merge from submit-queue
add jenkins project for kubenet
added a jenkins project for gce using kubenet as network provider
`k8s-jkns-e2e-gce-kubenet` has been created and configured
2016-04-06 15:33:49 -07:00
Matt Liggett
42b8fa8ca6
Stop using storage.cloud.google.com in test logs.
2016-04-06 12:59:53 -07:00
Isaac Hollander McCreery
9a7860855c
Merge pull request #22962 from ihmccreery/split-upgrade-jobs
...
Add configuration for splitting upgrade jobs instead of using Jenkins steps
2016-04-05 13:05:25 -07:00
Wlodzimierz Borkowski
63712cbb1c
invalid arg during applying SELinux label
...
Tested with ubuntu 16.04 with selinux support.
Actually after chcon with long label got: Invalid argument from cmd
2016-04-05 13:07:36 +02:00
Matt Liggett
3a4beb1ef1
Set CLOUDSDK_CORE_PRINT_UNHANDLED_TRACEBACKS on GCE e2e runs.
...
This should help us debug the large number of gcloud crashes we are
seeing.
2016-04-04 15:07:53 -07:00
Isaac Hollander McCreery
53c3a5626d
Add configuration for splitting upgrade jobs instead of using Jenkins steps
2016-04-04 14:21:21 -07:00
Vishnu kannan
a3cfe90b14
Transfer ownership of cadvisor e2es to Tim St. Clair.
...
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-04-04 13:15:03 -07:00
Isaac Hollander McCreery
e5d900a23f
Remove cloud-kubernetes-alerts from notifications, since the emails aren't going through anyway
2016-04-04 10:47:08 -07:00
Isaac Hollander McCreery
718c5b0d2f
Create test job against release/latest on GKE
2016-04-04 10:47:08 -07:00
Chris Drake
7aa9ef54ce
Replace tab with eight spaces
2016-04-01 18:47:13 -07:00
Joe Finney
1358f5c529
Disable autoscaling Jenkins job.
2016-04-01 13:16:05 -07:00
Fabio Yeon
bf07a6f5e1
Merge pull request #23452 from david-mcmahon/mungedocs
...
Add --norecurse bool to allow mungedocs to process kube root.
2016-04-01 12:06:56 -07:00
Jeff Grafton
d7f7c7796c
Merge pull request #23415 from ixdy/upload-to-gcs-script
...
Refactor upload-started.sh and upload-finished.sh into upload-to-gcs.sh
2016-04-01 11:54:12 -07:00
k8s-merge-robot
a49d5c1fd0
Merge pull request #23714 from wojtek-t/dont_run_without_watch_cache
...
Automatic merge from submit-queue
Don't run integration tests without watch cache.
@lavalamp - FYI
2016-04-01 09:31:34 -07:00
k8s-merge-robot
14f5eb458d
Merge pull request #23454 from wonderfly/bump_timeouts
...
Automatic merge from submit-queue
Migrate gke-trusty test jobs to 1.2
Following up #23100 and #23139 , #23319 , migrate all gke-trusty jobs to the
`release-1.2` branch, add parallel and subnet test jobs, and bump timeouts
accordingly.
Tested with `jenkins-jobs test`. Manually diff'ed gke-trusty jobs against their equivalent gke jobs. For example,
```
# diff /tmp/jobs0324/kubernetes-e2e-gke-test /tmp/jobs0324/kubernetes-e2e-gke-trusty-test
4c4
< <description>Run E2E tests on GKE test endpoint. Test owner: GKE on-call.<!-- Managed by Jenkins Job Builder --></description>
---
> <description>Run E2E tests on GKE test endpoint. Test owner: wonderfly@google.com.<!-- Managed by Jenkins Job Builder --></description>
49c49
< export PROJECT="k8s-jkns-e2e-gke-test"
---
> export PROJECT="kubekins-e2e-gke-trusty-test"
51a52
> export E2E_NAME="jkns-gke-e2e-test-trusty"
228c229
< <recipientList>$DEFAULT_RECIPIENTS</recipientList>
---
> <recipientList>wonderfly@google.com,qzheng@google.com</recipientList>
```
@spxtr @roberthbailey @ihmccreery Can you review this?
cc/ @andyzheng0831
2016-04-01 06:38:56 -07:00
k8s-merge-robot
07929972a3
Merge pull request #18835 from brendandburns/3rdparty
...
Automatic merge from submit-queue
Add support for 3rd party objects to kubectl
@deads2k @jlowdermilk
Instructions for playing around with this:
Run an apiserver with third party resources turned on (`--runtime-config=extensions/v1beta1=true,extensions/v1beta1/thirdpartyresources=true`)
Then you should be able to:
```
kubectl create -f rsrc.json
```
```json
{
"metadata": {
"name": "foo.company.com"
},
"apiVersion": "extensions/v1beta1",
"kind": "ThirdPartyResource",
"versions": [
{
"apiGroup": "group",
"name": "v1"
},
{
"apiGroup": "group",
"name": "v2"
}
]
}
```
Once that is done, you should be able to:
```
curl http://<server>/apis/company.com/v1/foos
```
```
curl -X POST -d @${HOME}/foo.json http://localhost:8080/apis/company.com/v1/namespaces/default/foos
```
```json
{
"kind": "Foo",
"apiVersion": "company.com/v1",
"metadata": {
"name": "baz"
},
"someField": "hello world",
"otherField": 1
}
```
After this PR, you can do:
```
kubectl create -f foo.json
```
```
kubectl get foos
```
etc.
2016-03-31 18:09:56 -07:00
k8s-merge-robot
f8ea3fab53
Merge pull request #23427 from wojtek-t/conversions_with_framework_4
...
Automatic merge from submit-queue
Migrate to the new conversion generator - part1
This PR contains two commits:
- few more fixes to the generator
- migration of the pkg/api/v1 to use the new generator
The second commit is big, but I reviewed the changes and they contain:
- conversions between types that we didn't even generating conversion between
- changes in how we handle maps/pointers/slices - previously we were explicitly referencing fields, now we are using "shadowing in, out" to make the code more generic
- lack of auto-generated method for ReplicationControllerSpec (because these types are different (*int vs int for Replicas) and a preexisting conversion already exists
Most of issues in the first commit (e.g. adding references to "in" and "out" for slices/maps/points) were discovered by our tests. So I'm pretty confident that this change is correct now.
2016-03-31 17:28:36 -07:00
David McMahon
37787ffe90
Add --norecurse bool to allow mungedocs to process kube root.
...
Run hack/after-build/update-generated-docs.sh on kube root with --norecurse and
--skip-munges=unversioned-warning.
2016-03-31 16:53:44 -07:00
Wojciech Tyczynski
70688f84e8
Don't run integration tests without watch cache.
2016-04-01 00:51:23 +02:00
Minhan Xia
2937d8f87f
add jenkins project for kubenet
2016-03-31 15:00:36 -07:00
Jeff Grafton
62b3587b62
Use upload-to-gcs.sh everywhere
2016-03-31 13:49:06 -07:00
Jeff Grafton
f83a6f1665
Refactor upload-started.sh and upload-finished.sh into upload-to-gcs.sh.
2016-03-31 13:45:23 -07:00
k8s-merge-robot
154ed74424
Merge pull request #23469 from fejta/goget
...
Automatic merge from submit-queue
Retry github and godep operations in test-dockerized.sh
closes #21887 .
Attempt to mitigate go get and godep flakes by retrying a few times inside of jenkins
2016-03-31 12:23:57 -07:00
Brendan Burns
be6c5b332b
Add third party support to kubectl
2016-03-31 10:53:32 -07:00
k8s-merge-robot
5e159695d9
Merge pull request #23422 from gmarek/diff
...
Automatic merge from submit-queue
When checking for leak look only at additional resources
This should help with "fake" leaks, when run deletes stuff that was leaked in a previous one.
cc @zmerlynn @ixdy @wojtek-t
2016-03-31 06:32:54 -07:00
gmarek
5555cbeb2b
When checking for leak look only at additional resources
2016-03-30 15:08:14 -07:00
Janet Kuo
c1596e6711
Update guestbook examples; replace RC concepts with Deployment
2016-03-30 14:16:52 -07:00
Isaac Hollander McCreery
84a6c4588a
Fix cluster names to be numeric in upgrade jobs
2016-03-30 13:31:01 -07:00
Erick Fejta
0c0722373c
Retry intermittent failures in test-dockerized.sh during go get
2016-03-30 11:44:35 -07:00
Isaac Hollander McCreery
fe58dac522
Merge pull request #23096 from ihmccreery/numeric-cluster-names-upgrades
...
Fix cluster names to be numeric in upgrade jobs
2016-03-30 11:08:21 -07:00
k8s-merge-robot
be8ce6c385
Merge pull request #23353 from spiffxp/conformance-docs
...
Automatic merge from submit-queue
Update conformance test policy
Addresses #14913
/cc @kubernetes/sig-testing
2016-03-30 06:21:13 -07:00
k8s-merge-robot
6226cbe6ca
Merge pull request #23308 from yifan-gu/rkt_bump
...
Automatic merge from submit-queue
rkt: bump rkt version to 1.2.1
Upon bumping the rkt version, `--hostname` is supported. Also we now gets the configs from the rkt api service, so `stage1-image` is deprecated.
cc @yujuhong @Random-Liu
2016-03-30 05:42:58 -07:00
Daniel Wang
a84f4c2af6
Migrate gke-trusty test jobs to 1.2
...
Following up #23100 and #23139 , #23319 , migrate all gke-trusty jobs to the
`release-1.2` branch, add parallel and subnet test jobs, and bump timeouts
accordingly.
2016-03-29 15:35:16 -07:00
Phillip Wittrock
9de33fc425
Run node test jobs every 30 minutes instead of daily. This is critical for the kubelet e2e as it is a merge queue blocker.
2016-03-29 09:54:51 -07:00
Wojciech Tyczynski
9ee8278e4a
Fix remaining issues with conversion generator.
2016-03-29 09:49:27 +02:00
Yifan Gu
d814d973ff
rkt: Bump rkt required version. Get options from api service.
2016-03-28 17:06:14 -07:00
k8s-merge-robot
5cb94cfab1
Merge pull request #23302 from spxtr/unittest-1.6
...
Auto commit by PR queue bot
2016-03-26 11:56:54 -07:00
k8s-merge-robot
23fc7905c1
Merge pull request #23466 from andyzheng0831/fix
...
Auto commit by PR queue bot
2016-03-26 04:01:49 -07:00
Robert Bailey
44b1f63d16
Set the correct api endpoint for gke prod.
2016-03-25 15:34:55 -07:00
Andy Zheng
364ac85179
Support differentiation of OS distro in e2e tests
2016-03-25 14:53:36 -07:00
k8s-merge-robot
1358dac95d
Merge pull request #23418 from roberthbailey/gke-asia
...
Auto commit by PR queue bot
2016-03-25 06:17:17 -07:00
k8s-merge-robot
548cfa68ca
Merge pull request #23202 from ixdy/jenkins-test-go-gopath
...
Auto commit by PR queue bot
2016-03-25 04:23:39 -07:00
Daniel Wang
a06eb5b0c2
Disable gke-trusty-prod
...
Has been failing constantly due to a known internal issue.
2016-03-24 18:35:05 -07:00
David McMahon
47ee746fcc
Merge pull request #23364 from david-mcmahon/godep-licenses
...
Write a parallel (godeps) _workspace tree to hold all the missing files.
2016-03-24 15:35:50 -07:00
Robert Bailey
a39c120cbe
Use the right variable to change the GKE zone.
2016-03-24 09:26:48 -07:00
gmarek
6dec136b23
Remove kubemark-gce suite
2016-03-24 10:52:57 +01:00
k8s-merge-robot
8355cefb7b
Merge pull request #23373 from wojtek-t/conversions_with_framework_3
...
Auto commit by PR queue bot
2016-03-24 01:39:23 -07:00
k8s-merge-robot
76fde46b16
Merge pull request #23025 from nikhiljindal/disableSwaggerUI
...
Auto commit by PR queue bot
2016-03-24 00:55:06 -07:00
Wojciech Tyczynski
42e7ecda5a
Fix bunch of issues with conversion generator.
2016-03-24 08:26:51 +01:00
Prashanth Balasubramanian
3ced1eedf5
Give 1-2 ingress tests their own project.
2016-03-23 16:22:49 -07:00
k8s-merge-robot
635bc410a6
Merge pull request #23405 from ixdy/jenkins-job-configs
...
Auto commit by PR queue bot
2016-03-23 16:19:33 -07:00
k8s-merge-robot
f8bb10b479
Merge pull request #22818 from andyzheng0831/enhance
...
Auto commit by PR queue bot
2016-03-23 16:19:31 -07:00
Jeff Grafton
601ecaff0a
Run upload-to-gcs.sh after upload-finished.sh.
2016-03-23 15:28:06 -07:00
k8s-merge-robot
69b3cb36a6
Merge pull request #22726 from chuckbutler/juju-import-layers
...
Auto commit by PR queue bot
2016-03-23 14:26:42 -07:00
nikhiljindal
1cccfc7074
Disabling swagger ui by default. Adding a flag to enable it
2016-03-23 13:19:22 -07:00
Robert Bailey
e2feb28dd6
Migrate the gke-prod e2e test from the 1.1 release branch to the
...
1.2 release branch and add a gke-prod-parallel test.
2016-03-22 21:14:20 -07:00
David McMahon
3e613ee341
Write a parallel (godeps) _workspace tree to hold all the missing files.
...
godeps doesn't get everything we want, so fix the problem but write it
to a parallel tree since _workspace is reserved only for godeps auto-generated
files.
2016-03-22 16:51:30 -07:00
k8s-merge-robot
b04f27c3be
Merge pull request #23136 from spxtr/slow-1-1
...
Auto commit by PR queue bot
2016-03-22 16:00:01 -07:00
Joe Finney
7fb8a8e46c
Disable the vendor experiment in hack/verify-godeps.sh
2016-03-22 13:50:15 -07:00
Aaron Crickenberger
3f501f61ac
Remove hack/conformance-test.sh
2016-03-22 13:28:13 -07:00
Marek Grabowski
8a7d8c4f9d
Merge pull request #23042 from gmarek/testing
...
Change scalability test configs
2016-03-22 14:08:58 +01:00
gmarek
aa09cb097b
Change scalability test configs
2016-03-22 13:39:16 +01:00
Jeff Grafton
2d9671cf27
Revert "Pin to godep v58 in Jenkins unit/integration"
...
This reverts commit 70813d6bb5
.
2016-03-21 17:19:55 -07:00
Jeff Grafton
0d65d310fe
Enter /go/src/k8s.io/kubernetes before building/running tests
...
Also print godep version after installing it.
2016-03-21 17:19:55 -07:00
Joe Finney
d3e94fcd78
Up unit/integration test on Jenkins to go 1.6.
2016-03-21 16:14:09 -07:00
Daniel Wang
f5460a4bd2
Move e2e test jobs for Trusty dev to 1.2
...
After this change, jobs that use Trusty dev images will test against the
`release-1.2` branch, and use Trusty images for both the master and the nodes.
Trusty beta and stable jobs are kept in the `release-1.1` branch, and only use
Trusty images on nodes.
2016-03-21 10:35:27 -07:00
gmarek
db77843bf0
Remove EXIT_ON_WEAK_ERROR variable
2016-03-21 12:22:03 +01:00
Andy Zheng
0a8e68fb49
Trusty: Avoid reaching GCE custom metadata size limit
2016-03-20 10:22:50 -07:00
k8s-merge-robot
9dd73505c4
Merge pull request #23203 from bprashanth/ingress_1-2
...
Auto commit by PR queue bot
2016-03-19 16:33:40 -07:00
k8s-merge-robot
ed6088a879
Merge pull request #23209 from jlowdermilk/rc-bucket
...
Auto commit by PR queue bot
2016-03-18 20:57:13 -07:00
k8s-merge-robot
8fb0bfb0d3
Merge pull request #23179 from wojtek-t/remove_old_deep_copy_generator
...
Auto commit by PR queue bot
2016-03-18 19:35:54 -07:00
k8s-merge-robot
d55f096804
Merge pull request #23154 from hongchaodeng/deplic
...
Auto commit by PR queue bot
2016-03-18 18:20:59 -07:00
Jeff Lowdermilk
49a0809f42
Update gke-staging bucket
2016-03-18 17:27:22 -07:00
Eric Paris
21df2aacf9
Merge pull request #23207 from ixdy/gotest-pin-godep
...
Pin to godep v58 in Jenkins unit/integration
2016-03-18 15:21:36 -05:00
Prashanth Balasubramanian
cee32c0f84
Feature ingress release 1.2
2016-03-18 12:55:47 -07:00
Jeff Grafton
70813d6bb5
Pin to godep v58 in Jenkins unit/integration
2016-03-18 12:45:12 -07:00
Daniel Wang
848c64a17b
Correct a typo in env vars
...
I should have used `KUBE_GCE_MASTER_PROJECT` and `KUBE_GCE_MASTER_IMAGE`.
2016-03-18 11:51:43 -07:00
Joe Finney
4877c988c3
Merge pull request #23086 from wonderfly/ci_jobs_for_trusty
...
Add CI jobs to track the master and 1.2 branch with Trusty images
2016-03-18 10:31:27 -07:00
gmarek
529af0fb84
Change kubemark-5 to use a single 2-core node
2016-03-18 10:59:43 +01:00
Wojciech Tyczynski
ce9b2ab3e3
Remove old deep-copy generator.
2016-03-18 09:42:15 +01:00
k8s-merge-robot
6bd5ecc192
Merge pull request #23164 from david-mcmahon/update-licenses
...
Auto commit by PR queue bot
2016-03-18 00:26:47 -07:00
k8s-merge-robot
d4912eafb5
Merge pull request #23157 from spxtr/fix-tags
...
Auto commit by PR queue bot
2016-03-17 19:59:36 -07:00
k8s-merge-robot
98bede7f2d
Merge pull request #23110 from wojtek-t/migrate_to_new_deep_copy_generator
...
Auto commit by PR queue bot
2016-03-17 19:21:23 -07:00
k8s-merge-robot
26eab4d69c
Merge pull request #23094 from spxtr/more-jobs
...
Auto commit by PR queue bot
2016-03-17 17:23:41 -07:00
David McMahon
ede7bb6793
Add a --retry to curl to help avoid transient failures.
2016-03-17 17:16:40 -07:00
Daniel Wang
3a56b68cc5
Add CI jobs to track the master and 1.2 branch with Trusty images
...
Add two CI jobs that run e2e tests on GCE with Trusty images (on both the master
and the nodes) on the `master` and `release-1.2` branch. Both tests use the
latest Trusty build from its `HEAD`. We will use these jobs to guard
kubernetes-Trusty compatibility.
These jobs mimic the existing `kubernetes-e2e-gce` and `kubernetes-e2e-gce-1-2`,
which follow `kubernetes-build` and `kubernetes-build-1-2`, respectively.
Additionally, move all Trusty related jobs into one section in the config file.
2016-03-17 15:17:24 -07:00
Joe Finney
9ba006572a
Always use long format in git tag.
2016-03-17 15:07:25 -07:00
Hongchao Deng
dd6487d0b7
use '/usr/bin/env bash' in update/verify-godep-licenses.sh
2016-03-17 14:55:21 -07:00
Joe Finney
eb273e5a4b
Add parallel gke-staging job.
2016-03-17 14:39:31 -07:00
Joe Finney
5c3228320c
Bump timeouts for 1.2 gke jobs.
2016-03-17 11:28:09 -07:00
k8s-merge-robot
1427a7cf81
Merge pull request #23135 from spxtr/fix-enormous
...
Auto commit by PR queue bot
2016-03-17 11:24:10 -07:00
Joe Finney
268a670454
Decrease frequency of 1.1 and 1.0 jobs.
2016-03-17 10:41:37 -07:00
Joe Finney
3ecf76b897
Fix enormous-cluster config.
2016-03-17 10:22:28 -07:00
Joe Finney
6bd52b2e7e
gke-staging should point to staging.
2016-03-17 10:09:11 -07:00
Marcin Wielgus
f396ed51b3
Increase kubernetes-test-go timeout to 50 min for 1.2 and master
2016-03-17 17:16:29 +01:00
Wojciech Tyczynski
04eb0d40bb
Migrate everything to new deep-copy generator.
2016-03-17 15:22:18 +01:00
k8s-merge-robot
7a66db5808
Merge pull request #23115 from wojtek-t/run_load_on_large_clusters
...
Auto commit by PR queue bot
2016-03-17 06:28:41 -07:00
k8s-merge-robot
4e67d9606c
Merge pull request #23083 from janetkuo/rollout-undo-paused-check
...
Auto commit by PR queue bot
2016-03-17 06:28:39 -07:00
k8s-merge-robot
65e79a1ee6
Merge pull request #23076 from ixdy/install-etcd
...
Auto commit by PR queue bot
2016-03-17 05:52:22 -07:00
gmarek
d53de5b0ac
kubemark-5 requires 3 machines (sic)
2016-03-17 13:41:23 +01:00
Wojciech Tyczynski
5db751f72c
Run load test in 1000-node cluster
2016-03-17 13:11:01 +01:00
Isaac Hollander McCreery
7a3267f82c
Merge pull request #23102 from ihmccreery/cmd-group
...
Fix CMD_GROUP reference to not fail if CMD_GROUP isn't set
2016-03-17 00:29:51 -07:00
Isaac Hollander McCreery
4ca19568bf
Fix CMD_GROUP reference to not fail if CMD_GROUP isn't set
2016-03-17 00:27:30 -07:00
Isaac Hollander McCreery
e13bf888d5
Merge pull request #23100 from ihmccreery/subnet-staging
...
Add subnet, test, and staging tests for 1.2 on GKE
2016-03-16 23:55:53 -07:00
Isaac Hollander McCreery
88782d9db5
Add subnet, test, and staging tests for 1.2
2016-03-16 23:29:54 -07:00
k8s-merge-robot
c3c29e2965
Merge pull request #22864 from spxtr/fix-history
...
Auto commit by PR queue bot
2016-03-16 20:25:18 -07:00
Isaac Hollander McCreery
9681522367
Fix cluster names to be numeric in upgrade jobs
2016-03-16 19:55:34 -07:00
Joe Finney
17898025f5
Add gce reboot suite for 1.2.
2016-03-16 18:32:07 -07:00
k8s-merge-robot
865d233aba
Merge pull request #23072 from timstclair/test-isolation
...
Auto commit by PR queue bot
2016-03-16 16:35:57 -07:00
Janet Kuo
2bd30c7572
Stop the users from rolling back a paused deployment in kubectl rollout undo
2016-03-16 15:46:22 -07:00
gmarek
0836a0d563
Add MASTER_SIZE to kubemark-5, as for some reason auto-setting does not work here
2016-03-16 23:39:44 +01:00
Isaac Hollander McCreery
017ab58114
Use numeric versions for upgrade jobs, run e2e-runner off master only, and properly configure JENKINS_PUBLISHED_VERSION
2016-03-16 13:44:19 -07:00
Jeff Grafton
4cd652b048
Have curl retry etcd download if it fails
2016-03-16 13:43:46 -07:00
Joe Finney
59db405607
Fix test history updater.
2016-03-16 13:18:46 -07:00
Tim St. Clair
dcd94aa118
More informative errors for the verify-symbols checker
2016-03-16 12:56:34 -07:00
Charles Butler
b8b54ac3cf
Updating the flag exceptions list per CI instructions
2016-03-16 14:25:26 -04:00
Joe Finney
b38fecd35b
Fix zone for 1.2 scalability job.
2016-03-16 10:24:32 -07:00
Marek Grabowski
9f64eb16e6
Merge pull request #23053 from gmarek/master
...
Move kubemark-5 suite to us-central1-f
2016-03-16 16:55:34 +01:00
k8s-merge-robot
4e29c580a8
Merge pull request #22206 from jayunit100/kubeit
...
Auto commit by PR queue bot
2016-03-16 08:36:41 -07:00
gmarek
06ae939522
Move kubemark-5 suite to us-central1-f
2016-03-16 16:19:38 +01:00
gmarek
cda034d322
Add kubemark-5 suite
2016-03-16 13:41:18 +01:00
Jay Vyas
9a71dfe753
KubeDescribe implementation with verify into after-build/ scripts.
2016-03-15 22:29:21 -04:00
k8s-merge-robot
a1fcccd8b5
Merge pull request #23016 from timstclair/test-isolation
...
Auto commit by PR queue bot
2016-03-15 16:56:33 -07:00
k8s-merge-robot
2bb7960b61
Merge pull request #22738 from wojtek-t/build_protobufs_in_docker
...
Auto commit by PR queue bot
2016-03-15 16:56:26 -07:00
Tim St. Clair
a93b67fe97
Add and to the bad symbols check
2016-03-15 15:41:01 -07:00
Isaac Hollander McCreery
322e6e660e
Merge pull request #23000 from ihmccreery/fix-stable
...
Name stable-1.2 job right to stop clobbering
2016-03-15 11:12:24 -07:00
Isaac Hollander McCreery
85888bb718
Name stable-1.2 job right to stop clobbering
2016-03-15 11:10:32 -07:00
Isaac Hollander McCreery
343dab01fb
Fix upgrade targets to target versions correctly
2016-03-15 10:57:37 -07:00
Justin Santa Barbara
e0caa1e559
non_masquerade_cidr: verify-flags exception, salt syntax
...
Cope is non_masquerade_cidr value is empty; add exception for
verify-flags.
2016-03-15 11:05:55 -04:00
k8s-merge-robot
90701f8da1
Merge pull request #22954 from spxtr/scalability
...
Auto commit by PR queue bot
2016-03-15 00:55:00 -07:00
k8s-merge-robot
34094635ba
Merge pull request #22880 from spxtr/aws-job
...
Auto commit by PR queue bot
2016-03-14 20:41:42 -07:00
k8s-merge-robot
003c77f2d5
Merge pull request #22949 from ixdy/verify-all
...
Auto commit by PR queue bot
2016-03-14 20:11:41 -07:00
k8s-merge-robot
e290a10dbc
Merge pull request #22956 from caesarxuchao/generate-api-docs
...
Auto commit by PR queue bot
2016-03-14 16:28:47 -07:00
k8s-merge-robot
7d0de5c7d6
Merge pull request #19905 from ixdy/export-go-version
...
Auto commit by PR queue bot
2016-03-14 15:51:30 -07:00
Chao Xu
b3056429bc
adding groups
2016-03-14 14:59:12 -07:00
Jeff Grafton
fb663f2cd5
Include Go version, platform, and other build info in version string
...
Additionally update MatchesServerVersion to only check GitVersion,
GitCommit, and GitTreeState.
2016-03-14 13:55:28 -07:00
Joe Finney
e8d76aac23
Up scalability-1.1 to 1.2.
2016-03-14 13:42:43 -07:00
Joe Finney
493a8ff54f
Add parallel, serial, and slow GKE Jenkins jobs.
2016-03-14 13:26:38 -07:00
Jeff Grafton
457b9d365a
Make has_changes_against_upstream_branch detect uncommitted changes
2016-03-14 12:59:17 -07:00
Joe Finney
c0d3a0acce
Merge pull request #22833 from wonderfly/disable_trusty_dev_slow
...
Jenkins: Add the ability to selectively disable an e2e job
2016-03-14 10:06:05 -07:00
gmarek
c325319ccb
Default MIG size to 1000
2016-03-14 12:21:14 +01:00
Jeff Grafton
51f70b6154
Revert "Disable verify-godep-licenses.sh in hack/verify-all.sh"
...
This reverts commit 991f7446ac
.
2016-03-11 17:31:56 -08:00
Jeff Grafton
8b2ecf4a94
Use LC_ALL=C with the other sort call in update-godep-licenses.sh
...
Also update LICENSES based on this ordering.
2016-03-11 17:29:51 -08:00
Joe Finney
65d0808baa
Add AWS 1.2 job.
2016-03-11 15:38:06 -08:00
Isaac Hollander McCreery
0787b313eb
Merge pull request #22815 from ihmccreery/1.2-upgrades
...
Configure upgrade jobs for the v1.2 release cycle
2016-03-11 14:14:33 -08:00
Brian Grant
532ba5a3c6
Merge pull request #21535 from AdoHe/restore_secure_etcd
...
restore ability to run against secured etcd
2016-03-11 12:14:06 -08:00
Joe Finney
bc06c5c13e
Fix project name for 1.2 serial job.
2016-03-11 10:52:18 -08:00
Joe Finney
e758b299c4
Merge pull request #22753 from spxtr/gce-1-2-jobs
...
More GCE 1.2 jobs.
2016-03-11 10:19:34 -08:00
AdoHe
7228b9b987
restore ability to run against secured etcd
2016-03-11 11:21:16 -05:00
deads2k
5bd161a9cc
allow resource.version.group in kubectl
2016-03-11 10:21:50 -05:00
k8s-merge-robot
4ee7424a7a
Merge pull request #22624 from fejta/testing
...
Auto commit by PR queue bot
2016-03-11 02:57:10 -08:00
Brian Grant
e5748a44d6
Merge pull request #22840 from liggitt/preferred-gvk
...
Prefer fetched version when determining HPA group version kind
2016-03-11 00:41:39 -08:00
Jeff Grafton
991f7446ac
Disable verify-godep-licenses.sh in hack/verify-all.sh
...
Also reenable in Makefile so Travis still runs it.
2016-03-10 23:30:40 -08:00
Jeff Grafton
d94ff5b83a
Merge pull request #22834 from ixdy/verify-all
...
Add jq to the kubekins-test image and pass through KUBE_FORCE_VERIFY_CHECKS
2016-03-10 22:15:20 -08:00
Jordan Liggitt
560b02b3ec
Prefer fetched version when determining HPA group version kind
2016-03-11 00:03:38 -05:00
k8s-merge-robot
97d384f269
Merge pull request #22756 from huang195/add_proxy_kubeconfig_flag
...
Auto commit by PR queue bot
2016-03-10 18:37:18 -08:00
Jeff Grafton
85bc91c44c
Add jq to the kubekins-test image and passthru KUBE_FORCE_VERIFY_CHECKS
2016-03-10 17:57:55 -08:00
HAI HUANG
b08e2b7201
added proxy-kubeconfig flag
2016-03-10 20:35:49 -05:00
k8s-merge-robot
144e818ae0
Merge pull request #22811 from madhusudancs/kubectl-rs-autoscale
...
Auto commit by PR queue bot
2016-03-10 17:16:26 -08:00
Daniel Wang
87b3eee1e6
Jenkins: Add the ability to selectively disable an e2e job
...
Also, disable kubernetes-e2e-gce-trusty-dev-slow for now as it is failing
constantly due to a known issue.
2016-03-10 16:50:43 -08:00
k8s-merge-robot
b8e589456c
Merge pull request #22809 from madhusudancs/kubectl-rs-desc
...
Auto commit by PR queue bot
2016-03-10 16:37:09 -08:00
Jeff Grafton
3821b26ef8
Merge pull request #22681 from ixdy/verify-all
...
Refactor hack/verify-all.sh and run almost all checks
2016-03-10 16:21:16 -08:00
Madhusudan.C.S
dba9d99e2e
Add kubectl describe tests for replica sets.
2016-03-10 15:06:12 -08:00
Madhusudan.C.S
dfc62b56cc
Enable kubectl autoscale for replica sets.
...
Also add some tests for it.
2016-03-10 15:05:54 -08:00
k8s-merge-robot
c9b3b007cd
Merge pull request #22808 from madhusudancs/kubectl-rs-cp-testdata
...
Auto commit by PR queue bot
2016-03-10 14:37:45 -08:00
k8s-merge-robot
5b00059fd2
Merge pull request #22762 from soltysh/job_run
...
Auto commit by PR queue bot
2016-03-10 13:22:29 -08:00
Isaac Hollander McCreery
6e3a276eeb
Configure upgrade jobs for the v1.2 release cycle
2016-03-10 11:32:26 -08:00
Eric Paris
c8d3a06223
Use LC_ALL=C when calling sort
2016-03-10 14:07:09 -05:00
Maciej Szulik
de83631768
Added job/v1 generator to kubectl run
2016-03-10 19:56:57 +01:00
Madhusudan.C.S
9c011c6e0f
Copy replicaset example yamls to hack/testdata directory.
2016-03-10 10:53:29 -08:00
Jeff Grafton
59a91326fa
Automatically determine remote upstream name.
...
Also add option to force Godeps verification checks on post-commit
Jenkins.
2016-03-09 16:22:28 -08:00
Jeff Grafton
4242fd2ee1
Refactor hack/verify-all.sh and run almost all checks.
...
The reasons why checks are skipped is now more explicit. Output is also
improved a bit, giving both the check name and the runtime on the
pass/fail line.
This commit also makes `make verify`, Travis, and Shippable all use
hack/verify-all.sh instead of calling scripts explicitly, as we had been
doing on Jenkins. Everything should now be consistent.
2016-03-09 15:20:36 -08:00
Jeff Grafton
24b3223141
Make skipping logic more robust in hack/verify-godep*
...
Also add an environment variable, KUBE_VERIFY_GIT_BRANCH, used with this
logic.
2016-03-09 15:20:36 -08:00
Joe Finney
0976ed59c9
Remove hack/e2e-internal/e2e-upgrade.sh.
2016-03-09 14:14:04 -08:00
k8s-merge-robot
36cb9d05ea
Merge pull request #22728 from spxtr/tidy-shell
...
Auto commit by PR queue bot
2016-03-09 13:59:13 -08:00
Joe Finney
bc326af6da
Add 1.2 gce soak job.
2016-03-09 11:25:08 -08:00
Joe Finney
e4e677acd7
Add gce-slow-release-1.2 job.
2016-03-09 11:15:21 -08:00
Joe Finney
fd4dd4d766
Add gce-serial-release-1.2 job.
2016-03-09 11:10:09 -08:00
Joe Finney
09c27cdabc
Add kubernetes-e2e-gce-release-1.2 e2e suite.
2016-03-09 09:48:53 -08:00
Wojciech Tyczynski
52798beef2
Generate protobuf-related files in Docker
2016-03-09 10:45:24 +01:00
Joe Finney
9845639e14
Remove cluster/kube-env.sh.
2016-03-08 16:57:31 -08:00
Joe Finney
401985bf6c
Move KUBERNETES_PROVIDER setting into cluster/kube-util.sh.
2016-03-08 16:51:20 -08:00
k8s-merge-robot
3d58b9c07f
Merge pull request #22678 from spxtr/feature-tests
...
Auto commit by PR queue bot
2016-03-08 11:53:58 -08:00
k8s-merge-robot
b4f3fa7f78
Merge pull request #22520 from mwielgus/enable_cm_jenkins
...
Auto commit by PR queue bot
2016-03-08 03:09:21 -08:00
Joe Finney
05ff3f00fd
Fix regex in list-feature-tests.sh.
2016-03-07 16:49:39 -08:00
Joe Finney
01d32c919e
Create kubernetes-test-go-release-1.2.
2016-03-07 14:28:57 -08:00
Joe Finney
78bb0ec645
Create kubernetes-build-1.2.
2016-03-07 14:16:06 -08:00
k8s-merge-robot
3cc6e0262b
Merge pull request #22662 from spxtr/move-test-history
...
Auto commit by PR queue bot
2016-03-07 13:29:47 -08:00
k8s-merge-robot
2f912089a1
Merge pull request #22657 from spxtr/test-history
...
Auto commit by PR queue bot
2016-03-07 13:29:45 -08:00
Joe Finney
9f86f8749e
Only run test-history on Jenkins builds.
2016-03-07 11:42:00 -08:00
Joe Finney
94c5e3cd4c
Fix gsutil upload in test-history.
2016-03-07 10:44:59 -08:00
Eric Paris
cbc4581bd6
Default to allow new golang versions
...
Out tests for features that didn't exist in old golang versions (like
gofmt didn't exist in 1.3 or the linker didn't want an = in 1.4) checked
for the new version. But this means every time there is a new version we
have to update the test. This PR inverts the test. We do it the old way
for the old version and if a new version comes along we just assume it
is going to work the new way.
2016-03-07 09:57:36 -05:00
Wojciech Tyczynski
d6d7f3ffd2
Move high-density kubemark back to us-east1
2016-03-07 12:09:35 +01:00
Erick Fejta
fd4fee788b
Add simplified testing instructions and etcd installation check.
2016-03-06 19:07:34 -08:00
k8s-merge-robot
3e948a6ee0
Merge pull request #22557 from eparis/e2e-node-test
...
Auto commit by PR queue bot
2016-03-06 03:36:45 -08:00
k8s-merge-robot
e5a908c898
Merge pull request #22476 from ixdy/cluster-logs
...
Auto commit by PR queue bot
2016-03-05 23:06:29 -08:00
k8s-merge-robot
0956b6ff0c
Merge pull request #22003 from spxtr/test-history
...
Auto commit by PR queue bot
2016-03-05 20:04:30 -08:00
k8s-merge-robot
d869dd0121
Merge pull request #22357 from ncdc/job-hpa-update-storage-test
...
Auto commit by PR queue bot
2016-03-05 05:45:33 -08:00
k8s-merge-robot
2808973503
Merge pull request #22038 from mqliang/daemonset-cache
...
Auto commit by PR queue bot
2016-03-05 03:38:55 -08:00
k8s-merge-robot
271784e5fa
Merge pull request #21167 from andyzheng0831/trusty-release
...
Auto commit by PR queue bot
2016-03-05 01:57:52 -08:00
k8s-merge-robot
ea43db8039
Merge pull request #22481 from ihmccreery/better-upgrade-tests
...
Auto commit by PR queue bot
2016-03-04 20:07:29 -08:00
k8s-merge-robot
93650d28a8
Merge pull request #22547 from jlowdermilk/sdk-ci-bucket
...
Auto commit by PR queue bot
2016-03-04 17:39:08 -08:00
Abhi Shah
506f4d2212
Merge pull request #22551 from dchen1107/test1
...
Enable --log-level=info for docker daemons for scalability jenkins jo…
2016-03-04 16:50:19 -08:00
Isaac Hollander McCreery
0e9114f667
Add ExperimentalNodeUpgrade test that a service stays up during cluster upgrade, not just master upgrade
...
- Duplicate old test to keep old functionality while allowing ExperimentalNodeUpgrade
- Also remove push test; no longer used/functioning
2016-03-04 16:10:29 -08:00
Joe Finney
633e12e1d4
Add a simple test history generator.
2016-03-04 15:52:44 -08:00
Joe Finney
9056c5c7b0
Send timeout to the runner, not to the curl.
2016-03-04 15:31:21 -08:00
Andy Goldstein
156c1f3c5d
Test jobs/hpas in storage update
2016-03-04 17:05:39 -05:00
Dawn Chen
fd10ca2f45
Enable --log-level=info for docker daemons for jenkins jobs and e2e tests except soak-continuous.
2016-03-04 13:31:42 -08:00
Eric Paris
082cdd5ad4
hack/e2e-node-test should not assume ginkgo installed
...
It should use the version we build.
2016-03-04 16:28:35 -05:00
k8s-merge-robot
bf2a33f831
Merge pull request #22548 from wojtek-t/switch_to_us_central
...
Auto commit by PR queue bot
2016-03-04 12:42:32 -08:00
Wojciech Tyczynski
113e0496c7
Move scalability jobs to us-central from us-east
2016-03-04 20:31:59 +01:00
Jeff Lowdermilk
6c4c033d5a
Use new bucket for ci cloud sdk
2016-03-04 11:27:52 -08:00
Andy Zheng
242b9977c7
Remove manifest copies from Trusty support
...
This change revises the way to provide kube-system manifests for clusters on Trusty. Originally, we maintained copies of some manifests under cluster/gce/trusty/kube-manifests, which is not scalable and hard to maintain. With this change, clusters on Trusty will use the same source of manifests as ContainerVM. This change also fixes some minor problems such as shell variables and comments to meet the style guidance better.
2016-03-04 11:16:49 -08:00
Joe Finney
81c3b98f6a
Restrict update-jenkins-jobs to run on the master node only.
2016-03-04 10:15:29 -08:00
Marcin Wielgus
7617cc6df4
Enable custom metrics in gce-autoscaling jenkins job
2016-03-04 13:42:30 +01:00
Wojciech Tyczynski
3b4ce5ed33
Merge pull request #22515 from wojtek-t/move_scalability_to_dedicated_project
...
Move scalability suite to dedicated project
2016-03-04 11:34:32 +01:00
k8s-merge-robot
130c67f1b0
Merge pull request #22474 from bprashanth/local-up
...
Auto commit by PR queue bot
2016-03-04 02:29:36 -08:00
k8s-merge-robot
18160741d4
Merge pull request #22429 from wojtek-t/fix_update_codecgen
...
Auto commit by PR queue bot
2016-03-04 02:29:33 -08:00
Wojciech Tyczynski
d3cfbea30e
Move scalability suite to dedicated project
2016-03-04 11:23:58 +01:00
Wojciech Tyczynski
965de9098f
Fix update codecgen
2016-03-04 10:42:06 +01:00
k8s-merge-robot
6418a9b278
Merge pull request #22473 from spxtr/pr-yaml
...
Auto commit by PR queue bot
2016-03-03 20:19:07 -08:00
k8s-merge-robot
3af6566ab3
Merge pull request #22463 from huang195/add_kubelet_kubeconfig_flag
...
Auto commit by PR queue bot
2016-03-03 20:19:05 -08:00
Jeff Lowdermilk
93e14a63e8
Revert "Enable --log-level=info for docker daemons for scalability jenkins jo…"
2016-03-03 19:21:11 -08:00
Jeff Lowdermilk
7215860ecd
Merge pull request #22453 from dchen1107/test1
...
Enable --log-level=info for docker daemons for scalability jenkins jo…
2016-03-03 16:29:34 -08:00
Jeff Grafton
d70c516d4f
Remove log collection code in cluster/gce/util.sh.
...
Also update some docs to mention cluster/log-dump.sh.
2016-03-03 15:28:33 -08:00
Jeff Lowdermilk
afa7816c38
Merge pull request #22009 from aveshagarwal/master-create-urls-issue
...
Fix kubectl create to create to all resources in a url.
2016-03-03 15:21:35 -08:00
k8s-merge-robot
c705d67a2e
Merge pull request #22466 from janetkuo/delete-hpa-first
...
Auto commit by PR queue bot
2016-03-03 15:19:40 -08:00
Joe Finney
02fb7b89c3
Set up update-jenkins-jobs on PR Jenkins.
2016-03-03 15:14:07 -08:00
Prashanth Balasubramanian
0aa5502fe1
Use 8.8.8.8 as default DNS server in local-up-cluster.
2016-03-03 14:59:40 -08:00
k8s-merge-robot
2a4479fa60
Merge pull request #22246 from huang195/kubelet_api_server_flag
...
Auto commit by PR queue bot
2016-03-03 14:44:58 -08:00
Jeff Lowdermilk
0b89a709d8
Merge pull request #22374 from spxtr/dump
...
Dump master/node logs at the end of E2E Jenkins jobs.
2016-03-03 14:01:00 -08:00
Janet Kuo
0c4e13cd9e
Delete hpa first before deleting the resources it controlls in test-cmd.sh
2016-03-03 13:57:45 -08:00
HAI HUANG
ee095e755a
adding kubelet-kubeconfig flag to km scheduler
2016-03-03 16:33:31 -05:00
Joe Finney
36917ccf47
Print out a message if e2e times out.
2016-03-03 13:23:40 -08:00
Jeff Lowdermilk
9cb3f16c5b
Merge pull request #22282 from andrewstuart/fix-config-writing
...
Update start_kubedns to use API_{HOST,PORT} vars
2016-03-03 11:39:53 -08:00
Dawn Chen
84689a7a69
Enable --log-level=info for docker daemons for scalability jenkins job and e2e test.
2016-03-03 11:11:56 -08:00
k8s-merge-robot
d81d823ca5
Merge pull request #22393 from eparis/blunderbuss
...
Auto commit by PR queue bot
2016-03-02 18:51:56 -08:00
Eric Paris
5e5a823294
Move blunderbuss assignees into tree
2016-03-02 20:46:32 -05:00
Janet Kuo
d5953991d9
Fix kubectl edit: no such file
2016-03-02 16:05:08 -08:00
Jeff Lowdermilk
d5f4595c5f
Merge pull request #21914 from spxtr/remove-prepare-version
...
Remove PrepareVersion from hack/e2e.go.
2016-03-02 15:57:59 -08:00
Joe Finney
56b7c9ba20
Dump logs at the end of e2e runs.
2016-03-02 15:49:08 -08:00
Avesh Agarwal
ad6dfa0370
Fix kubectl create to create all resources in a url.
...
https://github.com/kubernetes/kubernetes/issues/18751 .
2016-03-02 18:08:24 -05:00
Jeff Lowdermilk
d644062445
Merge pull request #22333 from bprashanth/gke-ingress
...
Move gke ingress tests into a different project.
2016-03-02 15:06:06 -08:00
Jeff Lowdermilk
6154f59599
Merge pull request #22330 from pwittrock/jenkins-cleanup
...
node e2e ci - clean up workspace before builds
2016-03-02 15:05:29 -08:00
Joe Finney
5315921d68
Use timeout command instead of Jenkins for e2e tests.
2016-03-02 15:02:29 -08:00
Prashanth Balasubramanian
67e1ddddfb
Move gke ingress tests into a different project.
2016-03-02 13:03:54 -08:00
Joe Finney
9cba0c62a1
Point soak tests at the correct workspace directory.
2016-03-02 10:24:33 -08:00
k8s-merge-robot
9c72e6e923
Merge pull request #22362 from wojtek-t/print_go_version_in_building_release
...
Auto commit by PR queue bot
2016-03-02 09:10:50 -08:00
k8s-merge-robot
1dbc618c14
Merge pull request #22358 from gmarek/set-register
...
Auto commit by PR queue bot
2016-03-02 08:34:02 -08:00
Wojciech Tyczynski
947589607b
Print go version when building release
2016-03-02 16:40:35 +01:00
k8s-merge-robot
6dbdcfe78f
Merge pull request #22116 from david-mcmahon/license-tool
...
Auto commit by PR queue bot
2016-03-02 07:14:40 -08:00
gmarek
fb2173cedf
Register master kubelet in scalability suite
2016-03-02 16:09:37 +01:00
gmarek
73863757ce
Shorten the name for high-density kubemark, as we're generating too long names with the old one.
2016-03-02 15:45:40 +01:00
gmarek
11b938bde6
Add a name for high density kubemark
2016-03-02 14:41:11 +01:00
HAI HUANG
15ffe5746d
added kubelet-api-servers flag to km scheduler
2016-03-02 08:18:58 -05:00
k8s-merge-robot
73b39e9f1e
Merge pull request #22293 from dchen1107/test
...
Auto commit by PR queue bot
2016-03-02 03:35:05 -08:00
gmarek
174155b9ae
Run 100 pods/node 100 node kubemark suite.
2016-03-02 12:21:27 +01:00
k8s-merge-robot
737f6f04fa
Merge pull request #22015 from spxtr/fix-soak
...
Auto commit by PR queue bot
2016-03-02 01:23:59 -08:00
David McMahon
ffeaef6201
New Godeps LICENSE generation tool.
...
Includes initial Godeps/LICENSES and Godeps/.license_file_state file to ensure
fast local generation.
2016-03-01 18:16:09 -08:00
Phillip Wittrock
6ae1624dc9
node e2e ci - clean up workspace before builds
2016-03-01 17:35:03 -08:00
Joe Finney
eff5a9c14d
Add cluster/log-dump.sh.
2016-03-01 17:13:18 -08:00
Dawn Chen
a90ac42dd8
Kill docker daemon after configing cbr0 if flag --babysit-daemon is true so that babysitter process can restart it again with proper configurations and checkpoint file.
2016-03-01 16:46:31 -08:00
Isaac Hollander McCreery
523f18cc0e
Fix script again
2016-03-01 09:00:09 -08:00
Justin Santa Barbara
c76c167ee0
e2e hotfix: don't quote ci/latest in GS URL
...
Fix #22287
2016-03-01 11:23:46 -05:00
Isaac Hollander McCreery
361cd2cad3
Merge pull request #22073 from ihmccreery/upgrade-job-infra
...
Prep for upgrade job infra fixups
2016-03-01 08:03:29 -08:00
Andrew Stuart
a767b700b4
Update start_kubedns to use API_{HOST,PORT} vars
2016-03-01 08:54:55 -07:00
mqliang
7e1ab26c06
add lookup cache for daemonset
2016-03-01 22:04:56 +08:00
k8s-merge-robot
546bd99d8d
Merge pull request #22260 from gmarek/jenkins-config
...
Auto commit by PR queue bot
2016-03-01 01:46:17 -08:00
k8s-merge-robot
739285b146
Merge pull request #21265 from stevekuznetsov/skuznets/new-sa
...
Auto commit by PR queue bot
2016-03-01 01:14:06 -08:00
gmarek
fb32c086fe
Use 1000-machine MIGs in enormous clusters
2016-03-01 09:40:33 +01:00
k8s-merge-robot
694cda4a89
Merge pull request #22037 from ixdy/etcd-version-check
...
Auto commit by PR queue bot
2016-02-29 22:44:39 -08:00
k8s-merge-robot
a608cc94e8
Merge pull request #22156 from caesarxuchao/revert-20202
...
Auto commit by PR queue bot
2016-02-29 18:24:31 -08:00
Isaac Hollander McCreery
adbd8a9c94
Refactor e2e-runner.sh in preparation for upgrade job infra improvements
2016-02-29 16:36:37 -08:00
k8s-merge-robot
d1ebc532eb
Merge pull request #22175 from wojtek-t/store_kubemark_logs_in_case_of_failure
...
Auto commit by PR queue bot
2016-02-29 06:54:37 -08:00
Wojciech Tyczynski
cf7e6d0fc3
Merge pull request #21965 from mqliang/flag-abbreviation
...
avoid use abbreviation in flag
2016-02-29 14:43:26 +01:00
Wojciech Tyczynski
c09b470b2b
Store logs from base cluster if kubemark fails
2016-02-29 14:22:06 +01:00
Wojciech Tyczynski
ca72f9908c
Enable parallel namespace deletion in kubemarks and enormous cluster
2016-02-29 10:54:59 +01:00
Wojciech Tyczynski
ffa50f107f
Revert "Move scalability suite to a separate project"
2016-02-29 07:16:04 +01:00
Chao Xu
cd6aea2f7b
switch namespace before recreate a pod in test-cmd.sh
2016-02-28 19:03:31 -08:00
k8s-merge-robot
577eb94c68
Merge pull request #21749 from wojtek-t/move_scalability_to_separate_project
...
Auto commit by PR queue bot
2016-02-28 13:40:36 -08:00
k8s-merge-robot
cdf456af0e
Merge pull request #21520 from mikedanese/fastbuild
...
Auto commit by PR queue bot
2016-02-28 07:23:22 -08:00
Brian Grant
aa04237789
Eliminate racy scale command from resource-alias test.
...
Fixes #22128 .
2016-02-27 22:43:08 +00:00
k8s-merge-robot
43792754d8
Merge pull request #21469 from wojtek-t/parallel_namespace_deletion
...
Auto commit by PR queue bot
2016-02-27 07:26:49 -08:00
k8s-merge-robot
00d99ac261
Merge pull request #20347 from ericchiang/authz_grpc
...
Auto commit by PR queue bot
2016-02-26 22:00:42 -08:00
Fabio Yeon
375b4ca8d6
Revert "Revert 20202. Use other measures to prevent race in test-cmd.sh"
2016-02-26 19:25:08 -08:00
k8s-merge-robot
a5ceafc48a
Merge pull request #21175 from caesarxuchao/revert-20202
...
Auto commit by PR queue bot
2016-02-26 18:33:42 -08:00
Fabio Yeon
5de5ecb689
Merge pull request #21501 from swagiaal/hostname-override
...
Enable passing hostname-override through environment variable
2016-02-26 13:15:07 -08:00
Fabio Yeon
802bfc8f5e
Merge pull request #21391 from pmorie/num-nodes-default
...
Fix default for num-nodes in ginkgo-e2e.sh
2016-02-26 13:14:39 -08:00
Fabio Yeon
df4529e33d
Merge pull request #21711 from sjenning/fix-flake-21640
...
increase wait_for_url defaults
2016-02-26 13:10:07 -08:00
k8s-merge-robot
a53bf86f40
Merge pull request #21946 from pwittrock/node-e2e-images
...
Auto commit by PR queue bot
2016-02-26 12:18:03 -08:00
Jeff Grafton
7adaf80cc7
Make hack/install-etcd.sh use hack/lib/etcd.sh
2016-02-26 11:54:43 -08:00
Phillip Wittrock
a11489e0ff
Node e2e documentations and minor features
...
- Add README.md for node e2e tests
- Add support for --cleanup=false to leave test files on remote hosts and temporary instances for debugging
- Add ubuntu trusty instances for docker 1.8 and docker 1.9 to jenkins pr builder
- Disable coreos-beta for jenkins ci since it is failing - need to investigate
2016-02-26 10:58:48 -08:00
Steve Kuznetsov
e5b696ee43
added 'kubectl create sa' to create serviceaccounts
2016-02-26 10:27:37 -05:00
Wojciech Tyczynski
1f2fe27122
Store logs from main cluster in kubemark only in case of failure
2016-02-26 10:42:27 +01:00
Marek Grabowski
c1f410ee12
Merge pull request #22048 from wojtek-t/fix_kubemark
...
Fix kubemark after increase kube-proxy resources
2016-02-26 10:36:01 +01:00
Wojciech Tyczynski
d923730e10
Fix kubemark after increase kube-proxy resources
2016-02-26 10:34:48 +01:00
Wojciech Tyczynski
60d17c2ccd
Merge pull request #22046 from wojtek-t/store_logs_from_main_cluster
...
Store logs from main cluster if start-kubemark doesn't work
2016-02-26 09:34:56 +01:00
Wojciech Tyczynski
84b1a02bad
Store logs from main cluster if start-kubemark doesn't work
2016-02-26 09:32:28 +01:00
Jeff Grafton
67ada27250
Bump timeout for kubernetes-test-go to 45m
2016-02-25 15:04:44 -08:00
Paul Morie
531d84520b
Fix default for num-nodes in ginkgo-e2e.sh
2016-02-25 17:31:13 -05:00
Joe Finney
610e9f9996
Explicitly set custom workspace for soak jobs.
2016-02-25 13:50:01 -08:00
Joe Finney
1e802923f2
Send 1.1 upgrade jobs to the proper e2e runner.
2016-02-25 10:04:01 -08:00
Wojciech Tyczynski
506899008f
Parallelization of namespace deletion
2016-02-25 16:33:25 +01:00
deads2k
9c42d219bc
allow disambiguation of resouces
2016-02-25 07:35:23 -05:00
k8s-merge-robot
47986aa018
Merge pull request #21163 from pmorie/downward-api-e2e-time
...
Auto commit by PR queue bot
2016-02-25 03:08:44 -08:00
mqliang
4a9a3aeeea
avoid use abbreviation in flag
2016-02-25 17:30:21 +08:00
k8s-merge-robot
7f613dbf15
Merge pull request #21204 from pwittrock/node-e2e-pull
...
Auto commit by PR queue bot
2016-02-24 22:16:48 -08:00
k8s-merge-robot
9a4e3f8470
Merge pull request #21870 from mqliang/lookup-cache
...
Auto commit by PR queue bot
2016-02-24 20:01:29 -08:00
k8s-merge-robot
628858eb84
Merge pull request #21930 from spxtr/silence-gke
...
Auto commit by PR queue bot
2016-02-24 17:25:17 -08:00
Phillip Wittrock
c51c606f22
Node e2e test runner - run against images
...
- support allocating gce instances from images and running tests against them
- set --hostname-override to match node name
- add jenkins script to source to reproduce jenkins build locally
2016-02-24 16:29:59 -08:00
Chao Xu
e113aef9f0
Merge pull request #21822 from caesarxuchao/error-exit-linkcheck
...
verify-linkchecker.sh now exits with a non-zero return code if found invalid links
2016-02-24 15:42:34 -08:00
Joe Finney
1f4e1ba956
Quiet cloudsdk download and untar.
2016-02-24 15:11:50 -08:00
Brian Grant
9403f95d31
Merge pull request #21793 from janetkuo/test-cmd-delete-flake
...
Set RC's pod template TerminationGracePeriodSeconds to 0 in test-cmd.sh test data
2016-02-24 13:57:29 -08:00
k8s-merge-robot
3f7705b47b
Merge pull request #21897 from spxtr/fix-upgrades
...
Auto commit by PR queue bot
2016-02-24 13:37:56 -08:00
k8s-merge-robot
449f1180fe
Merge pull request #21850 from spxtr/remove-upgrade-e2e-test
...
Auto commit by PR queue bot
2016-02-24 13:37:55 -08:00
Joe Finney
930291588c
Remove PrepareVersion from hack/e2e.go.
2016-02-24 13:08:22 -08:00
Wojciech Tyczynski
d1876956b4
Fix kubemark setup
2016-02-24 19:23:09 +01:00
Joe Finney
8f8aec4122
Properly set runner for upgrade jobs.
2016-02-24 10:21:24 -08:00
Wojciech Tyczynski
f2651017d5
Revert #21867 and #21868
2016-02-24 18:25:19 +01:00
mqliang
e44e71ca87
make cache size configurable
2016-02-24 22:37:02 +08:00
Wojciech Tyczynski
06197e5966
Run empty set of tests to not match anything
2016-02-24 13:08:03 +01:00
gmarek
a5052d9b7b
Run kubemarks in kubernetes-scale for a while
2016-02-24 10:57:35 +01:00
Wojciech Tyczynski
78caf3a4f9
Temporarily move kubemark tests to different project
2016-02-24 10:31:28 +01:00
Joe Finney
2e889763d2
Remove hack/upgrade-e2e-test.sh.
2016-02-23 18:01:51 -08:00
Chao Xu
b9a350a7f1
verify-linkchecker.sh now exits with a non-zero return code if found invalid links
2016-02-23 16:51:29 -08:00
k8s-merge-robot
7a8ea1528a
Merge pull request #21802 from spxtr/remove-parallel-e2e
...
Auto commit by PR queue bot
2016-02-23 16:42:46 -08:00
k8s-merge-robot
5c9bfaa42c
Merge pull request #21799 from quinton-hoole/2016-02-23-focus-ubelite-e2e
...
Auto commit by PR queue bot
2016-02-23 16:42:45 -08:00
k8s-merge-robot
e5b5c2c5f3
Merge pull request #21771 from eparis/godep-rebase
...
Auto commit by PR queue bot
2016-02-23 16:42:43 -08:00
k8s-merge-robot
067998e727
Merge pull request #21622 from pwittrock/nodee2essh
...
Auto commit by PR queue bot
2016-02-23 16:42:42 -08:00
Quinton Hoole
b0b31845a7
Make ubernetes lite e2e tests run stable tests and in parallel.
...
Fixes #21797
2016-02-23 15:49:56 -08:00
Joe Finney
9f5d3545f8
Remove hack/parallel-e2e.sh.
2016-02-23 14:37:49 -08:00
Janet Kuo
dbfb6c0169
Set RC's pod template TerminationGracePeriodSeconds to 0 in test-cmd.sh test data
2016-02-23 14:22:41 -08:00
Joe Finney
c1bd13ec4b
Merge pull request #21489 from pwittrock/jenkinsyaml
...
Jenkinsyaml
2016-02-23 13:31:12 -08:00
k8s-merge-robot
2524249a41
Merge pull request #21779 from quinton-hoole/2016-02-23-fix-ubelite-e2e-zone-config
...
Auto commit by PR queue bot
2016-02-23 12:48:10 -08:00
Phillip Wittrock
538a2c489c
Address pr comments
2016-02-23 11:18:56 -08:00
Quinton Hoole
fcc4f34902
Fixes #21777 (e2e script refactor broke ubernetes-lite e2e tests)
2016-02-23 11:15:32 -08:00
k8s-merge-robot
6c8ce0e417
Merge pull request #21393 from erictune/fix-swagger-gen-1
...
Auto commit by PR queue bot
2016-02-23 11:11:40 -08:00
k8s-merge-robot
6332d84039
Merge pull request #19782 from pmorie/config-docs
...
Auto commit by PR queue bot
2016-02-23 11:11:36 -08:00
Joe Finney
178a8835d2
Merge pull request #21704 from spxtr/finish-yaml-refactor
...
Finish yaml refactor
2016-02-23 11:10:44 -08:00
Eric Paris
784d264c4a
Pin Godep to version v53
...
which isn't horribly broken
2016-02-23 14:01:52 -05:00
Phillip Wittrock
35e753f22b
Move credentialsId to a variable
2016-02-23 10:52:51 -08:00
Paul Morie
7e64b4ac52
Add ConfigMap docs
2016-02-23 13:27:54 -05:00
Phillip Wittrock
eba1767af6
yaml for jenkins node docker-build-push/e2e cadvisor/heapster/node jobs. #20538
2016-02-23 09:59:57 -08:00
Sami Wagiaalla
2ed03a194d
Enable passing hostname-override through environment variable
2016-02-23 09:44:41 -05:00
Wojciech Tyczynski
b87ef607dd
Move scalability suite to a separate project
2016-02-23 14:52:36 +01:00
k8s-merge-robot
ac644e03bd
Merge pull request #20769 from bprashanth/ing_config
...
Auto commit by PR queue bot
2016-02-23 02:09:15 -08:00
k8s-merge-robot
b034050f6a
Merge pull request #21725 from spxtr/remove-e2e-from-release
...
Auto commit by PR queue bot
2016-02-23 00:49:32 -08:00
k8s-merge-robot
84e5cabdf7
Merge pull request #21642 from mitake/remove-kube-dump
...
Auto commit by PR queue bot
2016-02-23 00:49:31 -08:00
k8s-merge-robot
5d4007f2fa
Merge pull request #21644 from thibserot/dns2
...
Auto commit by PR queue bot
2016-02-22 23:45:44 -08:00
Phillip Wittrock
a3623c0c14
Refactor node e2e tests
...
- Add Makefile targets
- Start services in the test harness and connect locally
- Build test into binary and copy to remote host to start services
- Use tar to copy binaries to remote hosts to simplify design
2016-02-22 20:06:15 -08:00
Joe Finney
454cec71e8
Remove hack/e2e-from-release.sh.
2016-02-22 16:45:29 -08:00
k8s-merge-robot
be68276db0
Merge pull request #21708 from spxtr/fix-trusty
...
Auto commit by PR queue bot
2016-02-22 16:16:54 -08:00
Jeff Lowdermilk
c406665b2b
Plumb node labels through salt
...
Expose node-labels flag on kubelet for gce via a startup script
env var.
2016-02-22 15:31:34 -08:00
Joe Finney
892c8e5153
Comment upgrade YAML.
2016-02-22 15:16:56 -08:00
Dawn Chen
699c80b752
Merge pull request #21641 from bprashanth/promisc
...
Teach the kubelet about promiscuous mode, take 2
2016-02-22 15:08:18 -08:00
Seth Jennings
fdc1e0b310
increase wait_for_url defaults
2016-02-22 15:32:03 -06:00
Joe Finney
1dea4052b9
Properly set runner for trusty gce jobs.
2016-02-22 13:30:49 -08:00
Eric Chiang
b50ede606f
*: enable authorization.k8s.io/v1beta1 extensions for go tests
2016-02-22 11:49:01 -08:00
Joe Finney
cb55119723
Move upgrade environment variables to YAML.
2016-02-22 11:48:04 -08:00
Eric Chiang
080bdde5c1
*: update documentation for webhook authorizer
2016-02-22 11:39:07 -08:00
Prashanth Balasubramanian
804903f320
Move ingress tests to a different project.
2016-02-22 11:35:01 -08:00
Eric Tune
cef288eb42
Warn when not enough FDs
...
Helps debug problem when running tests on OS X.
2016-02-22 07:27:10 -08:00
Eric Tune
e97967589c
Replace deprecated flags with new equivalents
...
When running apiserver in hack/after-build/update-swagger-spec.sh.
2016-02-22 07:10:53 -08:00
Eric Tune
22f14a92c0
Let update-swagger-spec.sh run on Mac
...
Put the certs into a temp dir rather than a protected
system dir (/var/run) which only root can access.
2016-02-22 07:10:21 -08:00
gmarek
b593dd9019
Disable running enormous-startup after build success
2016-02-22 10:02:10 +01:00
k8s-merge-robot
aee2eb3977
Merge pull request #21434 from erictune/job-ga
...
Auto commit by PR queue bot
2016-02-22 00:12:54 -08:00
gmarek
430bfe2c63
Move enormour startup to east1-d zone
2016-02-22 07:37:37 +01:00
k8s-merge-robot
1ce188e557
Merge pull request #21430 from spxtr/e2e-internal
...
Auto commit by PR queue bot
2016-02-21 12:08:22 -08:00
Thibault Serot
57c06224eb
Enabling DNS support in local-up-cluster.sh
2016-02-21 18:56:14 +01:00
Thibault Serot
9c5f4c112b
Enabling DNS support in local-up-cluster.sh
2016-02-21 18:55:06 +01:00
k8s-merge-robot
b7a89bfd47
Merge pull request #21352 from mikedanese/test-more
...
Auto commit by PR queue bot
2016-02-21 04:40:26 -08:00
k8s-merge-robot
e34a23b289
Merge pull request #21351 from smarterclayton/optional_pod_status
...
Auto commit by PR queue bot
2016-02-21 04:10:19 -08:00
k8s-merge-robot
7462f8cb47
Merge pull request #21180 from ixdy/cleanup-upload-to-gcs-script
...
Auto commit by PR queue bot
2016-02-21 03:14:31 -08:00
k8s-merge-robot
d6192dd152
Merge pull request #21342 from spxtr/remove-e2e-test
...
Auto commit by PR queue bot
2016-02-21 00:39:38 -08:00
Prashanth Balasubramanian
2e8ff81de1
Teach the kubelet about --hairpin-mode=promiscuous-bridge.
2016-02-20 22:40:54 -08:00
k8s-merge-robot
9b395b558e
Merge pull request #15476 from burmanm/hawkular_save
...
Auto commit by PR queue bot
2016-02-20 19:09:18 -08:00
k8s-merge-robot
330f484c17
Merge pull request #21174 from deads2k/make-patch-more-predictable
...
Auto commit by PR queue bot
2016-02-20 05:56:41 -08:00
Marek Grabowski
06a6aaca2d
Merge pull request #21616 from gmarek/startup
...
enormous startup fix
2016-02-20 10:52:38 +01:00
gmarek
70bb358e12
enormous startup fix
2016-02-20 10:51:51 +01:00
k8s-merge-robot
783074eded
Merge pull request #21596 from caesarxuchao/linkcheck-golang-path
...
Auto commit by PR queue bot
2016-02-20 01:51:09 -08:00
gmarek
503a2e66a2
fix enormous startup take 2
2016-02-20 10:29:39 +01:00
gmarek
328a41675d
fix enormous startup
2016-02-20 09:41:58 +01:00
k8s-merge-robot
900ab8d2b1
Merge pull request #21597 from spxtr/remove-verify-jobs
...
Auto commit by PR queue bot
2016-02-20 00:29:47 -08:00
Daniel Smith
a8b943dddd
Revert "Put the container bridge in promiscuous mode."
2016-02-19 23:14:53 -08:00
Prashanth B
b36e046fc8
Merge pull request #21326 from bprashanth/cbr0_promisc
...
Put the container bridge in promiscuous mode.
2016-02-19 17:52:34 -08:00
k8s-merge-robot
5918967a86
Merge pull request #21590 from ixdy/jenkins-job-configs
...
Auto commit by PR queue bot
2016-02-19 15:48:32 -08:00
Chao Xu
cdb6fb9a67
add golang to path to run on jenkins
2016-02-19 15:18:38 -08:00
Joe Finney
06899b23ac
Remove PR E2E config.
2016-02-19 15:10:57 -08:00
Joe Finney
0c8403b266
Remove hack/verify-jenkins-jobs.sh.
2016-02-19 15:03:01 -08:00
Prashanth Balasubramanian
a694a7ae4b
Teach the kubelet about --hairpin-mode=promiscuous-bridge.
2016-02-19 14:59:16 -08:00
Joe Finney
2cc07f1c6f
Properly set provider-env in an enormous cluster job.
2016-02-19 14:39:43 -08:00
Joe Finney
27369806b5
Move e2e environment variables for most jobs into YAML.
2016-02-19 14:25:54 -08:00
Jeff Grafton
81e15e8b55
Upload build log after running custom GCS scripts
2016-02-19 14:20:44 -08:00
Chao Xu
314a6ab7de
switch namespace before recreate a pod in test-cmd.sh
2016-02-19 12:13:59 -08:00
Joe Finney
dcc25e2a04
Merge pull request #21264 from gmarek/jenkins-config
...
Enormous cluster jenkins configs
2016-02-19 11:50:43 -08:00
gmarek
ff5ddd93bf
Enormous cluster jenkins configs
2016-02-19 20:39:06 +01:00
deads2k
11da9a7638
fix --record to not fail a successful patch
2016-02-19 14:28:23 -05:00
Mike Danese
132c4271dc
add linux fastbuild option to ./build/release.sh
2016-02-19 10:18:05 -08:00
Joe Finney
3679aa24c7
Fix bad indentation in examples yaml.
2016-02-19 10:07:22 -08:00
k8s-merge-robot
4d59d700c2
Merge pull request #21556 from erictune/mac-fix-2
...
Auto commit by PR queue bot
2016-02-19 10:00:57 -08:00
k8s-merge-robot
8a5738c044
Merge pull request #21375 from gmarek/config
...
Auto commit by PR queue bot
2016-02-19 10:00:56 -08:00
Eric Tune
bcdbd1c709
Fix Job Reaping
...
Ensure batch.Kind("Job") has a reaper, so that pods are not orphaned.
Check for orphaned pods in test-cmd.sh.
Also provide describer and scaler for batch.Kind("Job").
The scaler, reaper, and describer for extensions can
be reused for batch.
2016-02-19 09:22:05 -08:00
Eric Tune
3433d50bc3
Fix test and reorder initialization of groups
...
Delete a job scale test
A subsequent PR is going to remove support
for this anyways.
Initialize extensions before batch and autoscaling
per @lavalamp review suggestion.
2016-02-19 09:22:05 -08:00
Eric Tune
d5f303d3d7
Fixed and added tests
2016-02-19 09:20:56 -08:00
Eric Tune
98a801a37b
Created batch API group and copied Job there
...
Modeled after on first commit (2fbc5bb
) of piosz:hpa-ga (#20501 ).
2016-02-19 09:20:56 -08:00
Eric Tune
8d1831b075
Remove a diff option not in BSD diff
...
Allows autogeneration on mac.
2016-02-19 08:47:57 -08:00
k8s-merge-robot
62587b66ff
Merge pull request #21019 from freehan/estest
...
Auto commit by PR queue bot
2016-02-19 05:46:23 -08:00
gmarek
cc3cf17519
extend timeout in kubemark-scale
2016-02-19 12:01:25 +01:00
k8s-merge-robot
5a3dec8dad
Merge pull request #20777 from pmorie/kubectl-create-configmap
...
Auto commit by PR queue bot
2016-02-19 00:03:53 -08:00
Paul Morie
51a9c2c9ba
Add kubectl create configmap
2016-02-18 21:24:21 -05:00
Hitoshi Mitake
cb7951e7aa
hack/kube-dump.sh: remove an unused script
...
Based on the comments on https://github.com/kubernetes/kubernetes/pull/19915
2016-02-19 11:02:36 +09:00
Jeff Grafton
74cdfea025
Fix small typo in ubernetes-lite E2E_ZONES
...
Also fix name of MULTIZONE env var
2016-02-18 17:12:25 -08:00
k8s-merge-robot
1c1c57719a
Merge pull request #21515 from ihmccreery/upgrade-target-to-latest
...
Auto commit by PR queue bot
2016-02-18 16:15:28 -08:00
Phillip Wittrock
644d651c69
Merge pull request #21442 from ixdy/e2e-runner-ginkgo-test-args
...
Don't bail if GINKGO_TEST_ARGS isn't set
2016-02-18 16:07:11 -08:00
Isaac Hollander McCreery
194abade89
Default upgrade-target (ci/latest) for upgrade jobs on master
2016-02-18 15:10:35 -08:00
Paul Morie
6cc1ba4158
Make downward API volume test run faster
2016-02-18 17:20:09 -05:00
Jeff Grafton
68fddbdfad
Don't bail if GINKGO_TEST_ARGS isn't set
2016-02-18 11:31:58 -08:00
k8s-merge-robot
80ff0cbbda
Merge pull request #21193 from caesarxuchao/linkchecker-jenkins
...
Auto commit by PR queue bot
2016-02-18 10:29:50 -08:00
k8s-merge-robot
5acdb92126
Merge pull request #21177 from laushinka/spelling-fixes
...
Auto commit by PR queue bot
2016-02-18 10:29:49 -08:00
k8s-merge-robot
17325ef6ef
Merge pull request #20501 from piosz/hpa-ga
...
Auto commit by PR queue bot
2016-02-18 06:52:39 -08:00
Wojciech Tyczynski
03af3f60e9
Revert "Move scalability suite to a dedicated project"
2016-02-18 12:13:41 +01:00
Wojciech Tyczynski
dd4289c87d
Move scalability suite to a dedicated project
2016-02-18 10:49:28 +01:00
Joe Finney
2b756ca56d
Move E2E kube-up call into test-setup from e2e-internal.
2016-02-17 16:49:07 -08:00
laushinka
7ef585be22
Spelling fixes inspired by github.com/client9/misspell
2016-02-18 06:58:05 +07:00
Isaac Hollander McCreery
83bfe2cfda
Refactor e2e.sh in preparation for YAML-ifying configs
...
Remove E2E_CLUSTER_NAME, E2E_NETWORK, and KUBE_GCE_INSTANCE_PREFIX from jobs that don't need them, because they are in their own project, and add defaults
Fail on leaked resources by default
Kill E2E_SET_CLUSTER_API_VERSION
Rely on defaults for E2E_UP, E2E_TEST, E2E_DOWN
Only PUBLISH_GREEN_VERSION for kubernetes-e2e-gce
Directly export ZONE vars rather than chaining and setting locals
Collapse E2E_CLUSTER_NAME, E2E_NETWORK, and KUBE_GCE_INSTANCE_PREFIX into E2E_NAME (always take the shortest of the three, to avoid name length problems
Factor out soak vars
Remove incorrect feature enablement ENV vars
export GINKGO_TEST_ARGS directly, rather than looping through export at the bottom
Directly export E2E Control Variables
Export KUBEMARK ENV vars directly
export KUBERNETES_PROVIDER directly
Export JENKINS_PUBLISHED_VERSION directly, and don't use it where unnecessary; remove old CURRENT_RELEASE_PUBLISHED_VERSION
export PROJECT and NETWORK_PROVIDER directly
export node ENV vars directly
export other shared cluster ENV vars directly
Directly export CLOUDSDK ENV vars
export GCE and AWS ENVs directly
Various cleanup, including refactoring upgrades
Fixup: no PERFORMANCE env for AWS
Address comment
Fixes for comments up to cebf501
Address comments through 81f39b8
Fix: default E2E_UP, E2E_TEST, E2E_DOWN
Use JENKINS_FORCE_GET_TARS for upgrade jobs; fixes through 140ea2b
Fix ubernetes-lite config
Address rebased 2 comments
Remove tab
2016-02-17 11:28:18 -08:00
Joe Finney
98981ac3ec
Remove unused functions from hack/e2e.go.
2016-02-17 11:23:33 -08:00
k8s-merge-robot
1a2f811a3b
Merge pull request #20063 from mqliang/imageGC-config
...
Auto commit by PR queue bot
2016-02-17 06:16:45 -08:00
gmarek
a72a4ea3d6
Remove buildcop from ingress test failure emails
2016-02-17 14:14:18 +01:00
Marek Grabowski
411e7671f1
Merge pull request #21371 from wojtek-t/kubemark_in_us
...
Run 100-node Kubemark in US to enable running load test there.
2016-02-17 13:44:53 +01:00
k8s-merge-robot
207b90ae63
Merge pull request #19578 from quinton-hoole/2016-01-04-ube-lite-e2e
...
Auto commit by PR queue bot
2016-02-17 04:29:48 -08:00
k8s-merge-robot
4c69bdaacd
Merge pull request #21294 from luxas/add_arm_test_targets
...
Auto commit by PR queue bot
2016-02-17 02:26:49 -08:00
Wojciech Tyczynski
4930bc22c2
Enable load test in Kubemark100
2016-02-17 09:51:14 +01:00
Wojciech Tyczynski
e14e7964a7
Run 100-node Kubemark in us-central1-b
2016-02-17 09:49:58 +01:00
Clayton Coleman
778fb1798b
Don't print reason or message if they are empty on pods
...
For running pods they are typically empty and convey no value. Don't
print images twice.
2016-02-16 23:26:59 -05:00
Chao Xu
f679913720
add a jenkins job config for linkchecker
2016-02-16 17:33:23 -08:00
Mike Danese
2857baa7fd
use defaults in test-dockerized for etcd prefix and api versions
...
Test more things
2016-02-16 15:46:22 -08:00
Joe Finney
6f7182e500
Remove hack/e2e-test.sh in favor of hack/e2e.go.
2016-02-16 14:54:50 -08:00
Quinton Hoole
b4a3559807
Add Jenkins e2e test job for multi-zone Ubernetes Lite
2016-02-16 13:07:17 -08:00
k8s-merge-robot
eb44520f5f
Merge pull request #21276 from mesosphere/jdef_host_port_endpoints_refactor
...
Auto commit by PR queue bot
2016-02-16 10:59:11 -08:00
Alex Robinson
589fa7a2c0
Merge pull request #21156 from wonderfly/add_job_configs_for_gke_trusty
...
Jenkins: Add configs for gke+trusty e2e test jobs
2016-02-16 10:11:56 -08:00
k8s-merge-robot
dada47eb2f
Merge pull request #21179 from smarterclayton/cant_replace_cluster_resource
...
Auto commit by PR queue bot
2016-02-16 04:45:43 -08:00
Lucas Käldström
fa39730f0b
Add test targets for ARM
2016-02-16 08:25:18 +02:00
k8s-merge-robot
47acbd62ec
Merge pull request #21099 from deads2k/extend-patch
...
Auto commit by PR queue bot
2016-02-15 14:49:02 -08:00
James DeFelice
8c776b7eb9
host port mapping should be more consistent between scheduler and
...
controller-manager in k8sm:
- rename host_port_endpoints flag to host-port-endpoints
- host port mapping strategy in scheduler should be driven by host-port-endpoints flag
- added host-port-endpoints to known flags
- docs: scheduler should also be configured with host-port-endpoints
- task recovery: be explicit about excluding mirror pods
2016-02-15 21:28:46 +00:00
Piotr Szczesniak
d9705940d6
Fixed and added tests
2016-02-15 21:39:00 +01:00
Piotr Szczesniak
2fbc5bb767
Created autoscaling API group and copied HPA there
2016-02-15 21:39:00 +01:00
mqliang
641ba92aa3
move minGCAge to ImageGCPolicy and make it configurable
2016-02-15 22:54:54 +08:00
Paul Morie
d1dc259ef2
ConfigMap volume source
2016-02-14 16:19:17 -05:00
k8s-merge-robot
43fb544a4a
Merge pull request #21001 from ericchiang/oidc_groups
...
Auto commit by PR queue bot
2016-02-14 05:24:43 -08:00
k8s-merge-robot
b0d8f361ab
Merge pull request #20969 from justinsb/configurable_status_upload
...
Auto commit by PR queue bot
2016-02-14 02:47:39 -08:00
k8s-merge-robot
c30bffacc8
Merge pull request #20967 from luxas/local_build_time
...
Auto commit by PR queue bot
2016-02-13 20:29:38 -08:00
k8s-merge-robot
53d9f9ecab
Merge pull request #20814 from deads2k/restmapper-errors
...
Auto commit by PR queue bot
2016-02-13 15:53:22 -08:00
k8s-merge-robot
060f8f4db7
Merge pull request #20802 from aveshagarwal/master-allnamespaces-issue
...
Auto commit by PR queue bot
2016-02-13 15:25:15 -08:00
k8s-merge-robot
f43b849e54
Merge pull request #20770 from liggitt/ugorji-var-reset
...
Auto commit by PR queue bot
2016-02-13 14:59:38 -08:00
k8s-merge-robot
3375fa6fb6
Merge pull request #21102 from ixdy/echo-time
...
Auto commit by PR queue bot
2016-02-13 08:33:52 -08:00
Jordan Liggitt
6b97e2ec51
Fix verify-codecgen.sh
2016-02-13 09:15:39 -05:00
k8s-merge-robot
19c8d73cac
Merge pull request #18077 from soltysh/stop_deployment
...
Auto commit by PR queue bot
2016-02-12 22:47:04 -08:00
Isaac Hollander McCreery
cc9b092e94
Remove parallel-flaky suite
2016-02-12 17:24:07 -08:00
Isaac Hollander McCreery
ec5b9abba8
Add instructions and tooling for munging test infra for a new release series
2016-02-12 17:24:06 -08:00
Isaac Hollander McCreery
3cec929f1c
Remove old GCE upgrade jobs; no longer useful
2016-02-12 17:24:06 -08:00
Isaac Hollander McCreery
c09da9e03c
Remove [Skipped] as a label for tests.
2016-02-12 17:24:06 -08:00
k8s-merge-robot
8a4a73e372
Merge pull request #20517 from janetkuo/enable-deployments-default
...
Auto commit by PR queue bot
2016-02-12 14:26:12 -08:00
Mike Danese
695211e2ee
Merge pull request #21105 from caesarxuchao/watchCacheForIntegration
...
turn on and off watch cache in integration test
2016-02-12 14:02:47 -08:00
Clayton Coleman
d23c531869
Can't replace a generic resource that is cluster scoped
...
It should be allowed to invoke kubectl replace with a JSON file that has
no resource version set. Namespaced resources were working correctly,
but cluster resources were silently failing to lookup the current state
of the object to get the resource version because we weren't using
NamespaceIfScoped(). Added a failing test.
2016-02-12 16:20:37 -05:00
Janet Kuo
2874f30c05
Enable Deployments by default
2016-02-12 12:29:14 -08:00
Jeff Grafton
03ec0e12d2
Clean up upload-to-gcs.sh to remove unnecessary cruft
2016-02-12 11:58:37 -08:00
Daniel Wang
91b2f59bc6
Jenkins: Add configs for gke+trusty e2e test jobs
...
Additionally, merge kubernetes-e2e-trusty.yaml into kubernetes-e2e.yaml and
refactor the latter to serve all e2e jobs.
2016-02-12 11:30:55 -08:00
Mike Danese
2172e0dea0
Merge pull request #21108 from mml/slow-flake
...
Include some debug output when the API server never appears.
2016-02-12 11:27:12 -08:00
Eric Chiang
92d37d5cc5
plugin/pkg/auth/authenticator/token/oidc: get groups from custom claim
2016-02-12 09:58:18 -08:00
deads2k
9f003f7db3
allow patch to handle multiple types
2016-02-12 11:12:09 -05:00
Michael Burman
528be97b41
Hawkular support for the Initial Resources
2016-02-12 17:36:11 +02:00
Maciej Szulik
b929424135
Scale deployments fall-back to regular deployment update
2016-02-12 10:17:35 +01:00
Matt Liggett
7a2e649745
Include some debug output when the API server never appears.
...
Helps with #20916
2016-02-11 16:33:35 -08:00
k8s-merge-robot
662a4291f3
Merge pull request #19488 from derekwaynecarr/fix_19129
...
Auto commit by PR queue bot
2016-02-11 15:08:55 -08:00
Avesh Agarwal
c0e1623be2
Fix kubectl get error when both all-namespaces and namespace are provided.
...
As per kubectl get help, --namespace should be ignored with all-namespaces,
but kubectl get pods --all-namespaces --namespace=<name-space> gives
following error:
"the namespace from the provided object "default" does not match the
namespace "". You must pass '--namespace=default' to perform this
operation."
This commit fixes this error issue.
2016-02-11 17:06:04 -05:00
Chao Xu
18c1eb2d56
turn on and off watch cache in integration test
2016-02-11 13:51:03 -08:00
Jeff Grafton
5aead14c62
Echo start and finish times to build log
2016-02-11 13:11:45 -08:00
k8s-merge-robot
f6ae6b47ae
Merge pull request #20687 from vishh/systemd-support
...
Auto commit by PR queue bot
2016-02-11 13:06:29 -08:00
Maisem Ali
1c6a223eaa
Merge pull request #20865 from maisem/master
...
Adding a readiness probe to kubectl e2e tests.
2016-02-11 12:55:15 -08:00
derekwaynecarr
06f26189f0
Update kubectl create subcommand to use printer flags
2016-02-11 15:37:47 -05:00
Mike Danese
1478cf345a
Merge pull request #21090 from ihmccreery/feature-reboot
...
Quarantine reboot tests (again)
2016-02-11 11:28:37 -08:00
Isaac Hollander McCreery
6ad95be523
Quarantine reboot tests (again)
2016-02-11 11:18:15 -08:00
Maciej Szulik
0ea31b56ed
Adding reaper for deployments
2016-02-11 19:02:32 +01:00
Minhan Xia
e4a03cddca
Add elasticsearch suite
2016-02-11 09:56:12 -08:00
deads2k
deb4d3ccca
type RESTMapper errors to better handle MultiRESTMapper errors
2016-02-11 11:45:05 -05:00
Wojciech Tyczynski
fe4e65fb76
Disable load test on kubemark 100
2016-02-11 17:10:26 +01:00
k8s-merge-robot
611a3b9d55
Merge pull request #21064 from wojtek-t/enable_load_in_kubemarks
...
Auto commit by PR queue bot
2016-02-11 06:24:34 -08:00
k8s-merge-robot
09314f97f6
Merge pull request #20944 from janetkuo/move-deployment-example
...
Auto commit by PR queue bot
2016-02-11 02:37:31 -08:00
k8s-merge-robot
3208665edf
Merge pull request #20928 from madhusudancs/replicaset-expose
...
Auto commit by PR queue bot
2016-02-11 02:02:20 -08:00
Wojciech Tyczynski
0662a2d00a
Enable load test in 100- and 1000-node Kubemarks
2016-02-11 10:55:11 +01:00
k8s-merge-robot
06d43a4cdd
Merge pull request #20881 from caesarxuchao/refactor-update-api-reference-docs-script
...
Auto commit by PR queue bot
2016-02-11 00:26:35 -08:00
Lucas Käldström
b67445b064
Share the host's timezone with the build container
2016-02-11 07:44:05 +02:00
k8s-merge-robot
2d85c6e4b0
Merge pull request #20864 from caesarxuchao/generate-versioned-clients
...
Auto commit by PR queue bot
2016-02-10 18:29:35 -08:00
Vishnu kannan
575812787d
Replace --resource-container
and --system-container
with
...
`--kubelet-cgroups` and `--system-cgroups` respectively.
Updated `--runtime-container` to `--runtime-cgroups`.
Cleaned up most of the kubelet code that consumes these flags to match
the flag name changes.
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-02-10 17:33:28 -08:00
Dawn Chen
9a23c52cb8
Export HAIRPIN_MODE environment variable for soaking test.
2016-02-10 17:24:45 -08:00
Chao Xu
1c84552757
generate the versioned clientset
2016-02-10 17:22:46 -08:00
Chao Xu
6aa23e4e49
refacotr update-api-reference-docs.sh
2016-02-10 16:46:59 -08:00
Madhusudan.C.S
293793cf0d
Allow replica set to be exposed as a service and add kubectl command tests for replica sets.
2016-02-10 16:20:08 -08:00
Vishnu kannan
38efc837b9
Make container runtime's cgroup configurable.
...
Use the real cgroups for metrics generation.
Signed-off-by: Vishnu kannan <vishnuk@google.com>
2016-02-10 16:02:34 -08:00
Mike Danese
b3172a4ccf
kubelet: add a pidfile
2016-02-10 11:38:50 -08:00
Janet Kuo
ddd983286b
Move deployment example to docs/user-guide
2016-02-10 10:46:12 -08:00
k8s-merge-robot
86a7a9534a
Merge pull request #20924 from kubernetes/revert-20651-quarantine-reboot
...
Auto commit by PR queue bot
2016-02-10 09:36:09 -08:00
Wojciech Tyczynski
ac401a27f7
Merge pull request #20972 from wojtek-t/fix_kubemark_timeouts
...
Update timeouts for scalability-related suites
2016-02-10 15:48:30 +01:00
Wojciech Tyczynski
8e647e57bc
Update timeouts for scalability-related suites
2016-02-10 15:15:44 +01:00
Justin Santa Barbara
ba19c4e2f0
e2e runner: make build start/finished upload configurable
...
Allow the target GCS bucket to be changed, and allow upload to GCS to be
suppressed altogether, with the same env vars that upload-to-gcs.sh
uses.
2016-02-10 08:24:48 -05:00
Marcin
b7d72ef36d
Startup scripts for custom metrics
2016-02-10 12:32:04 +01:00
k8s-merge-robot
808209de52
Merge pull request #20839 from spxtr/clone-soak
...
Auto commit by PR queue bot
2016-02-10 02:51:03 -08:00
k8s-merge-robot
71b6b81102
Merge pull request #20076 from derekwaynecarr/namespace_controller_workers
...
Auto commit by PR queue bot
2016-02-10 00:55:57 -08:00
Wojciech Tyczynski
e9e3f7b938
Merge pull request #20903 from wojtek-t/delete_namespace_in_kubemark
...
Delete namespace in Kubemarks
2016-02-10 08:32:54 +01:00
k8s-merge-robot
41a98b43e4
Merge pull request #19840 from madhusudancs/replicaset-deployment
...
Auto commit by PR queue bot
2016-02-09 18:57:42 -08:00
Joe Finney
7075d3c378
Fix indentation for ingress jobs in e2e.sh.
2016-02-09 17:54:16 -08:00
Prashanth B
f0620a5efd
Merge pull request #20883 from bprashanth/kubelet_flag
...
Kubelet flag for disabling hairpin mode
2016-02-09 17:31:30 -08:00
Joe Finney
184779b5fd
Merge pull request #19903 from spxtr/describe-build
...
Upload useful Jenkins build information to GCS.
2016-02-09 17:30:41 -08:00
Joe Finney
22ebb97741
Merge pull request #20620 from wonderfly/create_trusty_configs
...
Move Trusty e2e testing jobs to job-configs
2016-02-09 17:22:12 -08:00
Madhusudan.C.S
e7a9f30936
Address review comments.
2016-02-09 15:50:01 -08:00
Maisem Ali
4dfdb154fb
Adding testing-manifests to the test tar ball
2016-02-09 14:09:26 -08:00
derekwaynecarr
106693d9b3
Refactor namespace controller to use workers, do more delete collection calls
2016-02-09 16:39:13 -05:00
k8s-merge-robot
f36b604bec
Merge pull request #19769 from luxas/server_cross_compilation
...
Auto commit by PR queue bot
2016-02-09 13:09:13 -08:00
Isaac Hollander McCreery
2ad245b8a8
Revert "[Discussion] Quarantine reboot tests as [Feature:Reboot] due to instability?"
2016-02-09 12:25:03 -08:00
Prashanth Balasubramanian
c3a3a2bacd
Pipe hairpin-mode flag through kubelet, enable on soak.
2016-02-09 12:12:19 -08:00
Marcin
90cc3d050f
Googleinfluxdb for gce-autoscaling
2016-02-09 20:52:26 +01:00
Wojciech Tyczynski
4abe6a9891
Delete namespace in Kubemarks
2016-02-09 16:34:49 +01:00
Wojciech Tyczynski
b5a9e5d144
Fix failing kubemark
2016-02-09 16:24:04 +01:00
Wojciech Tyczynski
a6a0392b03
Merge pull request #20891 from wojtek-t/fix_load_test
...
Fix load test & run it on 100- and 500-node Kubemarks
2016-02-09 15:33:12 +01:00
k8s-merge-robot
68a165cda9
Merge pull request #20681 from justinsb/aws_sync_kubeup_gce_step3
...
Auto commit by PR queue bot
2016-02-09 02:08:48 -08:00
Wojciech Tyczynski
470a9ad3c5
Run load tests in 100-node and 500-node Kubemarks
2016-02-09 08:48:48 +01:00
Madhusudan.C.S
ed7ad6dcf3
Make deployments work.
2016-02-08 21:27:49 -08:00
Daniel Wang
a599307589
Move Trusty e2e testing jobs to job-configs
2016-02-08 15:41:24 -08:00
Joe Finney
6ee9f13ff5
Upload useful Jenkins build information to GCS.
2016-02-08 15:04:26 -08:00
Joe Finney
94b08128da
Clone the GCE soak job.
2016-02-08 11:24:45 -08:00
k8s-merge-robot
b32078d89b
Merge pull request #20496 from matthewdupre/masquerade-config
...
Auto commit by PR queue bot
2016-02-08 10:49:20 -08:00
k8s-merge-robot
3bbf55d38b
Merge pull request #20596 from ihmccreery/skip-lists2
...
Auto commit by PR queue bot
2016-02-08 10:02:09 -08:00
k8s-merge-robot
807e5f08d0
Merge pull request #20796 from smarterclayton/parallel_test
...
Auto commit by PR queue bot
2016-02-08 08:22:09 -08:00
Matt Dupre
9925cddc11
Change iptables fwmark to use single configurable bit instead of whole mark space
2016-02-08 11:12:09 +00:00
Clayton Coleman
e8cbb762e2
e2e SecurityContext tests wrong volume dir
...
The volume directory is not guaranteed to be /var/lib/kubelet
for a conforming implementation of Kubernetes. Add --volume-dir
and an internal shim
2016-02-07 16:45:25 -05:00
Lucas Käldström
c969c041e2
Add support for building arm, arm64 and ppc64le server and client targets
2016-02-07 20:35:14 +02:00
Justin Santa Barbara
899e61ef3c
Update verify-flags exceptions
2016-02-07 11:11:38 -05:00
Tim Hockin
2052e334b6
mkdir in build when the output dir is needed
2016-02-06 21:14:20 -08:00
k8s-merge-robot
19c80e126a
Merge pull request #20651 from ihmccreery/quarantine-reboot
...
Auto commit by PR queue bot
2016-02-06 18:29:09 -08:00
k8s-merge-robot
c2ac1bcd30
Merge pull request #20356 from mml/tuso-faster
...
Auto commit by PR queue bot
2016-02-06 01:48:07 -08:00
k8s-merge-robot
b45a94bc78
Merge pull request #20765 from janetkuo/remove-podtemplate-key
...
Auto commit by PR queue bot
2016-02-06 00:44:47 -08:00
k8s-merge-robot
939927fe90
Merge pull request #20277 from deads2k/pin-generator
...
Auto commit by PR queue bot
2016-02-05 23:41:30 -08:00
k8s-merge-robot
6c5540baae
Merge pull request #20232 from mml/daemonset-warn
...
Auto commit by PR queue bot
2016-02-05 23:12:51 -08:00
Madhusudan.C.S
4f9b8b2bfc
Link all the ReplicaSet controller boilerplate together.
...
1. Enable replica set in controller manager.
2. Enable replica set etcd storage in master package.
3. Add replica set support to kubectl commands.
2016-02-05 21:05:10 -08:00
k8s-merge-robot
fcf9c4a1e4
Merge pull request #19741 from pwittrock/syncfsmetrics
...
Auto commit by PR queue bot
2016-02-05 17:54:22 -08:00
Janet Kuo
bb0c5fea0e
Fix test failure
2016-02-05 17:26:07 -08:00
Mike Danese
b1743a6887
this is a manual reversion of #20702
...
I can't revert with github which says "Sorry, this pull request couldn’t be
reverted automatically. It may have already been reverted, or the content may
have changed since it was merged."
Reverts commit: 0c191e787b
2016-02-05 16:34:02 -08:00
Phillip Wittrock
3de94cd23c
Supply volume fs metrics to server/stats/handler.go
...
* Metrics will not be expose until they are hooked up to a handler
* Metrics are not cached and expose a dos vector, this must be fixed before release or the stats should not be exposed through an api endpoint
2016-02-05 16:00:24 -08:00
k8s-merge-robot
5066e507ae
Merge pull request #20194 from derekwaynecarr/fix_hack_test_cmd
...
Auto commit by PR queue bot
2016-02-05 14:39:00 -08:00
Daniel Smith
9441721fee
Merge pull request #19689 from AdoHe/kubectl_label_display
...
kubectl add show-labels flag to make it more readable
2016-02-05 14:08:37 -08:00
Daniel Smith
b278c6acd9
Merge pull request #20565 from kubernetes/revert-20000-disable-flaky
...
Revert "Disable flaky test."
2016-02-05 14:01:07 -08:00
k8s-merge-robot
14d74a1c01
Merge pull request #19365 from jsafrane/devel/retry-delete
...
Auto commit by PR queue bot
2016-02-05 09:55:21 -08:00
k8s-merge-robot
06060d4d77
Merge pull request #20716 from gmarek/master
...
Auto commit by PR queue bot
2016-02-05 08:53:32 -08:00
k8s-merge-robot
266d7aa5b3
Merge pull request #19783 from magicwang-cn/master
...
Auto commit by PR queue bot
2016-02-05 08:53:30 -08:00
Jan Safranek
76b6449715
Retry recycle or delete operation on failure.
...
Recycle controller tries to recycle or delete a PV several times.
It stores count of failed attempts and timestamp of the last attempt in
annotations of the PV.
By default, the controller tries to recycle/delete a PV 3 times in
10 minutes interval. These values are configurable by
kube-controller-manager --pv-recycler-maximum-retry=X --pvclaimbinder-sync-period=Y
arguments.
2016-02-05 17:02:13 +01:00
gmarek
432d04149b
Run enormous-startup suite in us-east1-b zone
2016-02-05 16:52:15 +01:00
k8s-merge-robot
ae15a4437b
Merge pull request #19944 from mwielgus/simple-cm
...
Auto commit by PR queue bot
2016-02-05 06:41:28 -08:00
gmarek
0c191e787b
Split controller flags between controllers
2016-02-05 12:17:51 +01:00
Marcin Wielgus
bf0c881263
Set Docker custom metric label for cAdvisor if custom metric volume is mounted
2016-02-05 12:00:02 +01:00
magicwang-cn
d2cf858560
make watch cache sizes configuratable of kube-apiserver
2016-02-05 15:47:27 +08:00
k8s-merge-robot
9bbc22cf3a
Merge pull request #20526 from spxtr/aws-jobs
...
Auto commit by PR queue bot
2016-02-04 10:15:38 -08:00
Isaac Hollander McCreery
3f893e53eb
Quarantine reboot tests as [Feature:Reboot] due to instability
2016-02-04 09:15:19 -08:00
AdoHe
714d12cf72
kubectl add show-labels flag to make it more readable
2016-02-04 02:08:44 -05:00
k8s-merge-robot
dbd7b83d93
Merge pull request #20545 from pmorie/boilerplate
...
Auto commit by PR queue bot
2016-02-03 19:46:26 -08:00
k8s-merge-robot
bb7ad7cd09
Merge pull request #18795 from dcbw/cbr0-network-plugin
...
Auto commit by PR queue bot
2016-02-03 19:46:25 -08:00
k8s-merge-robot
d4da1ee3ce
Merge pull request #19835 from janetkuo/kubectl-rollout
...
Auto commit by PR queue bot
2016-02-03 17:39:04 -08:00
Paul Morie
b672785d72
Add boilerplate checks for Dockerfiles
2016-02-03 18:35:26 -05:00
Paul Morie
05bd107301
Add boilerplate checks for Makefiles
2016-02-03 18:35:26 -05:00
Paul Morie
6a5157b496
Allow boilerplate checks on whole filenames
2016-02-03 18:35:26 -05:00
Isaac Hollander McCreery
1e8a7716e8
Fix typos in e2e.sh
2016-02-03 14:41:37 -08:00
Isaac Hollander McCreery
da8c6df2e0
Remove skip list ENVs, instead rely on labels
2016-02-03 14:39:19 -08:00
k8s-merge-robot
0dc25f545f
Merge pull request #20558 from ihmccreery/move-e2e
...
Auto commit by PR queue bot
2016-02-03 11:46:17 -08:00
Daniel Smith
24b8125bb1
Revert "Disable flaky test."
2016-02-03 10:15:38 -08:00
Isaac Hollander McCreery
3b89db78bf
Organize jobs in e2e.sh
2016-02-03 09:06:08 -08:00
Dan Williams
fabb65c13f
Add a network plugin that duplicates "configureCBR0" functionality
2016-02-03 10:08:08 -06:00
Piotr Szczesniak
d7dd663d2a
Merge pull request #20412 from gmarek/enable
...
Add a flag to allow non-fatal errors in validate-cluster
2016-02-03 09:33:17 +01:00
Piotr Szczesniak
0e396b2084
Merge pull request #20407 from gmarek/1000-kube-up
...
Allow some NotReady nodes in 1000 node clusters
2016-02-03 09:32:59 +01:00
Jeff Lowdermilk
136c1f9d94
Merge pull request #20373 from bprashanth/l7_flaky
...
Mark L7 tests as Feature:Ingress
2016-02-02 18:24:15 -08:00
Joe Finney
d6c422547e
Add AWS Jenkins jobs to source control.
2016-02-02 16:05:41 -08:00
Janet Kuo
442c75045a
Add kubectl rollout undo
2016-02-02 14:20:01 -08:00
k8s-merge-robot
8bab0022ad
Merge pull request #20000 from erictune/disable-flaky
...
Auto commit by PR queue bot
2016-02-02 11:29:34 -08:00
Matt Liggett
f2d5375bc0
Stop deleting DaemonSet pods during drain.
...
We do this because they will be recreated immediately by the
DaemonSet Controller. In addition, we also require a specific flag
(--ignore-daemonsets) when there are DaemonSet pods on the node.
2016-02-02 11:13:29 -08:00
Jeff Lowdermilk
449e708aa5
Merge pull request #20359 from ihmccreery/timeouts
...
Knock down the timeouts for gce, gce-slow, gke, and gke-slow
2016-02-02 09:20:16 -08:00
k8s-merge-robot
74c62aecc5
Merge pull request #20186 from lavalamp/import-boss
...
Auto commit by PR queue bot
2016-02-02 06:21:50 -08:00
k8s-merge-robot
c5260c8c71
Merge pull request #20145 from mqliang/quorum-read
...
Auto commit by PR queue bot
2016-02-02 05:50:41 -08:00
k8s-merge-robot
ac24a68801
Merge pull request #20094 from mesosphere/jdef_mesos_026_godeps
...
Auto commit by PR queue bot
2016-02-02 03:19:25 -08:00
Isaac Hollander McCreery
a61361b3df
Knock down the timeouts for gce, gce-slow, gke, and gke-slow now that they run in parallel
2016-02-01 15:33:06 -08:00
Prashanth Balasubramanian
4f50292347
Create new ingress suite.
2016-02-01 12:12:29 -08:00
gmarek
5ed9b3fab7
Change the tag for performance tests.
2016-02-01 17:41:48 +01:00
gmarek
efacc0435e
Add a flag to allow non-fatal errors in validate-cluster
2016-02-01 14:26:31 +01:00
gmarek
6aaabc6f46
Allow some NotReady nodes in 1000 node clusters
2016-02-01 12:40:40 +01:00
Marcin Wielgus
a14f791d8c
Revert "Merge pull request #20329 from kubernetes/revert-20323-bump-influxdb"
...
This reverts commit b4188ec459
, reversing
changes made to 28951bd66a
.
2016-02-01 12:12:37 +01:00
James DeFelice
e01b5560ca
swappable storage backends for frameworkID
2016-02-01 06:03:25 +00:00
Alex Robinson
1903c4eb51
Merge pull request #19605 from aveshagarwal/master-sort-by-panic
...
Fix panic when sort-by is used with kubectl get.
2016-01-30 10:48:56 -08:00
k8s-merge-robot
e4c5f892c6
Merge pull request #20234 from mml/update-objects
...
Auto commit by PR queue bot
2016-01-30 07:32:25 -08:00
mqliang
b0e06c14e5
add a knob to enable quorum read
2016-01-30 20:32:12 +08:00
k8s-merge-robot
7912682595
Merge pull request #20226 from smarterclayton/fix_extract_list
...
Auto commit by PR queue bot
2016-01-29 17:15:30 -08:00
Matt Liggett
1cd140fe49
When running test-update-storage-objects, only build kube-apiserver.
...
Prior to this we built everything. So slow!
2016-01-29 15:56:51 -08:00
Isaac Hollander McCreery
36a55566bd
Also remove -gce-parallel
2016-01-29 14:17:12 -08:00
Isaac Hollander McCreery
86c67686a7
Remove -reboot test suites; now covered in -serial suites
2016-01-29 14:06:34 -08:00
Fabio Yeon
1dc6e88a0d
Merge pull request #20274 from ihmccreery/autoscaling-feature
...
Move HPA e2es into the default slow suite, and add [Feature:ClusterSizeAutoscaling] and [Feature:InitialResources]
2016-01-29 09:39:33 -08:00
Isaac Hollander McCreery
aa56b87b51
Skip [Skipped] tests
2016-01-29 09:35:59 -08:00
Isaac Hollander McCreery
5ac20da16c
Move HPA e2es into the default slow suite, and add [Feature:ClusterSizeAutoscaling] and [Feature:InitialResources]
2016-01-29 09:20:47 -08:00
Fabio Yeon
5d8174ee95
Merge pull request #20276 from ihmccreery/make-jobs-parallel
...
[WIP] Run kubernetes-e2e-gce and kubernetes-e2e-gke in parallel
2016-01-29 08:54:42 -08:00
Filip Grzadkowski
13480c171d
Revert "Yet another try to migrate to the new Heapster"
2016-01-29 15:03:49 +01:00
Piotr Szczesniak
0c5cc1bde1
Revert "Merge pull request #20215 from kubernetes/revert-20156-bump-influxdb"
...
This reverts commit 06996d5af9
, reversing
changes made to b2f6e7d08f
.
2016-01-29 09:19:03 +01:00
Fabio Yeon
03a26330a8
Merge pull request #20278 from ihmccreery/gke-slow
...
Make slow tests run in parallel, add gke-slow suite
2016-01-28 20:42:44 -08:00
Fabio Yeon
c3e966a4ea
Merge pull request #20297 from ihmccreery/skip-feature-serial
...
Reclassify Restart tests as [Disruptive] and skip [Feature:.+] tests in -serial jobs
2016-01-28 16:47:05 -08:00
Daniel Smith
22b43d8f82
Determinisitically get kubectl proxy port
2016-01-28 16:07:08 -08:00
Isaac Hollander McCreery
843b913b07
Reclassify Restart tests as [Disruptive] and skip [Feature:.+] tests in -serial jobs
2016-01-28 14:44:22 -08:00
Fabio Yeon
e68ea9e8d4
Merge pull request #19936 from ixdy/jenkins-job-configs
...
Restrict build jobs to running on build node instead of master
2016-01-28 14:36:05 -08:00
Fabio Yeon
454ebc4e30
Merge pull request #19547 from ihmccreery/feature-example
...
Reclassify [Example] and [Feature:Example]
2016-01-28 14:03:48 -08:00
Fabio Yeon
70ff0bda57
Merge pull request #20201 from caesarxuchao/resilient-wget
...
make wget in gen-swagger-doc more resilient
2016-01-28 13:32:24 -08:00
k8s-merge-robot
430acc733b
Merge pull request #19950 from spxtr/examples
...
Auto commit by PR queue bot
2016-01-28 12:49:24 -08:00
Isaac Hollander McCreery
804c986f87
Make slow tests run in parallel, add gke-slow suite
2016-01-28 11:33:45 -08:00
Isaac Hollander McCreery
1ce8e2345e
Run kubernetes-e2e-gce and kubernetes-e2e-gce in parallel
2016-01-28 11:32:36 -08:00
Matt Liggett
352c439a96
Guard both kill and wait with APISERVER_PID.
2016-01-28 11:05:02 -08:00
deads2k
ec2008d948
pin the run command to produce a job
2016-01-28 12:55:36 -05:00
Fabio Yeon
146a9e6075
Merge pull request #19667 from ihmccreery/fix-provider-skip-lists
...
Remove provider skip lists
2016-01-28 09:47:56 -08:00
k8s-merge-robot
d3fdc61ff7
Merge pull request #19696 from mesosphere/jdef_mesos_pod_discovery
...
Auto commit by PR queue bot
2016-01-28 01:15:40 -08:00
Daniel Smith
46d12b185e
Add 'import-boss': enforce go import restrictions.
2016-01-27 16:18:46 -08:00
Isaac Hollander McCreery
d002a68f3c
Label feature tests for Feature:DaemonSet, Feature:Deployment, Feature:ExperimentalResourceUsageTracking, and remove GKE and AWS skip lists
2016-01-27 16:09:12 -08:00
Isaac Hollander McCreery
599f646a48
Collapse GKE_DEFAULT_SKIP_TESTS into GKE_REQUIRED_SKIP_TESTS
2016-01-27 16:09:12 -08:00
Clayton Coleman
71a13f7f4b
ExtractList should handle v1.RawExtension correctly
...
Also fixes CustomColumnPrinter to pass decoder in, and ensures a test
case tests the combined path.
2016-01-27 15:30:21 -05:00
James DeFelice
06df194943
updated license exceptions for testify and yaml.v2
2016-01-27 17:25:00 +00:00
Filip Grzadkowski
0dedf869c7
Revert "Bumped Heapster version to v0.20.0-alpha and Influxdb to 0.9.2.1"
2016-01-27 17:22:36 +01:00
k8s-merge-robot
729a76f749
Merge pull request #19512 from mml/update-objects
...
Auto commit by PR queue bot
2016-01-27 07:40:47 -08:00
Piotr Szczesniak
e96993f2ce
Bumped Heapster version to v0.20.0-alpha and Influxdb to 0.9.2.1
2016-01-27 11:09:18 +01:00
k8s-merge-robot
603931f237
Merge pull request #20038 from caesarxuchao/remove-cmd-unused
...
Auto commit by PR queue bot
2016-01-26 22:18:25 -08:00
Chao Xu
237f4451b6
make wget in gen-swagger-doc more resilient
2016-01-26 22:09:12 -08:00
derekwaynecarr
c906e9c90a
hack/test-cmd.sh did not run any admission control
2016-01-26 21:28:05 -05:00
k8s-merge-robot
91527c29cf
Merge pull request #17382 from caesarxuchao/rewrite-linkchecker
...
Auto commit by PR queue bot
2016-01-26 17:51:44 -08:00
Chao Xu
3ec4cd423e
linkchecker tool now visits the URL to determine if it's valid
2016-01-26 17:01:37 -08:00
Isaac Hollander McCreery
f318ccb5eb
Make upgrades e2es [Feature:Upgrade]
2016-01-26 15:38:44 -08:00
Brendan Burns
3328cfe1c5
Merge pull request #20163 from spxtr/enable-jobs
...
Reenable Jenkins e2e jobs.
2016-01-26 14:44:20 -08:00
k8s-merge-robot
3254df3a7c
Merge pull request #19426 from smarterclayton/rewrite_tags
...
Auto commit by PR queue bot
2016-01-26 13:11:58 -08:00
Jeff Grafton
3cec673a4b
Use PR# rather than git sha1 for PR log path
2016-01-26 11:11:54 -08:00
Avesh Agarwal
bec2d678b9
Fix panic when sort-by is used with kubectl get.
2016-01-26 13:58:24 -05:00
Joe Finney
b8fd6a35fb
Reenable Jenkins e2e jobs.
2016-01-26 09:48:04 -08:00
Isaac Hollander McCreery
056b5e14c2
Revert "Add AWS jobs to source control."
2016-01-26 09:10:06 -08:00
Clayton Coleman
14a3aaf479
protobuf: During generation, copy protobuf tags back
...
The protobuf tags contain the assigned tag id, which then ensures
subsequent generation is consistently tagging (tags don't change across
generations unless someone deletes the protobuf tag).
In addition, generate final proto IDL that is free of gogoproto
extensions for ease of generation into other languages.
Add a flag --keep-gogoproto which preserves the gogoproto extensions in
the final IDL.
2016-01-26 11:41:21 -05:00
k8s-merge-robot
1ed61f5e63
Merge pull request #19926 from spxtr/jobs-jobs-jobs
...
Auto commit by PR queue bot
2016-01-26 06:04:20 -08:00
k8s-merge-robot
8c821700f3
Merge pull request #19389 from justinsb/internal_cidr
...
Auto commit by PR queue bot
2016-01-26 03:58:48 -08:00
k8s-merge-robot
3f40fb7d0a
Merge pull request #17923 from yuvipanda/kube2dns-pflag
...
Auto commit by PR queue bot
2016-01-26 02:13:44 -08:00
k8s-merge-robot
9ae960ef7c
Merge pull request #19718 from pmorie/update-all-err
...
Auto commit by PR queue bot
2016-01-25 19:47:59 -08:00
Dawn Chen
02e6f56b65
Merge pull request #19977 from brendandburns/deps
...
Update the docker/spdystream dependency
2016-01-25 16:55:01 -08:00
Dawn Chen
93168c1ede
Merge pull request #20036 from ihmccreery/instance-prefix
...
Use INSTANCE_PREFIX to prefix uploaded binaries in GCE
2016-01-25 16:07:13 -08:00
Brendan Burns
61ff7475a8
Add a stray dependency that was missing due to godep update
2016-01-25 10:05:29 -08:00
James DeFelice
1748f028d5
experimental support for task discovery-info generation
2016-01-25 16:25:03 +00:00
k8s-merge-robot
d3b869ae14
Merge pull request #17922 from smarterclayton/split_codec
...
Auto commit by PR queue bot
2016-01-25 06:30:39 -08:00
Zach Loafman
a71a0f05ef
Merge pull request #19933 from spxtr/fix-verifier
...
Handle multijob runners properly in verify-jenkins-jobs.sh
2016-01-23 07:34:28 -08:00
Justin Santa Barbara
d8460d5920
AWS: Pass non-masquerade-cidr through kube-up
...
Set the environment variable NON_MASQUERADE_CIDR.
Docs in cluster/aws/options.md
2016-01-22 21:01:44 -05:00
Chao Xu
bc2a9736dc
remove duplicated tests
2016-01-22 15:40:42 -08:00
Isaac Hollander McCreery
9477bc08a5
Use INSTANCE_PREFIX to prefix uploaded binaries in GCE, fixes #8705
2016-01-22 15:27:33 -08:00
Eric Tune
7944fa01ec
Disable flaky test.
2016-01-22 09:55:39 -08:00
YuviPanda
1751bcf1e1
Update hack/verify-flags/exceptions.txt
2016-01-22 00:19:01 -08:00
Clayton Coleman
c49cd4edf9
Alter the build to generate for __internal correctly
2016-01-22 01:10:22 -05:00
Paul Morie
9be7883f7e
Make hack/update-all.sh short-circuit unless run with -a
2016-01-22 00:17:14 -05:00
YuviPanda
f0c5051201
Fix verify-flags lists to account for flag changes
2016-01-21 16:59:02 -08:00
Joe Finney
3eef36b8a0
Handle multijob runners properly in verify-jenkins-jobs.sh
2016-01-21 14:28:32 -08:00
Alex Mohr
359c684d57
Merge pull request #19698 from kargakis/expose-deployments
...
kubectl: Support exposing deployments
2016-01-21 14:26:14 -08:00
Joe Finney
9dccefae8f
Add examples E2E job to source control.
2016-01-21 13:46:47 -08:00
Justin Santa Barbara
58191c446c
Allow non-masquerade-cidr to be passed to the kubelet
...
Removing the hard-coding of 10.0.0.0/8
Issue #11204
2016-01-21 15:18:31 -05:00
Alex Mohr
8d021f3d88
Merge pull request #19897 from ixdy/test-golang-1.5.3
...
Update tests from Go 1.5.2 to Go 1.5.3
2016-01-21 12:00:00 -08:00
Jeff Grafton
df53c44abc
Restrict build jobs to running on build node instead of master
2016-01-21 11:29:24 -08:00
k8s-merge-robot
61096f4998
Merge pull request #19517 from spxtr/fix-test-go
...
Auto commit by PR queue bot
2016-01-21 11:25:58 -08:00
Alex Mohr
753b1f3ae6
Merge pull request #19419 from spxtr/gcp-resource
...
Export variables needed by e2e-runner.sh.
2016-01-21 10:38:41 -08:00
Alex Mohr
eaa61a72b0
Merge pull request #17919 from justinsb/multizone_gce
...
Ubernetes Lite support for GCE
2016-01-21 10:22:34 -08:00
Joe Finney
31e33ac58b
Add AWS jobs to source control.
2016-01-21 10:22:04 -08:00
Joe Finney
10c217024d
Merge pull request #19742 from spxtr/more-jobs
...
Add kubemark jobs to source control.
2016-01-21 10:02:13 -08:00
Jeff Grafton
0d84b49f65
Update tests from Go 1.5.2 to Go 1.5.3
2016-01-21 09:43:52 -08:00
Marek Grabowski
3d7c79ca03
Merge pull request #19836 from ixdy/jenkins-test-image-netcat
...
Update kubekins-test image to include netcat
2016-01-21 17:43:32 +01:00
k8s-merge-robot
dda29bedd8
Merge pull request #18722 from deads2k/add-sar
...
Auto commit by PR queue bot
2016-01-21 07:06:05 -08:00
k8s-merge-robot
0c368c090c
Merge pull request #19586 from yifan-gu/ginkgo_parallel
...
Auto commit by PR queue bot
2016-01-21 04:02:08 -08:00
Justin Santa Barbara
43cbfb74fe
Ubernetes Lite GCE: Support multiple zones in GCE cloud provider
...
We adapt the existing code to work across all zones in a region.
We require a feature-flag to enable Ubernetes-Lite
Reasons:
* There are some behavioural changes if users create volumes with
the same name in two zones.
* We don't want to make one API call per zone if we're not running
Ubernetes-Lite.
* Ubernetes-Lite is still experimental.
There isn't a parallel flag implemented for AWS, because at the moment
there would be no behaviour changes from this.
2016-01-20 23:04:53 -05:00
deads2k
14396fc464
add subject access review types
2016-01-20 08:24:15 -05:00
k8s-merge-robot
a5d2c1b0fb
Merge pull request #18706 from eparis/upstream-godep
...
Auto commit by PR queue bot
2016-01-20 04:43:26 -08:00
k8s-merge-robot
2a79ac4a31
Merge pull request #18322 from mesosphere/licenses
...
Auto commit by PR queue bot
2016-01-19 17:17:17 -08:00
Jeff Grafton
ad8ea35d94
Update kubekins-test image to include netcat
2016-01-19 16:24:58 -08:00
Jeff Grafton
62bc09adf3
Only return unprivileged ports in get_random_port and fix nc argument bug
2016-01-19 16:24:43 -08:00
Joe Finney
f47bdc8a5c
Add kubemark tests to source control.
2016-01-19 11:20:59 -08:00
Isaac Hollander McCreery
5daf01bfd1
Fix serial jobs by using right project and using selectors properly
2016-01-19 11:08:03 -08:00
Clayton Coleman
dc83a11758
Merge pull request #19768 from madhusudancs/fix-update-codecgen
...
Do not dirname on the dependency file's path twice while generating types using codecgen.
2016-01-18 11:15:12 -05:00
k8s-merge-robot
bd8d37f6f2
Merge pull request #19522 from apcera/dev_python3
...
Auto commit by PR queue bot
2016-01-17 03:21:07 -08:00
Madhusudan.C.S
1511466b9d
Do not dirname on the dependency file's path twice while generating types using codecgen.
2016-01-17 02:23:26 -08:00
Isaac Hollander McCreery
78ea78e26b
Collapse into one project
2016-01-15 15:16:00 -08:00
Joe Finney
ba8878cb1a
Use special cleanup rules for kubernetes-test-go job.
2016-01-15 14:02:35 -08:00
Isaac Hollander McCreery
e61f6614ca
Add gce-serial and gke-serial jobs to start deflaking serial, disruptive, and restart tests
2016-01-15 11:07:36 -08:00
Michail Kargakis
08d8843a9c
kubectl: Support exposing deployments
2016-01-15 17:02:24 +01:00
k8s-merge-robot
68a6147454
Merge pull request #19543 from ihmccreery/autoscaling-skips
...
Auto commit by PR queue bot
2016-01-15 06:10:59 -08:00
gmarek
3a1463fea8
Functionally revert #19381
2016-01-15 14:36:42 +01:00
gmarek
b7d1cacbff
Run only reboot tests in reboot suite.
2016-01-15 12:26:43 +01:00
Marek Grabowski
61884ab0b5
Revert "Print HR output in e2e tests before figuring out how to make the JSON…"
2016-01-15 11:53:38 +01:00
gmarek
548b3b2fc1
Print HR output in e2e tests before figuring out how to make the JSON output shorter
2016-01-15 09:14:43 +01:00
Yifan Gu
eb9c5ae59e
jenkins: Set '--nodes' when 'GINKGO_PARALLEL' is set.
...
By default, if 'GINKGO_PARALLEL' is true, then '--nodes=$GINKGO_PARALLEL_NODES'
will be passed. The default 'GINKGO_PARALLEL_NODES' is 30.
2016-01-14 16:23:44 -08:00
Isaac Hollander McCreery
f6fe6949d5
Merge pull request #19505 from ihmccreery/label-documentation
...
Add documentation for labels
2016-01-14 13:11:31 -08:00
Mike Danese
5b270551a9
Merge pull request #19378 from ihmccreery/remove-update-jobs
...
Remove old gce-upgrade jobs
2016-01-14 11:51:26 -08:00
Mike Danese
b7438274dc
Merge pull request #19659 from ihmccreery/timeout-reboot
...
Up timeout of gce-reboot Jenkins job
2016-01-14 09:57:49 -08:00
Isaac Hollander McCreery
2d09e07ae6
Add documentation for test labels
2016-01-14 09:54:23 -08:00
Isaac Hollander McCreery
859ff3a709
Up timeout of gce-reboot Jenkins job
2016-01-14 09:49:41 -08:00
Karl Isenberg
6125f539b6
Add hack/update-godep-licenses.sh to generate Godeps/LICENSES.md
...
- Add Godeps/LICENSES.md
- Add verify-godep-licenses to verify that Godeps/LICENSES.md is up to date
- Trigger verify-godep-licenses in the pre-commit hook only if the Godeps dir has changed
- Exclude verify-godep-licenses in verify-all
- Add verify-godep-licenses to make verify (used by travis)
- Add verify-godep-licenses to shippable
- Update dev docs to mention update-godep-licenses
2016-01-14 09:05:25 -08:00
gmarek
7bc697a888
Print scalability data in JSON format
2016-01-14 14:12:38 +01:00
k8s-merge-robot
ab93bbb135
Merge pull request #19381 from ihmccreery/fix-reboot-suites
...
Auto commit by PR queue bot
2016-01-14 04:44:35 -08:00
k8s-merge-robot
eaeb37c7bd
Merge pull request #19377 from spxtr/verify-jobs
...
Auto commit by PR queue bot
2016-01-14 02:21:07 -08:00
Joe Finney
80c6e678d8
Update verify-jenkins-jobs, check in job config.
2016-01-13 14:07:37 -08:00
k8s-merge-robot
c059dfdb9b
Merge pull request #18712 from pmorie/config-kubectl
...
Auto commit by PR queue bot
2016-01-13 13:51:29 -08:00
k8s-merge-robot
25c31b6cc8
Merge pull request #19588 from mikedanese/boiler
...
Auto commit by PR queue bot
2016-01-13 09:15:22 -08:00
k8s-merge-robot
cf7d2af14a
Merge pull request #19086 from mikedanese/fix-build
...
Auto commit by PR queue bot
2016-01-13 02:12:44 -08:00
k8s-merge-robot
c475b4ee35
Merge pull request #18611 from timstclair/allocatable-impl2
...
Auto commit by PR queue bot
2016-01-12 22:48:12 -08:00
Mike Danese
a6589f7d38
hack: ignore cluster/env.sh in boilerplate check
...
This is used for user configuration overrides in cluster/. We should not
enforce the boilerplate headers in this file.
Signed-off-by: Mike Danese <mikedanese@google.com>
2016-01-12 22:04:33 -08:00
Mike Danese
f71657d9a6
retrofit the scheduler with the leader election client.
...
Signed-off-by: Mike Danese <mikedanese@google.com>
2016-01-12 21:37:03 -08:00
Tim St. Clair
e2ffd007f7
Implement node Allocatable
...
Add `kube-reserved` and `system-reserved` flags for configuration
reserved resources for usage outside of kubernetes pods. Allocatable is
provided by the Kubelet according to the formula:
```
Allocatable = Capacity - KubeReserved - SystemReserved
```
Also provides a method for estimating a reasonable default for
`KubeReserved`, but the current implementation probably is low and needs
more tuning.
2016-01-12 17:00:43 -08:00
Isaac Hollander McCreery
8f401fb0d5
Merge pull request #19372 from ihmccreery/upgrade-jobs
...
Move upgrade jobs to version control
2016-01-12 16:03:01 -08:00
Mike Danese
bf763bba95
Merge pull request #19498 from pwittrock/nodelabels
...
Node labels: Remove node-labels-file command line option. Change --n…
2016-01-12 15:12:57 -08:00
Phillip Wittrock
f1c8384ff4
Node labels: Remove node-labels-file command line option. Change --node-label format from key=value to key:value to be consitent with how the header key:value is specified on command line.
2016-01-12 12:57:12 -08:00
Chao Xu
64083a0576
Generate the clientset
2016-01-12 11:30:04 -08:00
Josh Ellithorpe
76e8a8b08d
Fix issues with Python3 and bring up a dev cluster
2016-01-12 11:08:42 -08:00
Daniel Smith
4e72ded59d
Merge pull request #19371 from brendandburns/aws2
...
Switch to m3.medium for e2e testing
2016-01-12 10:45:22 -08:00
Daniel Smith
44681a9554
Merge pull request #19370 from spxtr/suppress-gcloud-updates
...
Skip gcloud update checks for Jenkins jobs.
2016-01-12 10:44:51 -08:00
Isaac Hollander McCreery
b202b2eb24
Reclassify [Example] and [Feature:Example]
2016-01-12 10:34:12 -08:00
Isaac Hollander McCreery
cfdae7b482
Make [Autoscaling] [Feature:Autoscaling]
2016-01-12 10:11:56 -08:00
Isaac Hollander McCreery
a05d0a869c
Up timeout for gke-reboot; fixes #19539
2016-01-12 09:54:37 -08:00
Joe Finney
2a72ff5464
Merge pull request #19301 from spxtr/job-configs
...
Track most remaining Jenkins E2E jobs.
2016-01-12 09:47:47 -08:00
Mike Danese
22cfa5ea7e
build: move some of hack/lib/ into a new cluster/lib/
...
Some functionality in hack/lib is currently depended on by
cluster/common.sh so kube-up from the full release tar (which
does not include hack/) is currently broken. With this PR we
create cluster/lib/ and move the necessary bits from hack/
over to get kube-up working again.
Fixes: 96d1b8d1b2
Signed-off-by: Mike Danese <mikedanese@google.com>
2016-01-11 17:10:26 -08:00
Joe Finney
6dd867108b
Merge pull request #19430 from spxtr/test-go
...
Add kubernetes-test-go and ilk to source control.
2016-01-11 15:51:28 -08:00
Matt Liggett
fefb7a9846
Reduce test-update-storage-objects flakiness by adding a sleep.
2016-01-11 15:08:50 -08:00
Isaac Hollander McCreery
e05724cee8
Properly run GCE_PARALLEL_SKIP_TESTS in reboot suites
2016-01-11 11:41:07 -08:00
Joe Finney
abf41a5304
Merge pull request #19429 from spxtr/soak-yaml
...
Add soak tests to source control.
2016-01-11 09:59:32 -08:00
Joe Finney
90255f8ac5
Add kubernetes-test-go and ilk to source control.
2016-01-08 14:21:34 -08:00
Joe Finney
c972b9fcdb
Add soak tests to source control.
2016-01-08 13:51:40 -08:00
Isaac Hollander McCreery
b731b20907
Collapse REBOOT_SKIP_TESTS into GCE_DEFAULT_SKIP_TESTS, and remove GCE_SOAK_CONTINUOUS_SKIP_TESTS as redundant (see notes)
2016-01-08 11:09:15 -08:00
Joe Finney
698d70591c
Export variables needed by e2e-runner.sh.
2016-01-08 10:26:13 -08:00
k8s-merge-robot
9264340338
Merge pull request #17854 from smarterclayton/basic_proto
...
Auto commit by PR queue bot
2016-01-07 22:03:36 -08:00
Isaac Hollander McCreery
5b0a6f5927
Jenkins upgrade jobs
2016-01-07 16:19:31 -08:00
Isaac Hollander McCreery
cef05926bf
Remove old gce-upgrade jobs
2016-01-07 14:18:12 -08:00
Abhi Shah
ce96ff416b
Revert "Label [Skipped] tests appropriately"
2016-01-07 11:54:41 -08:00
Brendan Burns
5e1afd993c
Switch to m3.medium for e2e testing
2016-01-07 11:15:41 -08:00
Joe Finney
fba3d1f79e
Skip gcloud update checks for Jenkins jobs.
2016-01-07 10:48:59 -08:00
Joe Finney
edc274b6dd
Track most remaining Jenkins E2E jobs.
2016-01-07 10:34:39 -08:00
k8s-merge-robot
4de37e093e
Merge pull request #19297 from ihmccreery/skip-labels
...
Auto commit by PR queue bot
2016-01-06 19:13:16 -08:00
Clayton Coleman
7edbe09e59
Add new known flags and sort them
2016-01-06 21:09:20 -05:00
Clayton Coleman
b1e01875a1
go-to-protobuf: generate protobuf IDL and marshalers for Go structs
2016-01-06 21:09:20 -05:00
Isaac Hollander McCreery
c3cbe34106
Collapse REBOOT_SKIP_TESTS into GCE_DEFAULT_SKIP_TESTS, and remove GCE_SOAK_CONTINUOUS_SKIP_TESTS as redundant (see notes)
2016-01-06 12:16:26 -08:00
k8s-merge-robot
9e927f08b1
Merge pull request #19292 from pmorie/swagger-api-regen
...
Auto commit by PR queue bot
2016-01-06 06:30:27 -08:00
Paul Morie
9c18067e60
Add kubectl support for ConfigMap
2016-01-06 09:03:39 -05:00
k8s-merge-robot
66d3cbf889
Merge pull request #16900 from madhusudancs/avoid-kubelet-oscillation
...
Auto commit by PR queue bot
2016-01-05 17:14:13 -08:00
Paul Morie
dbe7b29c14
Send API server output during swagger spec regen to /tmp
2016-01-05 12:58:58 -05:00
Eric Paris
4034b5db24
Stop needlessly preloading
2016-01-05 10:19:23 -05:00
Eric Paris
2646b4c933
Revert "Pin godep to version 32"
...
This reverts commit 7d5acfb923
.
This was hopefully fixed in
https://github.com/tools/godep/pull/362
2016-01-05 10:15:04 -05:00
gmarek
79b6f13be0
Increase timeout for waiting for kubectl proxy in test-cmd
2016-01-05 11:22:15 +01:00
k8s-merge-robot
cf7fd487d7
Merge pull request #18883 from feihujiang/fixCommentsInTestCmdScript
...
Auto commit by PR queue bot
2016-01-04 21:02:59 -08:00
k8s-merge-robot
8f4d801368
Merge pull request #19265 from spxtr/clean-logs
...
Auto commit by PR queue bot
2016-01-04 20:31:18 -08:00
Madhusudan.C.S
059c2aa799
Mitigate node out of disk status oscillation by delaying it.
...
Implement a flag that defines the frequency at which a node's out of
disk condition can change its status. Use this flag to suspend out of
disk status changes in the time period specified by the flag, after
the status is changed once.
Set the flag to 0 in e2e tests so that we can predictably test out of
disk node condition.
Also, use util.Clock interface for all time related functionality in
the kubelet. Calling time functions in unversioned package or time
package such as unversioned.Now() or time.Now() makes it really hard
to test such code. It also makes the tests flaky and sometimes
unnecessarily slow due to time.Sleep() calls used to simulate the
time elapsed. So use util.Clock interface instead which can be faked
in the tests.
2016-01-04 12:23:38 -08:00
k8s-merge-robot
2cd8bff334
Merge pull request #19146 from spxtr/remove-flock
...
Auto commit by PR queue bot
2016-01-04 11:11:14 -08:00
Joe Finney
c8faf0b1f2
Clean up e2e logs.
...
Unsets xtrace in e2e.sh, sets it in e2e-runner.sh.
Sets quiet flag for gcloud cp.
2016-01-04 11:09:59 -08:00
Ravi Sankar Penta
a9b0696166
Update auto generated docs for kubelet
...
Add node-ip flag to know-flags.txt
2016-01-03 10:18:58 -08:00
k8s-merge-robot
4f65f68a12
Merge pull request #19182 from thockin/kube-proxy-conntrack-max
...
Auto commit by PR queue bot
2016-01-02 02:36:18 -08:00
k8s-merge-robot
b4ae87cada
Merge pull request #19193 from luxas/static_kubectl
...
Auto commit by PR queue bot
2016-01-02 01:50:56 -08:00
k8s-merge-robot
e7b41f132b
Merge pull request #18995 from thockin/vendor_x_sys_unix
...
Auto commit by PR queue bot
2016-01-01 19:28:38 -08:00
Wojciech Tyczynski
712ab62c63
Update verify boilerplate to support 2016
2016-01-01 12:00:21 +01:00
Tim Hockin
da0ac31182
Set conntrack params in kube-proxy
...
Add flags to control max connections (set to 256k vs 64k default) and TCP
established timeout (set to 1 day vs 5 day default). Flags can be set to 0 to
mean "don't change it".
This is only set at startup, and not wrapped in a rectifier loop.
Tested manually.
2015-12-30 15:46:40 -08:00
Tim Hockin
e48f99e2cf
Bump godep release - bugs seem to be fixed.
2015-12-30 15:45:23 -08:00
Joe Finney
adb0da005e
Merge pull request #19153 from spxtr/split-e2e
...
Split e2e.sh into e2e.sh and e2e-runner.sh on master branch.
2015-12-30 15:27:00 -08:00
Joe Finney
404da54f10
Split e2e.sh into e2e-jobs.sh and e2e-runner.sh on master branch.
2015-12-30 14:39:31 -08:00
k8s-merge-robot
2f11a6a0f9
Merge pull request #19197 from wojtek-t/increase_apiserver_timeout
...
Auto commit by PR queue bot
2015-12-30 07:36:36 -08:00
k8s-merge-robot
9287a108a4
Merge pull request #18156 from wojtek-t/use_new_deep_copies
...
Auto commit by PR queue bot
2015-12-30 05:11:02 -08:00
Wojciech Tyczynski
920d3b5336
Increase apiserver timeout in tests
2015-12-30 14:09:54 +01:00
k8s-merge-robot
728ed4bb83
Merge pull request #19142 from gmarek/grab-metrics
...
Auto commit by PR queue bot
2015-12-30 01:44:28 -08:00
Lucas Käldström
ff9a3d3cb3
Build kubectl statically
2015-12-30 10:31:15 +02:00
k8s-merge-robot
356487c951
Merge pull request #18101 from brendandburns/kubectl6
...
Auto commit by PR queue bot
2015-12-29 12:43:42 -08:00
Wojciech Tyczynski
baf97c9c5e
First use of new deep-copy generator.
2015-12-29 18:06:09 +01:00
k8s-merge-robot
13a853f371
Merge pull request #19139 from wojtek-t/enable_testing_client_gen
...
Auto commit by PR queue bot
2015-12-29 08:58:00 -08:00
Dr. Stefan Schimanski
7a2c33e323
contrib/mesos/scheduler: make debug handler for kubelet configurable
2015-12-29 14:39:59 +01:00
gmarek
2804c00706
Increase Kubelet log verbosity in scalability tests
2015-12-29 10:31:03 +01:00
gmarek
1df78a2398
Add a framework for multiple writers for various test data summaries
2015-12-29 10:26:44 +01:00
gmarek
c6b5c2365c
Enable metrics gathering in scalability suite
2015-12-29 09:30:17 +01:00
k8s-merge-robot
fec5206f1a
Merge pull request #13840 from nelcy/master
...
Auto commit by PR queue bot
2015-12-28 23:55:32 -08:00
feihujiang
a8639280c7
Fix wrong commends in test-cmd.sh
2015-12-29 14:10:21 +08:00
k8s-merge-robot
58ae1a42de
Merge pull request #19063 from gmarek/use-metrics
...
Auto commit by PR queue bot
2015-12-28 15:10:56 -08:00
k8s-merge-robot
6cae602fae
Merge pull request #19104 from jonboulle/master
...
Auto commit by PR queue bot
2015-12-28 14:37:23 -08:00
Joe Finney
fb11173f6f
Stop flocking for gcloud updates.
2015-12-28 10:30:27 -08:00
Wojciech Tyczynski
9d912e843b
Update/verify client generator in scripts
2015-12-28 14:24:43 +01:00
gmarek
2dcafa3854
Add a flag that will make test gather metrics from all running components after the test finishes.
2015-12-28 12:10:39 +01:00
Wojciech Tyczynski
89a4093622
Merge pull request #18926 from erictune/fix-build
...
Revert part of #18860
2015-12-28 11:03:25 +01:00
Jeff Grafton
52a6252431
Don't limit go test
to only 2 cores
2015-12-27 17:21:40 -08:00
Jonathan Boulle
70fddfdf80
Preload camlistore godep in verify-godeps
...
Similar to 62eb82d6fc
, this works around
package refactoring and godep incompatibility
2015-12-25 23:10:52 +01:00
Chakravarthy Nelluri
fa76de79e5
Add support for flex volume. Flex volume adds support for thirdparty(vendor)
...
volumes and custom mounts.
2015-12-23 14:11:38 -08:00
gmarek
b2a7c7120e
Enable logs generation rate checking in scalability tests. Take 2
2015-12-23 11:15:27 +01:00
Mike Danese
b174fc9c97
Merge pull request #18994 from bprashanth/flannel_suite
...
Add a jenkins flannel suite.
2015-12-22 14:07:14 -08:00
Isaac Hollander McCreery
5ee8850263
Fold GKE_FLAKY and PARALLEL_FLAKY into FLAKY
2015-12-22 12:29:58 -08:00
Isaac Hollander McCreery
a62f2a41c6
Remove flaky and slow test skip lists, add [Flaky] and [Slow] labels
2015-12-22 12:29:58 -08:00
Brendan Burns
4123a61df7
Add the client side bits of kubectl export
2015-12-22 10:41:59 -08:00
Brendan Burns
ac5c0aaba7
Merge pull request #17883 from jimmidyson/cadvisor-bump-0.19.4
...
Bump cadvisor to fix interface stats bugs & improve performance
2015-12-22 10:34:46 -08:00
Marek Grabowski
79ef0d7900
Revert "Enable logs generation rate checking in scalability tests"
2015-12-22 15:30:09 +01:00
k8s-merge-robot
41aa6cea62
Merge pull request #18998 from gmarek/master
...
Auto commit by PR queue bot
2015-12-22 04:20:43 -08:00
gmarek
8d79c606dc
Enable logs generation rate checking in scalability tests
2015-12-22 09:21:48 +01:00
Prashanth Balasubramanian
4013de0175
Add a jenkins flannel suite.
2015-12-21 20:30:59 -08:00
HaiyangDING
d9f3607292
Implement multi-scheduler:
...
1. Name default scheduler with name `kube-scheduler`
2. The default scheduler only schedules the pods meeting the following condition:
- the pod has no annotation "scheduler.alpha.kubernetes.io/name: <scheduler-name>"
- the pod has annotation "scheduler.alpha.kubernetes.io/name: kube-scheduler"
update gofmt
update according to @david's review
run hack/test-integration.sh, hack/test-go.sh and local e2e.test
2015-12-22 10:49:40 +08:00
k8s-merge-robot
4b18fa553f
Merge pull request #18987 from spxtr/split-e2e
...
Auto commit by PR queue bot
2015-12-21 15:56:41 -08:00
Joe Finney
010df488fa
Add e2e-runner and e2e-jobs stub.
2015-12-21 14:41:05 -08:00
Joe Finney
af461b6361
Remove colon from gke-ci-reboot job name
2015-12-21 09:28:43 -08:00
Joe Finney
2c75c29783
Merge pull request #18867 from spxtr/gke-ci
...
Add gke-ci and gke-ci-reboot to source control
2015-12-21 09:11:54 -08:00
Joe Finney
48735bab79
Merge pull request #18897 from spxtr/gcloud-remove
...
Remove gcloud components update from e2e.sh
2015-12-21 09:09:51 -08:00
Jimmi Dyson
62eb82d6fc
Preload docker dep to work around Docker package refactoring & godep incompatibility
...
Fixes #18833
2015-12-21 17:07:29 +00:00
k8s-merge-robot
2efc738d5b
Merge pull request #18458 from hongchaodeng/perf
...
Auto commit by PR queue bot
2015-12-21 01:54:09 -08:00
k8s-merge-robot
15ecc2f750
Merge pull request #18813 from runseb/patch-1
...
Auto commit by PR queue bot
2015-12-20 14:28:26 -08:00
k8s-merge-robot
ff228e943e
Merge pull request #18903 from ihmccreery/also-rm-cloudsdk
...
Auto commit by PR queue bot
2015-12-20 06:47:49 -08:00
k8s-merge-robot
adf3cd6fa5
Merge pull request #18837 from erictune/fix-codecgen
...
Auto commit by PR queue bot
2015-12-20 01:16:40 -08:00
k8s-merge-robot
1562d84c96
Merge pull request #18628 from mikedanese/expose-master-count
...
Auto commit by PR queue bot
2015-12-19 12:42:05 -08:00
k8s-merge-robot
7125b3cf78
Merge pull request #18908 from jlowdermilk/test-owner
...
Auto commit by PR queue bot
2015-12-19 08:06:08 -08:00
k8s-merge-robot
d520b13d62
Merge pull request #18741 from ixdy/jenkins-job-configs
...
Auto commit by PR queue bot
2015-12-19 08:05:41 -08:00
k8s-merge-robot
b12f6b341f
Merge pull request #18599 from smarterclayton/abstract_explain
...
Auto commit by PR queue bot
2015-12-19 04:34:32 -08:00
k8s-merge-robot
3c3a24e1d4
Merge pull request #18694 from thockin/airplane_validation_pt7
...
Auto commit by PR queue bot
2015-12-19 03:57:53 -08:00
k8s-merge-robot
d71f9a175a
Merge pull request #18919 from spxtr/timeout-jobs
...
Auto commit by PR queue bot
2015-12-19 03:43:50 -08:00
Eric Tune
c0eac46059
Revert part of #18860
...
Revert the part of #18860 which skipped running hack/verify-codecgen.sh on
testdata directories. @caesarxuchao pointed out it is not necessary.
2015-12-18 22:28:45 -08:00
Eric Tune
32f5f4f239
Fix update/verify-codecgen.sh for OSX.
2015-12-18 21:20:33 -08:00
k8s-merge-robot
9e8233fc3c
Merge pull request #17398 from janetkuo/deployment-controller-informer
...
Auto commit by PR queue bot
2015-12-18 19:13:32 -08:00
Joe Finney
58decdb22f
Mark e2e tests that time out failed.
...
Previously we were marking them failed, then marking them aborted.
2015-12-18 16:01:28 -08:00
Jeff Lowdermilk
69ce41eb02
Detailed description for kubernetes-update-jenkins-jobs + email alert
2015-12-18 14:28:52 -08:00
Joe Finney
b6c5e398e5
Add gke-ci and gke-ci-reboot to source control
2015-12-18 13:59:14 -08:00
Eric Tune
f15b2e32a7
Merge pull request #16422 from hurf/created_by
...
Display controllers along with type when describing a pod
2015-12-18 13:44:07 -08:00
Joe Finney
b4144a0eec
Remove gcloud components update from e2e.sh
2015-12-18 13:43:26 -08:00
Mike Danese
a09d85bd83
expose master count configuration in a cli option on apiserver
2015-12-18 13:10:41 -08:00
k8s-merge-robot
229d6ec944
Merge pull request #18863 from spxtr/components-update
...
Auto commit by PR queue bot
2015-12-18 13:08:45 -08:00
k8s-merge-robot
2fa3568c73
Merge pull request #18844 from spxtr/e2e-cleanup
...
Auto commit by PR queue bot
2015-12-18 12:49:50 -08:00
k8s-merge-robot
7f5123f61f
Merge pull request #18900 from ihmccreery/serial-tests
...
Auto commit by PR queue bot
2015-12-18 11:56:11 -08:00
Isaac Hollander McCreery
921d449f44
Also remove ~/cloudsdk to prevent multijobs from failing on creation
2015-12-18 11:16:24 -08:00
Isaac Hollander McCreery
bd49a3420e
Add [Disruptive] and [Serial] labels to appropriate tests
...
And use for partitioning; makes progress toward 10548
2015-12-18 11:12:28 -08:00
k8s-merge-robot
7eda961ada
Merge pull request #13838 from mikedanese/go1.5
...
Auto commit by PR queue bot
2015-12-18 11:09:15 -08:00
k8s-merge-robot
3051fd9bb6
Merge pull request #18873 from caesarxuchao/ignore-ws
...
Auto commit by PR queue bot
2015-12-18 10:38:56 -08:00
k8s-merge-robot
40e4ce2879
Merge pull request #18839 from erictune/codecgen-err-msg
...
Auto commit by PR queue bot
2015-12-18 10:38:15 -08:00
k8s-merge-robot
1981c2a640
Merge pull request #18719 from bprashanth/flannel_builder
...
Auto commit by PR queue bot
2015-12-18 10:36:51 -08:00
k8s-merge-robot
0641e4a8f0
Merge pull request #18417 from Pensu/master
...
Auto commit by PR queue bot
2015-12-18 10:35:00 -08:00
Tim Hockin
43ed74748e
Clean up and document validation strings
...
Also add a detail string for Required and Forbidden. Fix tests.
2015-12-18 09:40:50 -08:00
Hongchao Deng
c0243ad4ee
scheduler performance test suite: benchmarks and density tests
2015-12-18 09:39:33 -08:00
Wojciech Tyczynski
98e2ed661d
Merge pull request #18881 from wojtek-t/move_kubemark
...
Move kubemark500 to kubernetes-scale
2015-12-18 08:21:26 +01:00
Wojciech Tyczynski
62c35055ab
Move kubemark500 to kubernetes-scale
2015-12-18 08:14:16 +01:00
Clayton Coleman
151b4e5958
Tweak explain messages and abstract client
2015-12-18 00:27:22 -05:00
Janet Kuo
32d153093e
Fix deployment tests failures; change ResyncPeriod
2015-12-17 19:29:54 -08:00
Sam Ghods
b838d8ce18
Add informers to deployment controller
2015-12-17 19:29:54 -08:00
Chao Xu
785556e79c
ignore trailing whitespace and blankline when verify api reference docs
2015-12-17 16:29:28 -08:00
Jeff Lowdermilk
a2f076bdde
Merge pull request #18840 from ihmccreery/fix-sdk-cleanup
...
Remove ~/repo before moving Cloud SDK components there
2015-12-17 16:11:32 -08:00
Jeff Grafton
33c1f15c21
Run upload-to-gcs.sh as a post build script
2015-12-17 16:05:40 -08:00
Joe Finney
54ccb8fca7
Add a Jenkins job that updates gcloud components hourly.
2015-12-17 15:49:17 -08:00
Eric Tune
140dfccdd5
Merge pull request #18860 from erictune/fix-build
...
Fix build
2015-12-17 13:52:29 -08:00
Eric Tune
e2fab78539
Do not verify-codecgen.sh on testdata
...
Otherwise, verify-codecgen was saying that the testdata needed to
change for some reason.
2015-12-17 13:51:33 -08:00
Isaac Hollander McCreery
cf5d79fda9
Properly set KUBE_GCE_INSTANCE_PREFIX for upgrade jobs in e2e.sh
2015-12-17 11:42:45 -08:00
Joe Finney
73d1c4d701
Remove JENKINS_EXPLICIT_VERSION from e2e.sh
2015-12-17 10:33:23 -08:00
Eric Tune
fb3cfece9c
Nice error message if no types.generated.go files.
...
Explains how to fix problem, instead of
saying "index" is an unbound reference.
Problem happens when previous run of codecgen deleted all the outputs
and then failed midway.
2015-12-17 10:11:29 -08:00
Isaac Hollander McCreery
375f4df7b7
Remove ~/repo before moving Cloud SDK components there
2015-12-17 10:09:47 -08:00
Joe Finney
af55b6903d
Merge pull request #18666 from spxtr/e2e-gce
...
Manual merge to watch Jenkins.
2015-12-17 08:28:03 -08:00
gmarek
264f213523
Increase timeout for API server startup in hack/test-update-storage-objects.sh
2015-12-17 11:07:24 +01:00
runseb
6fa56de691
Remove NamespaceAutoProvision which is deprecated
...
According to https://github.com/kubernetes/kubernetes/blob/master/docs/admin/admission-controllers.md
NamespaceAutoProvision is deprecated, keeping it in the script tends to give a bad practice where namespace are auto created.
Suggest to remove it.
2015-12-17 11:05:20 +01:00
k8s-merge-robot
0657a35971
Merge pull request #18781 from jlowdermilk/gke-flaky
...
Auto commit by PR queue bot
2015-12-16 22:40:15 -08:00
k8s-merge-robot
46c2df3e05
Merge pull request #17483 from brendandburns/kubectl5
...
Auto commit by PR queue bot
2015-12-16 21:57:33 -08:00
Isaac Hollander McCreery
dc10b0a43a
Use staging CLOUDSDK_BUCKET and test endpoint by default for Jenkins GKE e2e tests, stop using DOGFOOD_GCLOUD
2015-12-16 19:05:09 -08:00
Isaac Hollander McCreery
be5407b8ef
Merge pull request #18792 from ihmccreery/gce-jobs-master
...
Add kubernetes-upgrade-gce-1.1-master job configs to master
2015-12-16 17:36:08 -08:00
Isaac Hollander McCreery
41d46f8461
Add kubernetes-upgrade-gce-1.1-master job configs
2015-12-16 15:13:50 -08:00
Brendan Burns
2efcccf981
Add a server side export facility
2015-12-16 15:01:13 -08:00
Jeff Lowdermilk
f1cc2548fb
Make gke-flaky test more useful
...
Test gce flaky tests as well, so the job isn't skipping all but
one test.
2015-12-16 11:59:31 -08:00
k8s-merge-robot
0f22ba4be3
Merge pull request #18763 from RoelVanNyen/RoelVanNyen-patch-update-all
...
Auto commit by PR queue bot
2015-12-16 10:08:12 -08:00
RoelVanNyen
f54c1de58c
Fix typo in hack/update-all.sh
2015-12-16 17:45:25 +01:00
k8s-merge-robot
5a579a2555
Merge pull request #16028 from derekwaynecarr/make_cmd
...
Auto commit by PR queue bot
2015-12-16 08:41:59 -08:00
Wojciech Tyczynski
a73e1f6b2f
Fix hack/update-api-reference-docs.sh script
2015-12-16 15:17:42 +01:00
Wojciech Tyczynski
2b565b633d
Export NETWORK_PROVIDER in hack/jenkins/e2e.sh
2015-12-16 09:53:02 +01:00
k8s-merge-robot
9033311475
Merge pull request #18598 from ihmccreery/release-mark-stable
...
Auto commit by PR queue bot
2015-12-16 00:09:12 -08:00
k8s-merge-robot
df8efcf582
Merge pull request #17960 from pmorie/travis-verify-codec
...
Auto commit by PR queue bot
2015-12-15 23:19:50 -08:00
k8s-merge-robot
cc9b0dc8f2
Merge pull request #18692 from thockin/local-kubectl
...
Auto commit by PR queue bot
2015-12-15 23:15:34 -08:00
Isaac Hollander McCreery
4ea8a92777
Mark a release as stable when we announce it, and stop using cherry_pick_list.sh
2015-12-15 16:37:00 -08:00
Joe Finney
9bb83ce7cd
Ignore console-log.txt when checking for empty workspace.
2015-12-15 15:34:10 -08:00
Prashanth Balasubramanian
76a9925eb5
Enable a flannel e2e builder.
2015-12-15 10:18:16 -08:00
Tim Hockin
ef8dbc1819
Add kubectl to local-up script
2015-12-15 09:02:02 -08:00
Wojciech Tyczynski
32a4bdbcd2
Run only Density test on 1000-node cluster
2015-12-15 15:12:19 +01:00
k8s-merge-robot
b02417bb9b
Merge pull request #18348 from mesosphere/sur-652-conformance-tests
...
Auto commit by PR queue bot
2015-12-15 02:02:50 -08:00
k8s-merge-robot
e72e819395
Merge pull request #18090 from thockin/go-versions
...
Auto commit by PR queue bot
2015-12-14 14:47:59 -08:00
Eric Paris
7d5acfb923
Pin godep to version 32
...
33, 34, 35 are all broken differently.
https://github.com/tools/godep/issues/359
2015-12-14 14:22:07 -05:00
derekwaynecarr
5e0948586c
Add kubectl create [SUBCOMMAND] pattern
2015-12-14 13:43:45 -05:00
Joe Finney
854b2c5f2d
Source control all master-branch GCE Jenkins jobs.
2015-12-14 10:15:48 -08:00
Paul Morie
c5765fbfef
Special case godep installation in verify-codecgen for travis
2015-12-14 12:29:18 -05:00
Sergiusz Urbaniak
67e98fcfa8
executor, scheduler: make default pod roles configurable
...
Currently if a pod is being scheduled with no meta.RolesKey label
attached to it, per convention the first configured mesos (framework)
role is being used.
This is quite limiting and also lets e2e tests fail. This commit
introduces a new configuration option "--mesos-default-pod-roles" defaulting to
"*" which defines the default pod roles in case the meta.RolesKey pod
label is missing.
2015-12-14 15:18:39 +01:00
gmarek
3e2f745d7b
Move kubemark-500 back to asia-east1
2015-12-14 15:16:28 +01:00
gmarek
fe6644a1b2
Move Kubmark tests to us-east1-b, to make space for enormous cluster tests in asia-east1
2015-12-14 14:22:13 +01:00
k8s-merge-robot
9067833a31
Merge pull request #18382 from yujuhong/resource_usage
...
Auto commit by PR queue bot
2015-12-13 21:23:29 -08:00
Jeff Lowdermilk
c103825ef4
Merge pull request #14537 from markturansky/pv_provisioner
...
PersistentVolume Provisioner Controller
2015-12-11 13:09:33 -08:00
Joe Finney
f4f74ceb65
export GCE_SERVICE_ACCOUNT in e2e.sh
2015-12-11 12:53:11 -08:00
Joe Finney
12c038af0c
Fix workspace not empty on gce tests.
...
We added a gcloud command earlier in e2e.sh which creates a .config
folder in the workspace. Ignore it.
2015-12-11 11:33:49 -08:00
Joe Finney
8535f13a2b
Merge pull request #18454 from spxtr/e2e-gce
...
Add kubernetes-e2e-gce job to git
2015-12-11 09:54:32 -08:00
markturansky
4fc1bf1f23
Added PersistentVolumeController
2015-12-11 10:33:30 -05:00
Marek Grabowski
e34e6e7641
Merge pull request #18573 from gmarek/master
...
Move Daemon set should run complex daemon test to flaky
2015-12-11 15:21:31 +01:00
gmarek
c538f6fd74
Move Daemon set should run complex daemon test to flaky
2015-12-11 15:18:20 +01:00
k8s-merge-robot
efd17797b2
Merge pull request #18563 from wojtek-t/1000_node_cluster_on_jenkins
...
Auto commit by PR queue bot
2015-12-11 06:03:13 -08:00
k8s-merge-robot
db08e062b8
Merge pull request #18514 from gmarek/grab-profiles
...
Auto commit by PR queue bot
2015-12-11 06:02:56 -08:00
Wojciech Tyczynski
3367369c49
Add 1000-node cluster suite to Jenkins
2015-12-11 09:54:42 +01:00
Tim Hockin
0df07424e7
Make go version requirements clearer
2015-12-10 12:09:25 -08:00
k8s-merge-robot
06c8b3443b
Merge pull request #18271 from tmrts/rename/githash
...
Auto commit by PR queue bot
2015-12-10 09:28:36 -08:00
Joe Finney
495450865c
Add kubernetes-e2e-gce job
2015-12-10 09:11:48 -08:00
gmarek
a8193679fb
Add Scheduler and ControllerManager profile grabbing
2015-12-10 16:27:13 +01:00
Wojciech Tyczynski
53c0291e40
Fix Jenkins config
2015-12-10 08:22:47 +01:00
k8s-merge-robot
d9d8164620
Merge pull request #18310 from ihmccreery/fix-aws-jenkins
...
Auto commit by PR queue bot
2015-12-09 21:44:24 -08:00
Jeff Grafton
f50d56156c
Print file list when Jenkins workspace is not empty
2015-12-09 16:42:08 -08:00
Isaac Hollander McCreery
e0b3859a72
Fix step7 config for upgrade jobs on master
2015-12-09 14:29:55 -08:00
Mike Danese
c2753d75d2
bump ci go version to 1.5.2
2015-12-09 13:56:41 -08:00
k8s-merge-robot
5839086618
Merge pull request #18238 from ihmccreery/run-is-up
...
Auto commit by PR queue bot
2015-12-09 12:53:33 -08:00
k8s-merge-robot
9bbe6012e3
Merge pull request #17683 from pwittrock/node_e2e_tests
...
Auto commit by PR queue bot
2015-12-09 12:50:22 -08:00
Isaac Hollander McCreery
8d46df0162
Merge pull request #18400 from ihmccreery/7-step-master
...
Add 7-stage upgrade jobs
2015-12-09 09:58:18 -08:00
k8s-merge-robot
a1d9724bd7
Merge pull request #18194 from ixdy/upload-to-gcs-script
...
Auto commit by PR queue bot
2015-12-09 03:36:05 -08:00
Wojciech Tyczynski
7785dbce3a
Merge pull request #18424 from wojtek-t/move_liveness_probe_to_flaky
...
Move LivenessProbe test to flaky
2015-12-09 10:48:40 +01:00
Wojciech Tyczynski
7c2212526a
Move LivenessProbe test to flaky
2015-12-09 10:07:26 +01:00
Peeyush Gupta
4774e7146e
Add support for ppc64le architecture.
2015-12-09 12:12:13 +05:30
k8s-merge-robot
90d5bc1834
Merge pull request #18300 from spxtr/build-job
...
Auto commit by PR queue bot
2015-12-08 16:13:43 -08:00
Isaac Hollander McCreery
2838af6147
Configure upgrade jobs to use 7-step upgrade, and remove obsolete configs
2015-12-08 15:32:32 -08:00
Isaac Hollander McCreery
cb56fdc27e
Add 7-stage upgrade configs to configure_upgrade_step
2015-12-08 15:32:08 -08:00
k8s-merge-robot
d568a92d63
Merge pull request #18317 from spxtr/verify-flags
...
Auto commit by PR queue bot
2015-12-08 14:40:46 -08:00
k8s-merge-robot
32ac5c57ba
Merge pull request #18046 from janetkuo/fix-local-cluster
...
Auto commit by PR queue bot
2015-12-08 14:39:32 -08:00
Joe Finney
89f6e1bdd7
Check in kubernetes-build job configs.
2015-12-08 09:34:47 -08:00
Joe Finney
ca3524639d
Add .md and .yaml exceptions to verify-flags-underscore.py.
...
Also removed duplicated exception checks for file extensions.
2015-12-07 16:33:27 -08:00
Yu-Ju Hong
c1a0502487
Change the kubelet --max-pods limit to 110 for test clusters
...
This allows resource usage monitoring test to launch 100 test pods per node, in
addition to the add-on pods.
Also reduce the test time length since the results over the shorter period are
representative enough.
2015-12-07 15:41:40 -08:00
Joe Finney
47250d8b1b
Add exception for hack/jenkins/README.md
2015-12-07 15:32:18 -08:00
Tamer Tas
e5100279db
Rename githash to build_version and version to release_version
2015-12-08 01:21:20 +02:00
Fabio Yeon
0fe724f4eb
Merge pull request #17996 from spxtr/jenkins-jobs
...
Check Jenkins job configs into git
2015-12-07 15:04:23 -08:00
Isaac Hollander McCreery
6c2767f87f
Add configs to AWS jenkins job, and properly export them.
2015-12-07 14:17:16 -08:00
gmarek
d25472f67a
Move Elasticsearch test to the Flaky suite
2015-12-07 12:03:04 +01:00
Wojciech Tyczynski
e4a4a87842
Move kube-proxy test from flaky
2015-12-07 09:25:16 +01:00
k8s-merge-robot
db11f1b6c6
Merge pull request #17133 from derekwaynecarr/quota_controller_improvements
...
Auto commit by PR queue bot
2015-12-06 12:24:00 -08:00
Joe Finney
1bc9980f29
Allow source-controlled Jenkins job configs.
...
Job configs are stored in YAML files in hack/jenkins/job-configs in the
format used by Jenkins Job Builder. A docker container running on
Jenkins fetches job configs every fifteen minutes and updates Jenkins.
2015-12-04 16:23:30 -08:00
Isaac Hollander McCreery
49a2df54ae
Check to make sure the cluster is up before running tests, and fail if it's not.
2015-12-04 14:59:36 -08:00
Isaac Hollander McCreery
dd734ca1b8
Merge pull request #18030 from ihmccreery/auto-config-upgrades-master
...
Configure gke-upgrade jobs from 1.0 and 1.1 to master on master
2015-12-04 09:56:04 -08:00
k8s-merge-robot
6a39a6187d
Merge pull request #18150 from gmarek/grab-profiles
...
Auto commit by PR queue bot
2015-12-04 03:18:32 -08:00
gmarek
9d11195508
Add an option to grab a profile from kubelet to grab-profiles.sh
2015-12-04 11:25:40 +01:00
k8s-merge-robot
6f6e97f2e4
Merge pull request #17987 from mml/mungedocs
...
Auto commit by PR queue bot
2015-12-04 02:13:54 -08:00
Jeff Grafton
7151b54a20
Pull variable definitions out of loop so retries work
2015-12-03 18:28:14 -08:00
derekwaynecarr
55d4f70f8e
Resource quota observes deletes faster
2015-12-03 17:35:05 -05:00
k8s-merge-robot
b7d8221296
Merge pull request #17988 from roberthbailey/gke-flaky
...
Auto commit by PR queue bot
2015-12-03 12:01:01 -08:00
k8s-merge-robot
3cbfcdcdba
Merge pull request #16810 from lavalamp/go2idl.2
...
Auto commit by PR queue bot
2015-12-03 04:25:08 -08:00
Wojciech Tyczynski
db80096858
Move "Nodes Network" test out of flaky
2015-12-03 09:50:57 +01:00
Marek Grabowski
1a59e031e2
Merge pull request #17993 from eosrei/1111-minion-node-hack-e2e
...
Minion->Node rename: comments/vars for e2e.go, e2e.sh, resize_nodes.go for #1111
2015-12-03 09:23:22 +01:00
Isaac Hollander McCreery
40a03aa59a
Add comments
2015-12-02 15:54:31 -08:00
Daniel Smith
ad925dd2e8
Add verification to code gen
2015-12-02 14:14:49 -08:00
Brendan Burns
7d25f715a6
Merge pull request #18043 from brendandburns/fix
...
Fix api reference generation script on os x.
2015-12-02 09:58:54 -08:00
k8s-merge-robot
8d19fabe08
Merge pull request #18001 from ixdy/test-cmd-version
...
Auto commit by PR queue bot
2015-12-02 08:17:00 -08:00
Janet Kuo
36067cf4a4
Fix local cluster script
2015-12-01 17:11:21 -08:00
Brad Erickson
6ac427a501
Minion->Node rename: e2e.sh and resize_nodes.go GCE_FLAKY_TESTS
2015-12-01 16:00:47 -08:00
Brad Erickson
e67667f1b5
Minion->Node rename: comments and vars for e2e.go and e2e.sh
2015-12-01 16:00:47 -08:00
Brendan Burns
661faf4585
Fix api reference generation script on os x.
2015-12-01 15:54:42 -08:00
Isaac Hollander McCreery
421d5e99f6
Add 1.1-master jobs to master
2015-12-01 15:18:39 -08:00
Isaac Hollander McCreery
81cec94ed8
Make job names consistent
2015-12-01 15:18:39 -08:00
Isaac Hollander McCreery
1edd23f4bb
Add jobs for kubernetes-upgrade-gke-1.0-master, remove old 1.0 jobs & GCE jobs
2015-12-01 15:18:39 -08:00
k8s-merge-robot
d282974e13
Merge pull request #18025 from mikedanese/fixmem
...
Auto commit by PR queue bot
2015-12-01 12:10:34 -08:00
Jeff Grafton
be856daab6
Merge pull request #17751 from ixdy/jenkins-e2e-master
...
Remove all non-release job definitions from hack/jenkins/e2e.sh
2015-12-01 11:50:41 -08:00
Mike Danese
0655e65b43
fall back to old behavior when deciding mem availablity during build
2015-12-01 10:25:14 -08:00
k8s-merge-robot
7644d34759
Merge pull request #15775 from mesosphere/sur-k8sm-482-resource-roles
...
Auto commit by PR queue bot
2015-12-01 05:36:52 -08:00
k8s-merge-robot
ea14d1c309
Merge pull request #17880 from gmarek/log_monitoring
...
Auto commit by PR queue bot
2015-12-01 03:52:23 -08:00
Michail Kargakis
f8c85e5e85
Fix test-cmd flake
2015-12-01 11:39:46 +01:00
k8s-merge-robot
a7a8417ee3
Merge pull request #17978 from spiffxp/cherry-pick-mktemp
...
Auto commit by PR queue bot
2015-12-01 02:18:05 -08:00
k8s-merge-robot
517dcd9b2f
Merge pull request #17839 from mesosphere/sttts-conformance-tags
...
Auto commit by PR queue bot
2015-12-01 01:53:16 -08:00
k8s-merge-robot
1dc513d390
Merge pull request #17997 from mesosphere/conformance-script-wrapper
...
Auto commit by PR queue bot
2015-12-01 00:23:45 -08:00
Dr. Stefan Schimanski
d17f90ee62
conformance: support annotated tags
...
The former code listed all tags with show-ref which lists the actual tag commit
hash for annotated tags, not the dereferences hash. Although through `-d`
git-show-ref can also dereference annotated tags, this complicated the command
even more due do addition unpadding of the found tags.
Anyway, this code does the same in one command, available since git 1.7.
2015-12-01 08:45:05 +01:00
k8s-merge-robot
53a544d980
Merge pull request #17614 from bprashanth/IngressE2E
...
Auto commit by PR queue bot
2015-11-30 20:16:17 -08:00
Karl Isenberg
f7248ab393
Add cluster/test-conformance.sh script
...
- Add support for passing args to conformance tests
2015-11-30 18:47:38 -08:00
k8s-merge-robot
290112bce6
Merge pull request #16841 from jiangyaoguo/keep-kubeproxy-hostname-consistent-with-kubelet
...
Auto commit by PR queue bot
2015-11-30 18:26:21 -08:00
k8s-merge-robot
794f162ef0
Merge pull request #16662 from linux-on-ibm-z/master
...
Auto commit by PR queue bot
2015-11-30 17:54:41 -08:00
Jeff Grafton
ea4d6b1fe4
Remove all non-release job definitions
2015-11-30 15:24:36 -08:00
Jeff Grafton
a7ee6d394b
Print out kubectl version in test-cmd
2015-11-30 15:15:23 -08:00
Robert Bailey
6bdba125d9
Move the gke flaky tests into a separate project.
2015-11-30 14:37:47 -08:00
Matt Liggett
08418a486d
Add debugging output to mungedocs when --verbose=true.
...
Hope to understand why verify-generated-docs is failing on jenkins but
not here.
2015-11-30 13:43:19 -08:00
Aaron Crickenberger
4bda53cb7f
Fix mktemp invocation for OS X
...
Use explicit template instead. OS X doesn't have a no-prefix option.
2015-11-30 12:14:57 -08:00
Prashanth Balasubramanian
c553b15534
Ingress test revamp
...
Fixes a number of harder issues the initial test punted on.
2015-11-30 11:29:04 -08:00
Isaac Hollander McCreery
cc2b36bcc4
configure_upgrade_step in e2e.sh, and use it for kubernetes-upgrade-gke
2015-11-30 11:08:04 -08:00
gmarek
6ade0a1217
Add a tool for monitoring log generation rates
2015-11-30 16:04:48 +01:00
k8s-merge-robot
140df5f809
Merge pull request #17220 from kargakis/kubectl-scale-deployments
...
Auto commit by PR queue bot
2015-11-30 04:19:58 -08:00
Wojciech Tyczynski
90e79c875e
Move NodeOutOfDisk" to flaky
2015-11-30 10:46:54 +01:00
jiangyaoguo
a739fc44c4
keep kubeproxy hostname consistent with kubelet
2015-11-28 10:47:29 +08:00
k8s-merge-robot
fc927e8719
Merge pull request #17770 from gmarek/fix-test
...
Auto commit by PR queue bot
2015-11-27 06:35:49 -08:00
k8s-merge-robot
5687bfa8b2
Merge pull request #17687 from madhusudancs/out-of-disk-e2e
...
Auto commit by PR queue bot
2015-11-26 18:41:33 -08:00
Filip Grzadkowski
284b2e4166
Merge pull request #17831 from gmarek/wtf
...
Update GCE flaky suite
2015-11-26 15:57:33 +01:00
k8s-merge-robot
777f24b6c5
Merge pull request #17629 from brendandburns/arm
...
Auto commit by PR queue bot
2015-11-26 06:01:04 -08:00
gmarek
3c67f48ad4
Update GCE flaky suite
2015-11-26 14:12:55 +01:00
k8s-merge-robot
0c4f302e5e
Merge pull request #17601 from eosrei/shell-var-MINION-to-NODE
...
Auto commit by PR queue bot
2015-11-26 05:02:44 -08:00
gmarek
185eb9513e
Move KubeProxy test to GKE_FLAKY
2015-11-26 09:37:12 +01:00
k8s-merge-robot
fc694ea787
Merge pull request #16725 from wojtek-t/update_ugorji
...
Auto commit by PR queue bot
2015-11-25 22:14:20 -08:00
gajju26
94093d9cbc
Added support for IBM z Systems architecture (s390x)
2015-11-26 11:25:04 +05:30
Phillip Wittrock
6b358e43dd
Merge pull request #17747 from saad-ali/fixErrorCreatingPDTry2
...
Refactor GCE wrapper library to allow execution from E2E test suite
2015-11-25 15:57:42 -08:00
saadali
42b200a0a0
Refactor GCE wrapper library to allow execution from E2E test suite
...
This reverts commit 147b6911f5
, reversing
changes made to 6fd986065b
.
2015-11-25 11:48:06 -08:00
Marek Grabowski
62009344cc
Merge pull request #17761 from gmarek/flannel
...
Rebase of @bprashant Flannel out of the box
2015-11-25 16:04:35 +01:00
gmarek
4a785d0676
Enable Add-On resource gathering in scalability tests
2015-11-25 14:04:07 +01:00
Marek Grabowski
8a5153deb7
Revert "Test jenkins change on flaky suite"
2015-11-25 14:02:49 +01:00
k8s-merge-robot
3136acad8b
Merge pull request #14623 from linzichang/fixup-cassandra
...
Auto commit by PR queue bot
2015-11-25 04:57:14 -08:00
k8s-merge-robot
da8daaad01
Merge pull request #17759 from piosz/l7-e2e
...
Auto commit by PR queue bot
2015-11-25 04:53:24 -08:00
gmarek
b4f6e18b47
Test jenkins change on flaky suite
2015-11-25 13:33:22 +01:00
Wojciech Tyczynski
20cf0609dd
Fix update-codecgen
2015-11-25 12:34:05 +01:00
gmarek
a6997875f2
Move GCE L7 LoadBalancer test to the Flaky suite
2015-11-25 12:22:20 +01:00
Michail Kargakis
99fc35880b
kubectl: Support scaling deployments
...
This commit adds support for using kubectl scale to scale deployments. Makes use of the
deployments/scale endpoint instead of updating deployment.spec.replicas directly.
2015-11-25 11:26:40 +01:00
Madhusudan.C.S
e3a26bfea6
Implement e2e test for node out of disk condition.
...
This is a second attempt at this commit and it fixes the cause for its
flakiness in the first attempt.
The ability to SSH into individual nodes, described by api.Node, and running
commands on them appears to be useful for other e2e tests too. So, move
issueSSHCommand utility function to e2e util file.
Also, modify waitForNodeToBe e2e util function to take any node condition. The
current implementation only takes api.NodeReady condition into consideration.
This change makes the function take any node condition.
2015-11-25 02:12:29 -08:00
Brad Erickson
53172a5356
Minion->Node rename: NUM_NODES
2015-11-25 00:45:10 -08:00
Brad Erickson
d1dbeb98a0
Minion->Node rename: NUM_NODES_BKP, NUM_NODES_PARALLEL
2015-11-25 00:45:09 -08:00
Brad Erickson
bd06c19aa8
Minion->Node rename: NODE_SIZE
2015-11-25 00:45:09 -08:00
Brad Erickson
fc04b55088
Minion->Node rename: NODE_NAMES, NODE_NAME, NODE_PORT
2015-11-25 00:45:09 -08:00
Brad Erickson
83ed2fa22e
Minion->Node rename: NODE_DISK_SIZE, NODE_DISK_TYPE, NODE_HOSTNAME, etc
...
NODE_IDS
NODE_ID
NODE_IMAGE_PROJECT
NODE_IMAGE
2015-11-25 00:45:09 -08:00
Brad Erickson
6b91b45eff
Minion->Node rename: IAM_PROFILE_NODE, KUBE_ENABLE_NODE_PUBLIC_IP, etc
...
KUBE_GCE_NODE_IMAGE, KUBE_GCE_NODE_PROJECT, KUBEMARK_NUM_NODES
2015-11-25 00:43:51 -08:00
Prashanth Balasubramanian
9aa0efa393
Turn flannel off by default
2015-11-25 09:43:48 +01:00
Prashanth Balasubramanian
ad2d3d4c20
Docs etc
2015-11-25 09:42:59 +01:00
Piotr Szczesniak
ff276a74ed
Re-enabled GCE L7 load balancer e2e
2015-11-25 09:38:41 +01:00
Phillip Wittrock
ec5ecb18fa
Initial Pod e2e test
2015-11-24 15:40:16 -08:00
Janet Kuo
c0c02c95c4
kubectl run to produce deployment and job
2015-11-24 10:21:31 -08:00
k8s-merge-robot
683e908f0a
Merge pull request #17265 from gambol99/rj/node_labels
...
Auto commit by PR queue bot
2015-11-24 06:55:31 -08:00
Marcin Wielgus
a2299253cf
Merge pull request #17718 from piosz/hpa-fix
...
Yet another try to enable HPA e2e tests for 1.1 release
2015-11-24 14:18:43 +01:00
k8s-merge-robot
c4bedfbf32
Merge pull request #17298 from caesarxuchao/escape-double-dollar
...
Auto commit by PR queue bot
2015-11-24 04:37:59 -08:00
k8s-merge-robot
3117fa472d
Merge pull request #17610 from ixdy/resource-check
...
Auto commit by PR queue bot
2015-11-24 04:13:35 -08:00
k8s-merge-robot
0dbadda69e
Merge pull request #17330 from derekwaynecarr/free_mem
...
Auto commit by PR queue bot
2015-11-24 03:42:27 -08:00
Piotr Szczesniak
61224c76f6
Yet another try to enable HPA e2e tests for 1.1 release
2015-11-24 12:14:33 +01:00
k8s-merge-robot
949cf9e9da
Merge pull request #17180 from mesosphere/skipped-cleanup
...
Auto commit by PR queue bot
2015-11-23 21:04:18 -08:00
Chao Xu
21d8ad3a36
escape $$ in asciidoc when generating api-reference pages
2015-11-23 14:47:17 -08:00
krousey
de82763ce1
Merge pull request #17509 from spxtr/verify-tests
...
Verify that tests in Jenkins match those in e2e.sh
2015-11-23 14:46:32 -08:00
Brendan Burns
d2dbe56820
Add linux/arm to the list of server builds
2015-11-23 13:55:56 -08:00
Karl Isenberg
2d3c3e1d0b
Cleanup e2e tags
...
- Remove "Suite" from e2e tag names
- Move grouping e2e tags to the front of the test, describe or context name
- Move Conformance e2e tags to the end of test names (test specific)
- Move Skipped e2e tags to the end of names, but to as high a context as applicable
2015-11-23 13:42:12 -08:00
Karl Isenberg
725155b8e9
Skip [Skipped] tests when testing for conformance
...
- Allows tests to be marked for future conformance
2015-11-23 13:40:39 -08:00
Isaac Hollander McCreery
bb7dc38f8b
Add CURRENT_RELEASE_VERSION to e2e.sh, again, more slowly
2015-11-23 11:14:00 -08:00
k8s-merge-robot
336c74710c
Merge pull request #17260 from pwittrock/node_e2e_tests
...
Auto commit by PR queue bot
2015-11-23 10:34:19 -08:00
Jeff Lowdermilk
e8920ebdd4
Re-add Autoscaling Suite to GKE default skip list
...
We don't want to run this on every GKE test job, just the
continuous build.
2015-11-23 09:25:41 -08:00
Sergiusz Urbaniak
9eae47c6e6
scheduler: implement role awareness
2015-11-23 17:27:14 +01:00
Jerzy Szczepkowski
e410c2e0fd
Revert "Add CURRENT_RELEASE_PUBLISHED_VERSION to e2e.sh"
2015-11-23 16:26:40 +01:00
Jerzy Szczepkowski
d6e27d0620
Merge pull request #17639 from piosz/hpa-e2e
...
Enabled HPA e2e tests for 1.1 release
2015-11-23 15:08:59 +01:00
k8s-merge-robot
7c2befe6df
Merge pull request #17573 from wonderfly/blacklist_monitoring_test_for_trusty
...
Auto commit by PR queue bot
2015-11-23 05:31:03 -08:00
k8s-merge-robot
4cb0beeefd
Merge pull request #17392 from jlowdermilk/e2e-clean-slate
...
Auto commit by PR queue bot
2015-11-23 03:19:24 -08:00
Piotr Szczesniak
0d105ad548
Enabled HPA e2e tests for 1.1 release
2015-11-23 10:22:13 +01:00
Isaac Hollander McCreery
6fd986065b
Merge pull request #17539 from ihmccreery/current-release-published-version
...
Add CURRENT_RELEASE_PUBLISHED_VERSION to e2e.sh
2015-11-22 21:23:46 -08:00
Isaac Hollander McCreery
d4dff2a31d
Add CURRENT_RELEASE_PUBLISHED_VERSION
2015-11-22 12:50:25 -08:00
k8s-merge-robot
6d2b92a0be
Merge pull request #17269 from janetkuo/autoscale-deployments
...
Auto commit by PR queue bot
2015-11-21 22:23:23 -08:00
k8s-merge-robot
1a69efc3c0
Merge pull request #17585 from ncdc/fix-test-cmd
...
Auto commit by PR queue bot
2015-11-21 07:30:25 -08:00
Jeff Grafton
0a465da391
Diff GCP resource usage in soak tests too
2015-11-20 17:25:23 -08:00
k8s-merge-robot
0e5d3e867f
Merge pull request #17388 from aveshagarwal/master-script-issue
...
Auto commit by PR queue bot
2015-11-20 17:08:07 -08:00
Daniel Wang
ed508e9bf0
Jenkins: Skip a flaky test on Trusty release job
...
The monitoring test, i.e., "Monitoring should verify monitoring pods and all
cluster nodes are available on influxdb using heapster" has been failing on the
Trusty release job for a while and it is known that it won't be fixed until the
next kubernetes release, see https://github.com/google/cadvisor/issues/947 for
more details.
Let's blacklist it so that the release job can be used to catch other real
issues.
2015-11-20 14:05:20 -08:00
Andy Goldstein
f9a018d454
Add missing kube_flags to kubectl scale in hack/test-cmd.sh
2015-11-20 15:28:14 -05:00
Joe Finney
0ff848b959
Verify that tests in Jenkins match those in e2e.sh.
...
This is a temporary solution in lieu of a more robust infrastructure.
The test is up and running on Jenkins as kubernetes-verify-jenkins-jobs.
It fails as long as there are tests in Jenkins that aren't in e2e.sh and
vice versa, excluding specified exceptions and non-kubernetes tests.
2015-11-20 11:51:53 -08:00
k8s-merge-robot
ac65782e03
Merge pull request #17121 from mikedanese/kube-proxy-static
...
Auto commit by PR queue bot
2015-11-20 07:19:26 -08:00
Nikhil Jindal
b12550273e
Merge pull request #17530 from nikhiljindal/deploymente2eFlaky
...
Removing a deployment test from flaky tests list
2015-11-19 14:15:54 -08:00
Jeff Lowdermilk
e4f7db65af
Re-add slow tests to gke-ci-reboot filter
...
Reboot tests are already slow, should only run fast tests
in this job.
2015-11-19 13:45:22 -08:00
nikhiljindal
afd3095c04
Removing a deployment test from flaky
2015-11-19 13:41:10 -08:00
Jeff Lowdermilk
dfb63a72cc
Update test filters now that 1.1 is default in GKE
2015-11-19 10:52:33 -08:00
derekwaynecarr
a043f3c86e
Parallel build logic should work against available memory, not total memory
2015-11-19 13:27:30 -05:00
k8s-merge-robot
3dd04f9240
Merge pull request #17465 from wonderfly/separate_slow_jobs_for_trusty
...
Auto commit by PR queue bot
2015-11-19 08:17:05 -08:00
Marcin Wielgus
feb439c67c
Revert "e2e test for node out of disk conditions"
2015-11-19 14:06:12 +01:00
k8s-merge-robot
5b2e339b24
Merge pull request #16398 from madhusudancs/out-of-disk-e2e
...
Auto commit by PR queue bot
2015-11-18 21:49:22 -08:00
Mike Danese
1d9d11c836
run kube-proxy in a static pod
2015-11-18 16:52:10 -08:00
Rohith
c2526c93fa
- adding the -node-label flag to the kubelet which allows for a initial tagging / labelling of the node on cluster registration
...
- the labels can come from a series of key=pair value or file:///path_to_file which contains key pairs
2015-11-18 23:20:58 +00:00
Abhi Shah
704eac4bb8
Merge pull request #17450 from erictune/codecgen-osx-fix
...
Replace readlink in update-codecgen for OSX
2015-11-18 15:05:59 -08:00
Abhi Shah
7d95a4ce05
Merge pull request #17358 from pmorie/omitempty-space
...
Add description check for spaces around omitempty directive
2015-11-18 14:59:06 -08:00
Daniel Wang
afa12c58af
Jenkins: Run slow tests for Trusty in dedicated jobs
...
Take slow tests out of release jobs because they are flaky and not as critical
as the rest of the release tests.
Also update the name of the release job for Trusy beta to
kubernetes-e2e-gce-trusty-beta-release.
2015-11-18 14:51:29 -08:00
Phillip Wittrock
49e1baa313
Test runner harness for node e2e tests
2015-11-18 13:05:01 -08:00
Eric Tune
761a425b92
Replace readlink in update-codecgen for OSX
...
OS X does not have `readlink -f`
2015-11-18 10:34:32 -08:00
Jeff Lowdermilk
e95cf1d109
Delete orphaned namespaces at e2e start for soak tests
...
This will help prevent soak clusters getting hosed if a test is
interrupted without cleaning up resources.
2015-11-18 09:57:19 -08:00
Jeff Grafton
e0d447bf53
Use NODE_NAME in addition to EXECUTOR_NUMBER in PR Jenkins
2015-11-17 21:36:58 -08:00
k8s-merge-robot
01656fd9a2
Merge pull request #15950 from sdminonne/mt_loop_initial_content
...
Auto commit by PR queue bot
2015-11-17 17:43:24 -08:00
k8s-merge-robot
2afe5178ca
Merge pull request #17383 from mikedanese/get-build-cleanup
...
Auto commit by PR queue bot
2015-11-17 16:36:51 -08:00
Madhusudan.C.S
706d768e20
Implement e2e test for node out of disk condition.
...
The ability to SSH into individual nodes, described by api.Node, and running
commands on them appears to be useful for other e2e tests too. So, move
issueSSHCommand utility function to e2e util file.
Also, modify waitForNodeToBe e2e util function to take any node condition. The
current implementation only takes api.NodeReady condition into consideration.
This change makes the function take any node condition.
2015-11-17 13:19:32 -08:00
Avesh Agarwal
920f32eaa4
Set execute permission for hack/build-ui.sh as other script files.
2015-11-17 15:37:58 -05:00
Mike Danese
91de3a12a1
cleanup some nits in hack/get-build.sh
2015-11-17 11:20:17 -08:00
Paul Morie
1f9d605096
Add description check for spaces around omitempty directive
2015-11-17 14:01:28 -05:00
k8s-merge-robot
e09e30d53e
Merge pull request #17254 from jlowdermilk/gke-ci-reboot
...
Auto commit by PR queue bot
2015-11-17 05:13:20 -08:00
k8s-merge-robot
cae1f4095a
Merge pull request #17367 from piosz/deployment-e2e
...
Auto commit by PR queue bot
2015-11-17 03:10:02 -08:00
Piotr Szczesniak
d246e7833b
Enabled HPA for deployment e2e
2015-11-17 11:40:43 +01:00
Piotr Szczesniak
e53eeb551a
Enabled HPA e2e tests for release 1.1
2015-11-17 10:57:30 +01:00
k8s-merge-robot
b7eb2caf5e
Merge pull request #17321 from wonderfly/master
...
Auto commit by PR queue bot
2015-11-16 22:21:32 -08:00
k8s-merge-robot
885134a855
Merge pull request #17328 from mikedanese/unbount-get-build
...
Auto commit by PR queue bot
2015-11-16 17:05:51 -08:00
Mike Danese
cd79c6c096
fix unbound variable error in hace/get-build.sh
2015-11-16 11:49:47 -08:00
Jeff Lowdermilk
d96848693e
Don't use ginkgo.focus for ci-reboot
...
focus is whitelist, we want to run unflaky, unslow tests along with
reboot to verify cluster functionality before/after.
2015-11-16 10:51:03 -08:00
Daniel Wang
f83418bdb7
jenkins: Skip a flaky test for Trusty release jobs
...
The "Kubelet regular resource usage tracking over 30m0s with 0 pods per node"
was broken and fixed after the v1.1.1 cut, by pull request #14603 . Trusty
release jobs always pin to the latest release version of k8s, so we would have
to wait until next 1.1 release to pick up the fix. Temporarily skipping that
test for Trusty jobs now.
2015-11-16 09:58:57 -08:00
Salvatore Dario Minonne
e2c315ee99
modifying readFileContentInLoop to display iteratively file content and eventually check initial content
2015-11-14 22:52:34 +01:00
Janet Kuo
8e99bae7ec
Support autoscale deployments
2015-11-13 23:33:55 -08:00
Jeff Grafton
896d04d5f3
Install libapparmor1 in kubekins-test image
2015-11-13 17:17:52 -08:00
k8s-merge-robot
6b6d5096af
Merge pull request #17177 from jayunit100/net-enable-e2e
...
Auto commit by PR queue bot
2015-11-13 02:28:40 -08:00
jay vyas
4617ecb72c
Remove networking from flakeys
2015-11-12 16:55:40 -05:00
Daniel Wang
8c0f77e410
Jenkins: pin to v1.1.1 for trusty release tests
2015-11-12 13:53:18 -08:00
k8s-merge-robot
11511e9020
Merge pull request #17020 from timothysc/symbol-check
...
Auto commit by PR queue bot
2015-11-12 01:51:40 -08:00
k8s-merge-robot
ff64185c46
Merge pull request #17070 from jlowdermilk/gke-soak
...
Auto commit by PR queue bot
2015-11-12 01:51:28 -08:00
k8s-merge-robot
f456d76b9b
Merge pull request #17122 from jlowdermilk/gke-ci-reboot
...
Auto commit by PR queue bot
2015-11-12 00:23:34 -08:00
Jeff Lowdermilk
87895fdb9a
Add config for gke soak deploy/test jobs
2015-11-11 14:54:42 -08:00
Prashanth Balasubramanian
fe5717916b
Disable l7 test on soak continuous
2015-11-11 10:50:24 -08:00
Jeff Lowdermilk
1e7d720972
fix gke-ci-reboot filter
2015-11-11 10:07:36 -08:00
k8s-merge-robot
33a5874d11
Merge pull request #17069 from jlowdermilk/gke-1.1-features
...
Auto commit by PR queue bot
2015-11-10 18:41:17 -08:00
k8s-merge-robot
41d2d19f33
Merge pull request #16759 from ixdy/jenkins-configs
...
Auto commit by PR queue bot
2015-11-10 17:37:40 -08:00
Jeff Lowdermilk
58c0830726
Export MINION_SIZE as MACHINE_TYPE for gke tests
2015-11-10 16:37:58 -08:00
Jeff Lowdermilk
dd9eabd5f2
jenkins config for testing 1.1 features on gke
2015-11-10 11:23:58 -08:00
Daniel Wang
d95d4666c4
jenkins: Add jobs for Trusty and Trusty Beta
...
Start running continuous tests with Trusty images on minions. These tests pin at
a k8s release version, and are run against the latest Trusty images.
2015-11-10 09:32:13 -08:00
Zichang Lin
51dd067f5f
Update cassandra example according to config best practices
2015-11-10 14:19:22 +08:00
Jeff Grafton
622cc4d594
Create Jenkins projects for scalability tests on 1.1
2015-11-09 18:15:38 -08:00
Alex Robinson
b8c5abdca3
Merge pull request #17005 from wojtek-t/update_codecgen_docs
...
Update comment in hack/update-codecgen.sh script
2015-11-09 15:22:01 -08:00
Timothy St. Clair
b577dbd1d0
Add very simple symbol checking to single monolithic binary
...
to prevent binding in other testing symbols by accident.
2015-11-09 11:19:41 -06:00
k8s-merge-robot
9fe755dea6
Merge pull request #16832 from janetkuo/kubectl-apply-create
...
Auto commit by PR queue bot
2015-11-09 03:56:30 -08:00
Wojciech Tyczynski
5e9fe7abff
Fix Kubemark tests by not gathering resource usage data
2015-11-09 11:45:07 +01:00
Wojciech Tyczynski
e3e0270192
Update doc in codecgen script
2015-11-09 09:14:59 +01:00
Janet Kuo
37f35d9342
Make kubectl apply create resources if not found
2015-11-08 22:47:40 -08:00
k8s-merge-robot
da46dab080
Merge pull request #16940 from caesarxuchao/dont-update-api-reference
...
Auto commit by PR queue bot
2015-11-07 06:59:12 -08:00
Chao Xu
bd302d9534
address comments and fix
2015-11-06 17:16:48 -08:00
Chao Xu
4e4c67c624
address host dir vs docker dir issue
2015-11-06 17:04:10 -08:00
Janet Kuo
a6a64820d7
Make generation of the apply annotation optional
2015-11-06 15:08:50 -08:00
Chao Xu
358221f9fd
Don't update api-reference docs if the only changes are the timestamps
2015-11-06 11:37:22 -08:00
Piotr Szczesniak
e450ea9aab
Fixed suites in which autoscaling test should be
2015-11-06 14:34:29 +01:00
Marcin Wielgus
53ee314457
Temporary disable autoscaling in gce-slow test suite
2015-11-06 11:05:01 +01:00
k8s-merge-robot
0b183f43fd
Merge pull request #16574 from hurf/stop_doc
...
Auto commit by PR queue bot
2015-11-05 19:43:21 -08:00
Jeff Lowdermilk
721eb6e7be
Run hpa, GCE L7 tests in gce-disruptive-1.1
2015-11-05 17:44:44 -08:00
k8s-merge-robot
1831a057f1
Merge pull request #16694 from jbeda/update-etcd
...
Auto commit by PR queue bot
2015-11-05 03:27:26 -08:00
k8s-merge-robot
ecb394a5e0
Merge pull request #16788 from wojtek-t/fix_codecgen
...
Auto commit by PR queue bot
2015-11-04 23:19:56 -08:00
k8s-merge-robot
38955172ea
Merge pull request #16805 from goltermann/subnet-jenkins
...
Auto commit by PR queue bot
2015-11-04 23:00:35 -08:00
k8s-merge-robot
4b5c39df68
Merge pull request #16746 from jlowdermilk/gke-job-e2e
...
Auto commit by PR queue bot
2015-11-04 21:25:28 -08:00
Isaac Hollander McCreery
cdf138a8e7
Merge pull request #16822 from ihmccreery/gke-test-server-version
...
Use server version instead of release/latest in gke-test Jenkins job
2015-11-04 16:35:25 -08:00
k8s-merge-robot
ca332a394c
Merge pull request #16048 from bprashanth/IngressE2E
...
Auto commit by PR queue bot
2015-11-04 16:25:41 -08:00
Isaac Hollander McCreery
5a0efb28ab
Use server version instead of release/latest in gke-test Jenkins job
2015-11-04 15:32:34 -08:00
goltermann
5c4ddc44fd
Add testing of GKE using GCE Subnetworks to Jenkins.
2015-11-04 14:42:25 -08:00
Isaac Hollander McCreery
9baf681fa4
Use upgrade logic from the version we're upgrading to; fixes #16804
2015-11-04 12:54:36 -08:00
Joe Beda
993c1ee222
Update etcd to 2.2.1
2015-11-04 12:26:57 -08:00
Wojciech Tyczynski
2e9da5e65b
Fix unstable hack/update-codecgen.sh output
2015-11-04 20:40:48 +01:00
k8s-merge-robot
f64780d6eb
Merge pull request #16526 from aveshagarwal/master-selinux-issue-with-local-up-cluster
...
Auto commit by PR queue bot
2015-11-04 05:31:21 -08:00
k8s-merge-robot
456220ff1a
Merge pull request #16637 from lavalamp/go2idl.2
...
Auto commit by PR queue bot
2015-11-04 03:33:27 -08:00
k8s-merge-robot
78c8c9426f
Merge pull request #16703 from ixdy/gcs-upload-print-url
...
Auto commit by PR queue bot
2015-11-04 02:29:21 -08:00
Wojciech Tyczynski
e565477795
Merge pull request #16731 from deads2k/fix-update-codec
...
make update-codecgen.sh more predictable
2015-11-04 10:46:40 +01:00
Jeff Grafton
10bcd3ef36
Don't fail if the console log doesn't exist.
2015-11-03 18:03:59 -08:00
Jeff Grafton
6bd450ba05
Update comment on how to use script
2015-11-03 18:01:24 -08:00
Jeff Grafton
f03b3c9171
Print out URL of where to find uploaded logs and artifacts.
2015-11-03 18:01:24 -08:00
Jeff Lowdermilk
9ca75257bc
Enable job e2e tests for GKE
...
will need cherrypick onto 1.1
2015-11-03 16:54:51 -08:00
Daniel Smith
b3fde3beed
sort known flags
2015-11-03 15:15:56 -08:00
Nikhil Jindal
34cbe48736
Merge pull request #16690 from nikhiljindal/apiDeclNotFound
...
Fixing missing swagger spec for apis/extensions
2015-11-03 14:36:31 -08:00
Avesh Agarwal
c113737a1d
Apply correct SELinux label to kubelet volume dir in local cluster.
2015-11-03 15:00:43 -05:00
deads2k
c8d8c390cb
make update-codecgen.sh more predictable
2015-11-03 10:03:06 -05:00
k8s-merge-robot
9b953d75d2
Merge pull request #16111 from mesosphere/sttts-sandbox-overlay
...
Auto commit by PR queue bot
2015-11-03 03:00:57 -08:00
Dr. Stefan Schimanski
4062e2be2f
Add executor sandbox overlay mechanism to distribute nsenter and socat
2015-11-03 11:27:40 +01:00
k8s-merge-robot
f371b3d891
Merge pull request #16621 from timstclair/metrics-lite
...
Auto commit by PR queue bot
2015-11-03 02:13:19 -08:00
Mike Danese
5e64590f4a
renable enable var to correct name and only use it when needed
2015-11-02 14:51:04 -08:00
nikhiljindal
326d333777
Fixing and running update-swagger-spec
2015-11-02 14:28:39 -08:00
Prashanth Balasubramanian
3943c5afe2
Ingress e2e
2015-11-02 14:05:29 -08:00
Tim St. Clair
5cd5b80f9e
Set up new "metrics" API group.
...
This commit only adds 2 placeholder structs to the API, for the purposes
of separating the API group setup from the API discussion.
2015-11-02 09:49:02 -08:00
Piotr Szczesniak
fcbf1c1012
Merge pull request #16520 from gmarek/fix-kubemark
...
Don't delete namespace after kubemark tests, as cluster will be torn …
2015-11-02 10:13:37 +01:00
Mike Danese
9bdb860eeb
add apigroup installer and tests
2015-10-31 11:42:38 -07:00
Mike Danese
e6d3b47eb0
add componentconfig api group to autogen stuff
2015-10-31 11:42:38 -07:00
Jeff Lowdermilk
ac18c46d07
Test config for gke-1.1 job
2015-10-30 16:42:40 -07:00
Alex Robinson
5d037ef484
Merge pull request #16625 from bprashanth/slb
...
Skip serviceloadbalancer e2e on GKE
2015-10-30 16:35:16 -07:00
Prashanth Balasubramanian
bf6a414c5f
Skip serviceloadbalancer e2e on GKE
2015-10-30 15:14:04 -07:00
Jeff Grafton
623cbb5bd6
Only try to upload artifacts if they really exist.
2015-10-30 14:51:35 -07:00
Jeff Lowdermilk
39965b67ce
Move branch-specific test env out of the kubekins-test image
2015-10-30 11:12:47 -07:00
hurf
ce35bb4208
Remove trace of "kubectl stop"
...
Remove doc and use of "kubectl stop" since it's deprecated.
2015-10-30 14:12:20 +08:00
hurf
29a0fe9032
Display controllers along with type when describing a pod
...
There're more controllers than replication controller, the patch
displays annotation item with key "kuberntetes.io/created-by" in
the form of "Controllers: type/name".
2015-10-30 11:16:46 +08:00
Mike Danese
88008de96b
Merge pull request #16459 from mikedanese/enable-exp
...
enable deployment and daemonset in gce upgrade tests
2015-10-29 20:05:20 -07:00
Mike Danese
d28d1344ae
Merge pull request #16533 from ihmccreery/upgrade-test-fixes
...
Jenkins upgrade job fixes
2015-10-29 16:43:11 -07:00
Jeff Lowdermilk
f03a04c097
Remove -t in gotest-dockerized.sh
2015-10-29 14:16:52 -07:00
Isaac Hollander McCreery
0f5bd2e739
Set E2E_SET_CLUSTER_API_VERSION properly for GKE jobs, build against ci/latest-1.0 instead of release/latest-1.0
2015-10-29 13:22:25 -07:00
k8s-merge-robot
0d29759b26
Merge pull request #16287 from jlowdermilk/fix-jenkins-test-image
...
Auto commit by PR queue bot
2015-10-29 12:29:28 -07:00
Jeff Lowdermilk
04e891c7d3
Modify jenkins unit/integration scripts to work on branches
...
Also add a makefile. This will need a cherrypick onto 1.0,1.1
with edits to hack/jenkins/test-dockerized.sh to run branch-specific
test scripts.
Also had to modify hack/verify-api-reference.sh to handle volume mount
path peculiarity when doing `docker run -v` inside a container started
with `docker run -v`. See associated comment in
hack/jenkins/test-dockerized.sh
2015-10-29 11:08:35 -07:00
gmarek
ce3317cb9f
Don't delete namespace after kubemark tests, as cluster will be torn down either way
2015-10-29 18:53:56 +01:00
k8s-merge-robot
f2208a9855
Merge pull request #16269 from gmarek/delete-namespace
...
Auto commit by PR queue bot
2015-10-29 02:34:31 -07:00
Wojciech Tyczynski
0fa259f329
Increase logs verbosity in scalability tests.
2015-10-29 10:12:44 +01:00
k8s-merge-robot
1ef85cd78c
Merge pull request #16329 from ixdy/resource-check
...
Auto commit by PR queue bot
2015-10-29 02:02:36 -07:00
k8s-merge-robot
eda8e8b55f
Merge pull request #16415 from wojtek-t/fix_update_codecgen_script
...
Auto commit by PR queue bot
2015-10-29 00:51:07 -07:00
Isaac Hollander McCreery
4dd0618b38
Use k8s-jkns-upgrade-fixed-1 instead of kubernetes-jenkins-gke-upgrade for GKE stable-latest job
2015-10-28 15:59:36 -07:00
Mike Danese
3343522546
enable deployment and daemonset in gce upgrade tests
2015-10-28 15:28:27 -07:00
Isaac Hollander McCreery
2ab10c4772
stable-latest GKE upgrade jobs
2015-10-28 12:36:28 -07:00
Wojciech Tyczynski
adb9685fe9
Fix hack/update-codecgen.sh script
2015-10-28 09:35:43 +01:00
k8s-merge-robot
d5e680afbb
Merge pull request #16386 from ihmccreery/version-skew-step6
...
Auto commit by PR queue bot
2015-10-27 21:27:59 -07:00
k8s-merge-robot
3850579313
Merge pull request #16207 from janetkuo/kubectl-apply-tests
...
Auto commit by PR queue bot
2015-10-27 20:29:17 -07:00
k8s-merge-robot
77f3c7ebf5
Merge pull request #16363 from ashcrow/disable-flake-16285
...
Auto commit by PR queue bot
2015-10-27 17:14:33 -07:00
Daniel Smith
6219b50280
Merge pull request #16160 from kargakis/windows-fixes-for-edit
...
edit: Windows fixes
2015-10-27 15:44:26 -07:00
k8s-merge-robot
908edd2827
Merge pull request #15943 from gmarek/grab-profiles
...
Auto commit by PR queue bot
2015-10-27 15:30:15 -07:00
Daniel Smith
e1901bf891
Merge pull request #16196 from erictune/job-e2e-fix
...
Fix e2e test flakes.
2015-10-27 15:04:57 -07:00
Isaac Hollander McCreery
749c036de5
Don't check version skew on step6 of upgrade jobs
2015-10-27 14:01:47 -07:00
Daniel Smith
b7ecbbf744
Merge pull request #16378 from quinton-hoole/2015-10-27-promote-PD-e2e
...
Promote PD tests out of flaky.
2015-10-27 13:13:29 -07:00
k8s-merge-robot
8aa993266c
Merge pull request #15172 from justinsb/aws_integration_tests
...
Auto commit by PR queue bot
2015-10-27 12:46:25 -07:00
Quinton Hoole
b548a8617e
Promote PD tests out of flaky.
...
Fixes #15382 , #16377 .
2015-10-27 10:36:08 -07:00
Steve Milner
f7449ce3fa
flake: Disable flaky service e2e per #16285
2015-10-27 09:26:34 -04:00
Jerzy Szczepkowski
154923221f
Merge pull request #15951 from kargakis/factory-expose-method
...
Make CanBeExposed and CanBeAutoscaled composable
2015-10-27 11:04:40 +01:00
Jerzy Szczepkowski
bbee6cfcd7
Merge pull request #15461 from kargakis/relax-exposing-multiport-objects
...
expose: Enable exposing multiport objects
2015-10-27 10:25:54 +01:00
gmarek
a087a418c1
Add a script to automatically grab profiles from running components
2015-10-27 09:42:27 +01:00
gmarek
0150d87a73
Add an option to not delete a namespace after e2e test
2015-10-27 09:23:50 +01:00
Jeff Grafton
253254fc80
Isolate Jenkins GKE jobs into separate Google Cloud projects
2015-10-26 16:57:56 -07:00
Janet Kuo
4281497869
Test that kubectl apply update annotation only if apply is already called
2015-10-26 15:21:34 -07:00
Eric Tune
40a33dcc7e
Fix e2e test flakes.
...
Makes number of failures per pod fixed at 1, for the RestartOnFailure
case, which prevents Kubelet restart backoff, which causes test timeout.
For RestartNever tests, it keeps using the random success/failure.
Fixes #15389 .
Renables previously flaky e2e.
2015-10-26 12:02:04 -07:00
gmarek
7fc9b06f5d
Fix type in e2e.go
2015-10-26 12:14:45 +01:00
gmarek
1ceb31ffaa
Add 500 node kubemark test to Jenkins
2015-10-26 11:57:55 +01:00
k8s-merge-robot
03583fb8dc
Merge pull request #16017 from wojtek-t/godeps_codecgen_in_verify
...
Auto commit by PR queue bot
2015-10-26 03:02:11 -07:00
feisky
13dce74adb
Gendocs for docs/admin/kube-*
2015-10-25 19:24:23 +08:00
Abhi Shah
354b1f9c24
Merge pull request #15860 from mikedanese/ds-promote
...
actually promote daemonset simple test out of flaky and skip all daemonset tests in gke
2015-10-24 16:05:06 -07:00
kargakis
4befdf5b49
Make CanBeExposed and CanBeAutoscaled composable
2015-10-24 20:07:35 +02:00
kargakis
73713ce268
edit: Windows fixes
...
Contains the following fixes for Windows users of kubectl edit:
* Defaults to notepad as the default Windows editor
* Uses CRLF line endings
* Ensures a file lock is freed
2015-10-24 17:06:49 +02:00
k8s-merge-robot
46a6c68c3a
Merge pull request #16159 from ashcrow/api-ref-docs
...
Auto commit by PR queue bot
2015-10-24 05:34:43 -07:00
k8s-merge-robot
6d10b76b11
Merge pull request #15980 from janetkuo/kubectl-edit-updateapplyannotation
...
Auto commit by PR queue bot
2015-10-24 02:48:22 -07:00
k8s-merge-robot
6600fbcf7d
Merge pull request #15854 from thockin/service-e2e-not-flaky
...
Auto commit by PR queue bot
2015-10-24 00:25:52 -07:00
Saad Ali
6db9d462b0
Merge pull request #16140 from jlowdermilk/jenkins-test-image
...
Dockerfile for jenkins build/test
2015-10-23 12:44:20 -07:00
Jeff Lowdermilk
150ed6a429
Dockerfile for jenkins build/test
...
To allow jenkins to run verify/unit/cmd/integration tests in a
container.
2015-10-23 10:12:35 -07:00
Steve Milner
6ee5c0ec20
Fixes for update-api-reference-docs.sh
2015-10-23 11:56:24 -04:00
Filip Grzadkowski
edd10d8a83
Merge pull request #15914 from vishh/serialize-pull
...
make kubelet image pulls serialized by default.
2015-10-23 14:04:23 +02:00
k8s-merge-robot
29c2706ba0
Merge pull request #15797 from ArtfulCoder/udpTimeoutFlag
...
Auto commit by PR queue bot
2015-10-22 22:52:40 -07:00
Janet Kuo
f5adda3d81
Fixed the error for kubectl edit multiple resources
2015-10-22 22:35:15 -07:00
Vishnu kannan
0df4b46d4c
Adding a kubelet flag to optionally enable parallel image pulls.
2015-10-22 17:19:51 -07:00
Jeff Lowdermilk
7c3c0485f7
Remove nonblocking on flock, update comment.
2015-10-22 13:38:18 -07:00
Filip Grzadkowski
cc62dd9b9b
Merge pull request #16001 from ixdy/resource-check
...
Fail Jenkins if GCP resources are leaked
2015-10-22 14:46:49 +02:00
k8s-merge-robot
0c4bfcff02
Merge pull request #16072 from ixdy/jenkins-configs
...
Auto commit by PR queue bot
2015-10-22 01:09:47 -07:00
Brendan Burns
7ba06c7f82
fix e2e.sh again...
2015-10-21 21:05:02 -07:00
Justin Santa Barbara
636a4a15ac
AWS: Add kubernetes-e2e-aws job to hack/jenkins/e2e.sh
...
We'll probably have to do something more scalable than duplicate every
GCE job, but this is probably the most important job to have.
2015-10-21 21:59:34 -04:00
Jeff Lowdermilk
bf57290869
Revert the flock command to the working version and add a warning
...
This is the second time this command has been "fixed" resulting in
half the builds breaking. The comment explains why it should be the
way it is, with a warning for future readers.
2015-10-21 17:42:13 -07:00
Abhishek Shah
d172ca6986
Added UdpIdleTimeout flag
2015-10-21 17:25:35 -07:00
Jeff Grafton
39d94b5b16
Make 1.1 GCE e2e and soak builds use the correct CI-build release
2015-10-21 15:56:52 -07:00
Jeff Lowdermilk
d4de35e177
Merge pull request #15921 from brendandburns/fix2
...
Add a --expose flag to kubectl run
2015-10-21 13:17:26 -07:00
Jeff Lowdermilk
572db1849c
Merge pull request #15906 from nikhiljindal/updateAPIReference
...
Adding a script to verify api reference docs are upto date
2015-10-21 13:15:36 -07:00
k8s-merge-robot
ba39496eb4
Merge pull request #15886 from ixdy/e2e-release-soak
...
Auto commit by PR queue bot
2015-10-21 03:12:16 -07:00
Marek Grabowski
fdd2677d23
Merge pull request #15941 from piosz/hpa-cleanup
...
Removed flag ENABLE_HORIZONTAL_POD_AUTOSCALER which is no longer used
2015-10-21 12:09:41 +02:00
Wojciech Tyczynski
119b958cca
codecgen from Godeps in scripts
2015-10-21 09:53:20 +02:00
gmarek
a283a06fae
Remove gcloud components update preview from jenkins/e2e.sh
2015-10-21 08:42:22 +02:00
Marek Grabowski
a5bedd4cf4
Revert "Revert "Fix 'flock' command in hack/jenkins/e2e.sh""
2015-10-21 08:36:07 +02:00
Brendan Burns
54fd60727e
add a --expose flag to kubectl run
2015-10-20 20:21:09 -07:00
Jeff Grafton
4addd0770d
Fail Jenkins if GCP resources are leaked
2015-10-20 19:51:24 -07:00
nikhiljindal
24dcc9bfae
Adding a script to verify api reference docs
2015-10-20 13:17:24 -07:00
k8s-merge-robot
37afbf6f33
Merge pull request #14587 from ixdy/jenkins-verify
...
Auto commit by PR queue bot
2015-10-20 13:01:16 -07:00
Jeff Lowdermilk
685c09fda0
Merge pull request #15896 from pmorie/mount-test-owner
...
Add ownership inspection to mount tester image
2015-10-20 11:53:56 -07:00
Mike Danese
7cbf249bf0
Merge pull request #15836 from wojtek-t/codecgen_from_godeps
...
Build codecgen from Godeps in update-codecgen.sh
2015-10-20 10:52:31 -07:00
Piotr Szczesniak
57a5f8d5a5
Removed flag ENABLE_HORIZONTAL_POD_AUTOSCALER which is no longer used
2015-10-20 13:59:00 +02:00
k8s-merge-robot
0888c2ef38
Merge pull request #15909 from caesarxuchao/use-local-swagger
...
Auto commit by PR queue bot
2015-10-20 04:06:11 -07:00
k8s-merge-robot
a66ab00f44
Merge pull request #15497 from zmerlynn/fix_cherry_pick
...
Auto commit by PR queue bot
2015-10-19 23:09:21 -07:00
Chao Xu
b47ea12a99
gen-swagger-docs now uses local swagger spec
2015-10-19 21:36:10 -07:00
k8s-merge-robot
345cda76b3
Merge pull request #15871 from mikedanese/upgrade-gce-1-to-11
...
Auto commit by PR queue bot
2015-10-19 19:35:56 -07:00
Paul Morie
2ff043e75f
Add ownership inspection to mount tester image
2015-10-19 18:42:07 -04:00
Jeff Grafton
1016b493df
Add Jenkins shell script to setup and run verification tests
2015-10-19 14:42:42 -07:00
Jeff Grafton
7b1d15ad58
Save config for gce weekly soak deploy and add release-1.1 gce soak
2015-10-19 14:34:36 -07:00
k8s-merge-robot
b896a66679
Merge pull request #15739 from JanetKuo/kubectl-autoscale
...
Auto commit by PR queue bot
2015-10-19 14:15:23 -07:00
Jeff Grafton
4cafa3e92d
Ignore _gopath in verify scripts
...
The _gopath directory is used in Jenkins to install extra dependencies,
and any files in it should be ignored by the various verification
scripts.
2015-10-19 14:09:23 -07:00
Mike Danese
92404e7cb6
add upgrade test between 1.0 and 1.1 for gce
2015-10-19 13:51:57 -07:00
Mike Danese
95b8394a22
Merge pull request #15861 from mikedanese/upgrade-num-minion
...
increase NUM_MINIONS for jenkins gce upgrade test
2015-10-19 12:01:12 -07:00
Mike Danese
ece5779f5a
increase NUM_MINIONS for jenkins gce upgrade test
2015-10-19 11:14:20 -07:00
Mike Danese
b8b35afaec
actually promote daemonset simple test out of flaky and skip all daemonset tests in gke
2015-10-19 11:11:20 -07:00
Janet Kuo
8105aa44a0
Implement kubectl autoscale
2015-10-19 09:59:22 -07:00
Tim Hockin
6a2d040070
Remove service tests from flaky lists after recent revamp
2015-10-19 09:57:52 -07:00
Wojciech Tyczynski
e86a1a6407
Build codecgen from Godeps in update-codecgen.sh
2015-10-19 18:30:39 +02:00
k8s-merge-robot
77207d75e1
Merge pull request #15667 from JanetKuo/kubectl-watch-list
...
Auto commit by PR queue bot
2015-10-19 06:28:35 -07:00
kargakis
7d0e691520
expose: Enable exposing multiport objects
...
The generated service will inherit all the ports from the exposed object.
2015-10-19 11:25:14 +02:00
k8s-merge-robot
67cb65d906
Merge pull request #15788 from caesarxuchao/gen-docs-extensions
...
Auto commit by PR queue bot
2015-10-18 18:02:09 -07:00
k8s-merge-robot
d3ca12f61b
Merge pull request #15053 from smarterclayton/stdin_once
...
Auto commit by PR queue bot
2015-10-17 00:03:32 -07:00
k8s-merge-robot
e12019c658
Merge pull request #15682 from smarterclayton/make_proxy_resync_longer
...
Auto commit by PR queue bot
2015-10-16 20:30:36 -07:00
Clayton Coleman
e9a465d635
Make kubectl run attach behave like docker run
...
Have stdin closed by default, can be left open with --leave-stdin-open.
Add e2e tests for the behavior.
2015-10-16 20:33:51 -04:00
k8s-merge-robot
b255e7c478
Merge pull request #15793 from ihmccreery/fix-push
...
Auto commit by PR queue bot
2015-10-16 17:02:10 -07:00
k8s-merge-robot
535090312f
Merge pull request #13180 from samsabed/backoff_e2e
...
Auto commit by PR queue bot
2015-10-16 13:33:36 -07:00
Isaac Hollander McCreery
ef3d56433b
Fix KUBE_TAR_URL issue and fix root cause; fixes #15738
2015-10-16 13:09:52 -07:00
Chao Xu
a3cbf49ea4
update the source code
2015-10-16 11:30:11 -07:00
Wojciech Tyczynski
07383950c3
Add scripts for updating autogenerated files.
2015-10-16 10:12:08 +02:00
k8s-merge-robot
90362394c1
Merge pull request #14454 from ixdy/e2e-upload-to-gcs
...
Auto commit by PR queue bot
2015-10-15 21:18:34 -07:00
Nikhil Jindal
c6b5f7ff5a
Merge pull request #15516 from nikhiljindal/runtimeConfig
...
Enable extensions/v1beta1 by default and allow runtimeConfig to support enabling/disabling specific resources
2015-10-15 20:16:54 -07:00
k8s-merge-robot
4708fdceda
Merge pull request #15729 from mikedanese/swv-fix
...
Auto commit by PR queue bot
2015-10-15 19:35:38 -07:00
k8s-merge-robot
558e7560ac
Merge pull request #15748 from fgrzadkowski/fix_verify
...
Auto commit by PR queue bot
2015-10-15 19:35:27 -07:00
Sam Abed
78979c77ce
backoff e2e tests
...
Signed-off-by: Sam Abed <samsabed@gmail.com>
2015-10-16 13:09:29 +11:00
Filip Grzadkowski
13079fb6d6
Fix update-generated-swagger-docs.sh
2015-10-16 02:15:15 +02:00
Isaac Hollander McCreery
a52fcc6f29
Add get-build to our packaged test files for upgrade-tests
2015-10-15 14:41:08 -07:00
nikhiljindal
39e461b7f9
Updating swagger spec to include the new extension resources that are enabled by default
2015-10-15 14:26:37 -07:00
k8s-merge-robot
5174ca21f6
Merge pull request #15717 from ihmccreery/fix-jenkins-upgrade-versioning
...
Auto commit by PR queue bot
2015-10-15 14:02:31 -07:00
Eric Tune
5a1a0b3040
Merge pull request #15428 from mikedanese/gc
...
Add e2e test for pod garbage collection
2015-10-15 13:58:00 -07:00
Mike Danese
d379a360c6
copy directory not contents of directory
2015-10-15 13:43:20 -07:00
Jeff Grafton
35db467216
Remove extraneous newline
2015-10-15 12:49:57 -07:00
Eric Tune
056ef2d556
Merge pull request #15722 from yujuhong/soak_cluster
...
e2e: disable component killing/restarting tests in the soak cluster
2015-10-15 12:21:49 -07:00
Yu-Ju Hong
2dacbc3dda
e2e: disable component killing/restarting tests in the soak cluster
...
This fixes #15649
2015-10-15 11:34:08 -07:00
Jeff Grafton
23fb8a8b76
Add script to upload test artifacts and log to GCS using gsutil
...
This new script is designed to be source'd by Jenkins jobs. It'll
automatically upload all test artifacts and the console log to GCS on
exit.
2015-10-15 11:32:11 -07:00
Isaac Hollander McCreery
79df5f58ff
kubernetes-upgrade-1.0-1.1-gke configs using ci/latest-1.1
2015-10-15 10:30:09 -07:00
Clayton Coleman
9440d17041
Proxy resync period should not be 30 seconds
2015-10-15 11:26:49 -04:00
Mike Danese
402e68e05c
add slow test for terminated pod garbage collection
2015-10-15 08:19:39 -07:00
Eric Paris
363d8a6fec
Remove all _test.go files in Godep
2015-10-15 11:17:04 -04:00
k8s-merge-robot
5d66bf9741
Merge pull request #15519 from ihmccreery/upgrade-versioning
...
Auto commit by PR queue bot
2015-10-15 06:30:12 -07:00
k8s-merge-robot
7ef2a1b293
Merge pull request #15427 from brendandburns/controllerversion
...
Auto commit by PR queue bot
2015-10-15 05:38:33 -07:00
k8s-merge-robot
4c8e6f47ec
Merge pull request #15394 from JanetKuo/kubectl-proxy-api-prefix
...
Auto commit by PR queue bot
2015-10-15 05:12:30 -07:00
k8s-merge-robot
8c753c84eb
Merge pull request #15191 from caesarxuchao/validate-UID
...
Auto commit by PR queue bot
2015-10-15 04:20:24 -07:00
Marek Grabowski
8a5f748846
Merge pull request #15336 from ixdy/install-etcd
...
Move hack/travis/install-etcd.sh to hack/, and update etcd version to 2.0.12
2015-10-15 09:29:25 +02:00
Janet Kuo
33b9235312
Better error handling for watching a list of resources specified in a file
2015-10-14 16:38:03 -07:00
Brendan Burns
947a558320
Dynamically enable controllers based on what resources the server has.
...
Dynamically delete namespaces based on what resources the server has.
2015-10-14 15:53:19 -07:00
Janet Kuo
c2eef6b3d6
Use default www-prefix when proxy in test-cmd and fix some related bugs
2015-10-14 15:49:52 -07:00
Janet Kuo
f47c2be539
Change kubectl proxy --api-prefix default to allow /apis/
2015-10-14 15:49:52 -07:00
Isaac Hollander McCreery
60c316b54a
Upgrades and upgrade tests take versions of the form release/stable instead of stable_release:
...
- Refactor common and gce/upgrade.sh to use arbitrary published releases
- Update hack/get-build to use cluster/common code
- Use hack/get-build.sh in cluster upgrade test logic
2015-10-14 10:16:21 -07:00
Isaac Hollander McCreery
b9c7cf43b2
Merge pull request #15422 from ihmccreery/branched-ci-builds
...
Branched CI builds for building release candidates
2015-10-14 09:53:09 -07:00
Marek Grabowski
066089d312
Merge pull request #15620 from wojtek-t/fix_exporting_vars
...
Export env vars from scalability suite
2015-10-14 15:18:37 +02:00
Wojciech Tyczynski
43019c5c89
Export vars from scalability suite
2015-10-14 14:51:39 +02:00
k8s-merge-robot
b7ff9344a7
Merge pull request #15559 from mikedanese/simple-ds-promote
...
Auto commit by PR queue bot
2015-10-14 05:02:30 -07:00
Chao Xu
be0754750f
add common fields validation before updaing a resource; make the repair of malformed update request flippable by a flag.
2015-10-13 16:28:32 -07:00
Dawn Chen
7dbfa46d91
Merge pull request #15548 from gmarek/fix-kubemark
...
Small changes in Kubemark requested by @wojtek-t
2015-10-13 16:25:26 -07:00
Dawn Chen
c9a1ae6788
Merge pull request #15130 from mikedanese/upgrade
...
add intermediate e2e runs to GCE upgrade suite to mirror GKE upgrade suite
2015-10-13 16:22:42 -07:00
Jeff Grafton
fbd58294b2
Update test helpers and dev doc to use etcd v2.0.12.
2015-10-13 16:05:56 -07:00
Jeff Grafton
28314c79ce
Move hack/travis/install-etcd.sh to hack/
2015-10-13 16:04:44 -07:00
Isaac Hollander McCreery
ea6c385674
Update swagger scripts, (this supplants #14596 )
2015-10-13 14:35:58 -07:00
Mike Danese
c0943f1139
add intermediate e2e runs to gce upgrade
2015-10-13 12:47:16 -07:00
Mike Danese
10d56ff18a
promote simple daemonset test out of flaky
2015-10-13 11:09:19 -07:00
Chao Xu
a503e5301a
add a test to check if patch works with resourceVersion as a precondition
2015-10-13 10:41:09 -07:00
gmarek
4625f50131
Small changes in Kubemark requested by @wojtek-t
2015-10-13 16:26:19 +02:00
Marcin Wielgus
2fa2ddbdb4
Merge pull request #15515 from jlowdermilk/actually-rename-shameshameshame
...
fix jobname for kubernetes-e2e-gce-release-1.1
2015-10-13 13:51:26 +02:00
k8s-merge-robot
eeeb5e0cd6
Merge pull request #15452 from jayunit100/petstore-dev
...
Auto commit by PR queue bot
2015-10-13 04:36:25 -07:00
Jeff Lowdermilk
a48515bfb0
fix jobname for kubernetes-e2e-gce-release-1.1
2015-10-12 17:18:38 -07:00
Dawn Chen
cf0bdadd96
Merge pull request #15486 from ixdy/resource-check
...
jenkins/e2e: only run ./cluster/gce/list-resources.sh if it exists
2015-10-12 17:03:05 -07:00
Dawn Chen
49b56d1788
Merge pull request #15508 from quinton-hoole/2015-10-12-mark-flaky-deployment-test
...
Label flaky deployment test as per #15369 .
2015-10-12 16:06:09 -07:00
Dawn Chen
88f6a03cb1
Merge pull request #15507 from quinton-hoole/2015-10-12-mark-flaky-tests-as-flaky
...
Mark flaky Jobs e2e test as flaky as per #15389 .
2015-10-12 15:56:29 -07:00
Dawn Chen
6bcb31511f
Merge pull request #15407 from jlowdermilk/fix-release-clobbering
...
Rename e2e-gce-rc to e2e-gce-release-1.1
2015-10-12 15:54:32 -07:00
Quinton Hoole
ba0f7a0a1f
Label flaky deployment test as per #15369 .
2015-10-12 15:40:28 -07:00
Quinton Hoole
76fa1ade51
Mark flaky Jobs e2e test as flaky as per #15389 .
2015-10-12 15:28:11 -07:00
Dawn Chen
69a8dc64c7
Merge pull request #15247 from spiffxp/kube-api-limits
...
Expose kube-api burst/qps settings for kube components
2015-10-12 15:19:46 -07:00
Dawn Chen
4da423c41d
Merge pull request #15490 from saad-ali/15382MovePDTestsToFlaky
...
Move flaky PD tests to flaky
2015-10-12 13:57:38 -07:00
Dawn Chen
72f85e0641
Merge pull request #15354 from JanetKuo/test-kubectl-list-with-validate
...
Enable validate when test kubectl with List
2015-10-12 13:54:21 -07:00
Zach Loafman
21db47a309
Fix cherry_pick_pull.sh to workaround hub#976
...
A number of people have run across
https://github.com/github/hub/issues/976 when trying to do cherry
picks using this script. Rather than stealing stdin, just create a
tmpfile and give hub full access to stdin, which will let it prompt
for the password it so dearly wants.
Tested by being unauth'd.
2015-10-12 13:40:15 -07:00
Dawn Chen
60d9d2fa3f
Merge pull request #14379 from derekwaynecarr/local_up_cluster_enforce_cfs_quota
...
Add flag to enable cpu limit enforcement when using local up cluster
2015-10-12 13:24:06 -07:00
Dawn Chen
d802138c1f
Merge pull request #15325 from caesarxuchao/fix-15181-retry-test-cmd
...
Adding a retry function in test-cmd.sh
2015-10-12 13:18:49 -07:00
Jeff Grafton
1a3d273bdb
jenkins/e2e: only run ./cluster/gce/list-resources.sh if it exists
2015-10-12 12:28:25 -07:00
saadali
09e61383d9
Move flaky PD tests to flaky
2015-10-12 12:01:00 -07:00
Dawn Chen
b07e29b03c
Merge pull request #14789 from JanetKuo/fix-e2e-test-flake-kubectl-proxy
...
Use random ports when doing kubectl proxy in testing
2015-10-12 11:46:24 -07:00
Chao Xu
12bcea336a
add a retry function in test-cmd.sh
2015-10-12 10:04:12 -07:00
Aaron Crickenberger
69351e3e88
Expose kube-api burst/qps settings for kube components
...
Default to hardcodes for components that had them, and 5.0 qps, 10 burst
for those that relied on client defaults
Unclear if maybe it'd be better to just assume these are set as part of
the incoming kubeconfig. For now just exposing them as flags since it's
easier for me to manually tweak.
2015-10-12 11:56:15 -04:00
jayvyas
c897798c27
Cleaning/Updating k8petstore dev tooling and build fixing, moving webserver to
...
main.go. Replacing vagrant tooling with docker-machine.
2015-10-12 08:31:30 -04:00
Piotr Szczesniak
35cf8cc76c
Enabled InitialResources e2e in autoscaling suite
2015-10-12 11:30:47 +02:00
Janet Kuo
001899e394
Enable validate when test kubectl with List
2015-10-11 20:56:15 -07:00
k8s-merge-robot
834ce9ddb5
Merge pull request #15189 from ixdy/resource-check
...
Auto commit by PR queue bot
2015-10-10 12:26:21 -07:00
k8s-merge-robot
d94307b71e
Merge pull request #15042 from JanetKuo/test-loop-add-rclist-svclist
...
Auto commit by PR queue bot
2015-10-10 10:57:24 -07:00
k8s-merge-robot
fa557f6101
Merge pull request #15409 from caesarxuchao/extension/v1beta1
...
Auto commit by PR queue bot
2015-10-10 09:03:43 -07:00
Robert Bailey
8372091104
Merge pull request #15410 from jlowdermilk/rename-e2e-release
...
Rename e2e-gce-release job to e2e-gce-release-1.0
2015-10-09 20:05:21 -07:00
Mike Danese
b635fc53f9
Merge pull request #15228 from mesosphere/sttts-conformance-tags
...
Use [Conformance] to tag conformance tests
2015-10-09 18:03:56 -07:00
Mike Danese
392f33e417
Merge pull request #14054 from mikedanese/register-master
...
register master kubelet with the apiserver
2015-10-09 17:12:37 -07:00
Jeff Lowdermilk
b0fee799d4
Rename e2e-gce-release job to e2e-gce-release-1.0
2015-10-09 16:34:39 -07:00
Jeff Lowdermilk
54afad28db
Rename e2e-gce-rc to e2e-gce-release-1.1
...
and add gcs staging suffix to avoid colliding with kubernetes-e2e-gce-release-1.0
2015-10-09 16:23:04 -07:00
Chao Xu
f40f1de81e
fix verify-generated-conversions.sh
2015-10-09 16:11:54 -07:00
Chao Xu
cd98de5188
fix verify-generated-deep-copies.sh
2015-10-09 16:08:52 -07:00
Janet Kuo
5d08dcf837
Use random ports when doing kubectl proxy in testing
2015-10-09 15:52:59 -07:00
Chao Xu
ccf989a2ae
manual fix hack/after-build/update-generated-deep-copies.sh
2015-10-09 15:38:38 -07:00
Chao Xu
cc4ec80ec7
in scripts, experimental/v1alpha1->extensions/v1beta1
2015-10-09 15:19:13 -07:00
Dr. Stefan Schimanski
cb00df9b28
Tag conformance tests with a [Conformance] string in the description
...
- remove skip list from conformance-test.sh and filter by the new tag
- remove experimental api tests from conformance test suite
- remove all tests from conformance test suite which are either
restricted to e.g. gce, gke, aws or require SSH
2015-10-09 23:14:43 +01:00
Janet Kuo
ee0ce32736
Add test for kubectl support of ReplicationControllerList and ServiceList
2015-10-09 09:36:23 -07:00
Wojciech Tyczynski
cabe8d9394
Merge pull request #15363 from gmarek/fix-jenkins
...
Increase a number of minions in kubemark-scale cluster
2015-10-09 12:01:53 +02:00
gmarek
2be5f3a92d
Increase a number of minions in kubemark-scale cluster
2015-10-09 11:57:27 +02:00
k8s-merge-robot
a4ac5ef564
Merge pull request #14302 from timstclair/prometheus-update
...
Auto commit by PR queue bot
2015-10-09 02:35:09 -07:00
gmarek
62ee051c67
Remove publish green version from Kubemark runs
2015-10-09 09:35:07 +02:00
k8s-merge-robot
bdec6db9be
Merge pull request #14988 from bprashanth/IngressE2E
...
Auto commit by PR queue bot
2015-10-09 00:26:14 -07:00
k8s-merge-robot
0fb7c80edf
Merge pull request #14888 from JanetKuo/kubectl-get-list
...
Auto commit by PR queue bot
2015-10-09 00:03:01 -07:00
k8s-merge-robot
52ce36eae8
Merge pull request #14455 from ixdy/jenkins-configs
...
Auto commit by PR queue bot
2015-10-08 22:34:59 -07:00
Mike Danese
fa60bbe8e6
add flag to kubelet to ignore the cidr passed down by the apiserver on the master
2015-10-08 21:21:19 -07:00
Isaac Hollander McCreery
3b6a8e2e40
Add kubernetes-upgrade-gke-1-0 jobs that upgrade from release/latest-1.0 to ci/v1.1.0-alpha.1.
2015-10-08 11:38:45 -07:00
k8s-merge-robot
731a47bc94
Merge pull request #15248 from mikedanese/sw-spec
...
Auto commit by PR queue bot
2015-10-08 07:41:05 -07:00
Piotr Szczesniak
952a058357
Merge pull request #15153 from wojtek-t/common_resync_period
...
Extend resyncPeriods in controllers in production.
2015-10-08 14:07:04 +02:00
gmarek
a16350853e
Run 1000 node Kubemark experiments on Jenkins
2015-10-08 12:09:14 +02:00
Wojciech Tyczynski
df79026b79
Extend resyncPeriods in controllers in production.
2015-10-08 09:10:09 +02:00
Quinton Hoole
8ec4f29e32
Move kubernetes-kubemark-scale-gce Jenkins job to asia-east1-a zone.
...
Because that's where we have enough quota.
2015-10-07 18:46:34 -07:00
Jeff Lowdermilk
b0bebe89ac
Merge pull request #15168 from ihmccreery/pin-releases
...
Use JENKINS_PUBLISHED_VERSION instead of JENKINS_USE_RELEASE_TARS and JENKINS_USE_STABLE
2015-10-07 17:43:54 -07:00
Quinton Hoole
1b7f8f540e
Bring up a 4000 node kubemark cluster in Jenkins.
...
This is a bit of a hack of the existing scripts, but the quickest way to get this cluster up.
Will restructure e2e.sh to do this in a more sane way in a separate PR.
2015-10-07 16:46:32 -07:00
Prashanth Balasubramanian
941963d953
Ingress E2E
2015-10-07 14:33:19 -07:00
Isaac Hollander McCreery
653de8fec7
Use JENKINS_PUBLISHED_VERSION instead of JENKINS_USE_RELEASE_TARS and JENKINS_USE_STABLE
2015-10-07 14:29:01 -07:00
Mike Danese
53e14c7a1e
diff all of pkg/ when verifying swagerspec instead of just pkg/api/
2015-10-07 11:44:12 -07:00
k8s-merge-robot
67768eb51c
Merge pull request #14769 from lavalamp/parallel_tests
...
Auto commit by PR queue bot
2015-10-06 22:59:50 -07:00
k8s-merge-robot
da0ba77ce3
Merge pull request #15040 from caesarxuchao/fix-gen-swagger-docs.sh
...
Auto commit by PR queue bot
2015-10-06 19:42:12 -07:00
Janet Kuo
f4cb23975b
Merge pull request #15044 from nikhiljindal/deploymentController
...
Enabling deployments on kubernernetes-upgrade-gce test suite
2015-10-06 18:11:00 -07:00
Jeff Grafton
0024bfd1d5
List and diff GCP resources before/after in Jenkins
...
This currently won't fail runs if there is a diff.
Additionally, clean up some unnecessary symlinking of JUnit test reports.
2015-10-06 17:38:41 -07:00
Paul Morie
123a5bd465
Merge pull request #13978 from jayunit100/api_server_append_13152
...
NodePort option: Allowing for apiservers behind load-balanced endpoint.
2015-10-06 20:09:03 -04:00
Jeff Lowdermilk
8b37e74fd0
Merge pull request #15184 from jlowdermilk/gke-reboot-test
...
Don't skip reboot when testing reboot
2015-10-06 16:10:30 -07:00
Jeff Lowdermilk
fafb00db7a
Merge pull request #15165 from jlowdermilk/gke-skip-shell
...
Re-add Shell to gke required filter
2015-10-06 15:44:37 -07:00
nikhiljindal
c062afc6de
Enabling deployments on kubernernetes-upgrade-gce test suite
2015-10-06 14:50:25 -07:00
Abhi Shah
aa9957e754
Merge pull request #15035 from ArtfulCoder/admissionChange
...
Removed DenyEscalatingExec from the list of default admission control…
2015-10-06 14:25:12 -07:00
Janet Kuo
f4bbb32bd9
Merge pull request #15024 from mikedanese/expcontroller
...
enable all experimental controllers in controller-manager with one flag
2015-10-06 14:20:11 -07:00
Abhishek Shah
a1b6dbe870
Removed DenyEscalatingExec from the list of default admission controllers.
2015-10-06 13:35:32 -07:00
Tim St. Clair
8d49c8e29a
Update prometheus libraries to new versions.
2015-10-06 12:56:14 -07:00
Jeff Lowdermilk
89144068e0
Don't skip reboot when testing reboot
2015-10-06 11:39:21 -07:00
Jeff Lowdermilk
f6b5719b05
Re-add Shell to gke required filter
2015-10-06 11:25:31 -07:00
gmarek
393d8f0887
Unset NUM_MINIONS variable in Kubemark Jenkins run, to allow use of Kubemark default
2015-10-06 10:32:21 +02:00
k8s-merge-robot
b53c9d8c9a
Merge pull request #15129 from ixdy/test-go-junit-report
...
Auto commit by PR queue bot
2015-10-05 23:50:01 -07:00
Mike Danese
05ef8ed219
Merge pull request #15104 from mikedanese/ds-e2e
...
break up daemonset test into two small tests to isolate flakiness
2015-10-05 22:32:59 -07:00
Jeff Grafton
a163f02c1b
Add option to save the verbose output from unit tests
...
Also enable this option in our Jenkins runs.
2015-10-05 18:17:57 -07:00
jayvyas
be2a2ec3cd
NodePort apiserver option for exposing KubernetesMasterService NodePort on startup.
2015-10-05 20:34:25 -04:00
Alex Robinson
48c6b7ea96
Merge pull request #14728 from kargakis/truncate-inherited-service-names
...
expose: Truncate service names
2015-10-05 16:29:14 -07:00
Alex Robinson
32b9d8aad0
Merge pull request #14823 from wojtek-t/move_events_to_separate_etcd
...
Move events to a separate etcd instance
2015-10-05 16:28:04 -07:00
Mike Danese
fe820fc4df
break up daemonset test into two tests
2015-10-05 15:54:15 -07:00
Mike Danese
833be48d61
enable all experimental flags with one controller
2015-10-05 14:54:19 -07:00
Alex Robinson
662137116f
Merge pull request #14904 from wojtek-t/unskip_e2e_tests
...
Remove reference to "Shell" from jenkins/e2e.sh
2015-10-05 14:41:25 -07:00
Alex Robinson
0b6bcab091
Merge pull request #15049 from Juniper/opencontrail-provisioning
...
Add opencontrail networking provisioning support in kubernetes via salt based provisioning
2015-10-05 14:40:11 -07:00
Alex Robinson
4b7329ad8c
Merge pull request #15081 from pmorie/sc-local-cluster
...
Add option to allow security context in local cluster
2015-10-05 14:02:11 -07:00
Alex Robinson
84f8f01d45
Merge pull request #14432 from mesosphere/sur-k8sm-492-launch-grace-period
...
MESOS make launchGracePeriod configurable
2015-10-05 13:27:12 -07:00
Alex Robinson
934ada3d03
Merge pull request #15086 from jlowdermilk/parallel-expose-test
...
Remove kubectl expose from GCE_PARALLEL_FLAKY_TESTS
2015-10-05 12:58:47 -07:00
Jeff Grafton
bf8153c644
KubeProxy e2e test is still slow
2015-10-05 11:54:39 -07:00
Janet Kuo
1f35cf2e5b
Fix get with List
2015-10-05 11:44:57 -07:00
Alex Robinson
f86140f1a4
Merge pull request #15010 from JanetKuo/test-loop-same-steps
...
Loop three types of files for each "multiple resources" test
2015-10-05 11:20:15 -07:00
Paul Morie
3d4b76d722
Add option to allow security context in local cluster
2015-10-05 12:59:37 -04:00
Wojciech Tyczynski
0f1cbe37a4
Events in separate etcd
2015-10-05 10:54:24 +02:00
kargakis
989806d9ec
expose: Truncate service names
...
In case the generated service inherits the exposed object's name (the user didn't specify
a name via --name), truncate it up to the maximum length for a valid service name
2015-10-05 10:39:42 +02:00
Ananth Suryanarayana
d50d7763da
Add opencontrail networking provisioning support in kubernetes salt based provisioning
...
OpenContrail is an open-source based networking software which provides virtualization support for the cloud.
This change-set adds ability to install and provision opencontrail software for networking in kubernetes based cloud environment.
There are basically 3 components
o kube-network-manager -- plugin between contrail components and kubernets components
o provision_master.sh -- OpenContrail software installer and provisioner in master node
o provision_minion.sh -- OpenContrail software installer and provisioner in minion node(s)
These are driven via salt configuration files
One can provision opencontrail by just setting "export NETWORK_PROVIDER=opencontrail"
Optionally, OPENCONTRAIL_TAG, and OPENCONTRAIL_KUBERNETES_TAG can be used to
specify opencontrail and contrail-kubernetes software versions to install and provision.
Public-IP Subnet provided by contrail can be configured via OPENCONTRAIL_PUBLIC_SUBNET
environment variable
At this moment, plan is to add support for aws, gce and vagrant based platforms
For more information on contrail-kubernetes, please visit https://github.com/juniper/contrail-kubernetes For more information on opencontrail, please visit http://www.opencontrail.org
2015-10-03 08:03:02 -07:00
k8s-merge-robot
0e58e9a49f
Merge pull request #14777 from brendandburns/fixer3
...
Auto commit by PR queue bot
2015-10-02 18:08:08 -07:00
CJ Cullen
f615e18dda
Merge pull request #15003 from ihmccreery/upgrade-test-version-skew-fix
...
Don't check for version skew when testing an upgraded-to-CI cluster
2015-10-02 18:02:17 -07:00
Chao Xu
f816491fdb
fix the title of the operations.html
2015-10-02 17:20:27 -07:00
Jeff Lowdermilk
85d0838496
Remove kubectl expose from GCE_PARALLEL_FLAKY_TESTS
2015-10-02 16:55:51 -07:00
Jeff Lowdermilk
deddfeb9ee
Merge pull request #14919 from jlowdermilk/rc-e2e-config
...
Test config for release candidate e2e run
2015-10-02 14:32:20 -07:00
Isaac Hollander McCreery
cedc07568b
Don't check for version skew when testing an upgraded-to-CI cluster
2015-10-02 13:36:53 -07:00
Janet Kuo
b10e86038e
Loop three types of files for each "multiple resources" test
2015-10-02 13:24:15 -07:00
k8s-merge-robot
6b7fe871b2
Merge pull request #14972 from piosz/ir-namespace
...
Auto commit by PR queue bot
2015-10-02 11:18:27 -07:00
k8s-merge-robot
41d1f889f6
Merge pull request #14793 from JanetKuo/e2e-kubectl-multi-resource
...
Auto commit by PR queue bot
2015-10-02 08:48:25 -07:00
k8s-merge-robot
5d47e88e66
Merge pull request #14928 from mikedanese/upgrade
...
Auto commit by PR queue bot
2015-10-02 06:11:58 -07:00
Piotr Szczesniak
f3cfdb0ef7
Extended prediction algorithm in Initial Resource to use also namespace
2015-10-02 14:56:06 +02:00
Wojciech Tyczynski
5456b4519b
Remove reference to Shell from jenkins/e2e.sh
2015-10-02 13:16:32 +02:00
k8s-merge-robot
ff85f0ba95
Merge pull request #14698 from yujuhong/gce_only
...
Auto commit by PR queue bot
2015-10-02 02:53:27 -07:00
gmarek
e58aff001b
Stop existing Kubemark cluster before creating new one in Jenkins
2015-10-02 10:32:57 +02:00
Sergiusz Urbaniak
42c84954fd
executor,scheduler: make launchGracePeriod configurable
2015-10-02 07:43:49 +02:00
Janet Kuo
7a2a5b021c
Add test of kubectl support for multiple resources
2015-10-01 14:36:17 -07:00
David Oppenheimer
f01e124ca5
Merge pull request #14760 from ihmccreery/gke-upgrade-tests
...
First pass at getting visibility into 1.0/1.1 upgrades & version skew
2015-10-01 13:53:57 -07:00
Jeff Lowdermilk
aef32aa1a5
Test config for release candidate e2e run
2015-10-01 13:23:30 -07:00
Mike Danese
905e971651
be explicit about minion group size in upgrade test
2015-10-01 12:01:04 -07:00
k8s-merge-robot
f579f8edc3
Merge pull request #14790 from yujuhong/restart_count
...
Auto commit by PR queue bot
2015-10-01 11:34:32 -07:00
Yu-Ju Hong
15cdc45b09
Split kubelet e2e resource usage tracking tests
...
Some tests in this test suite expects --max-pods (i.e. the maximum pod capacity
on kubelet) to be greater than default, which applies only to the GCE test
environment. Split the tests into two sets so that we can better categorize
the tests in the jenkins setup, without making the test itself aware of the
environment.
2015-10-01 11:09:06 -07:00
k8s-merge-robot
d50810a1db
Merge pull request #14831 from deads2k/allow-yaml-patch
...
Auto commit by PR queue bot
2015-10-01 08:48:45 -07:00
gmarek
a1e0ce8972
Fix Kubemark on Jenkins
2015-10-01 16:33:28 +02:00
gmarek
9a74980da2
Make kubemark work on Jenkins
2015-10-01 15:26:39 +02:00
Daniel Smith
bd7e2e5d8e
Add -p option to hack/test-go.sh
2015-09-30 16:25:11 -07:00
Brendan Burns
40bb24d692
Revert "Fix 'flock' command in hack/jenkins/e2e.sh"
2015-09-30 12:27:02 -07:00
Brendan Burns
0a16257df5
Re-activate DaemonRestart tests, they've been clean in gce-flaky for > 10 runs
2015-09-30 11:00:17 -07:00
deads2k
8b063a34b0
allow yaml as argument to patch
2015-09-30 11:58:42 -04:00
gmarek
8e56866a0a
Change the Jenkins kubemark Job name to match kubernetes-.*-gce regexp
2015-09-30 16:16:31 +02:00
gmarek
fd14fa5c48
Add first attempt of Kubemark config to jenkins/e2e.sh
2015-09-30 16:11:39 +02:00
Filip Grzadkowski
28d71418ca
Merge pull request #14824 from gmarek/fix-jenkins
...
Fix 'flock' command in hack/jenkins/e2e.sh
2015-09-30 15:29:15 +02:00
gmarek
cf31d16d94
Fix 'flock' command in hack/jenkins/e2e.sh
2015-09-30 15:27:53 +02:00
Brendan Burns
e827934d78
Merge pull request #12677 from andronat/kubectl_doc_cmd
...
A new command to read types' description from Swagger - kubectl explain
2015-09-29 19:35:37 -07:00
k8s-merge-robot
b661cfd21e
Merge pull request #14643 from liguangbo/change_Oom_to_OOM
...
Auto commit by PR queue bot
2015-09-29 18:54:22 -07:00
Yu-Ju Hong
5177e82d3a
e2e: restore the test for monotonically increasing restart count
...
The test was disabled because sometimes restart count could not reach the
target before timeout. This change lowers the target restart count, increases
the timeout threshold to 5 minutes, and adds the test to the SLOW suite.
Running the test in a local cluster takes ~1m40s to complete.
2015-09-29 17:22:12 -07:00
Isaac Hollander McCreery
5ddadc5f62
First pass at getting visibility into 1.0/1.1 upgrades & version skew
2015-09-29 14:28:48 -07:00
Jeff Lowdermilk
e849c00b08
Disable Deployment tests in GKE
...
unbreak gke-ci. again.
2015-09-29 10:21:36 -07:00
k8s-merge-robot
4645ad3cb0
Merge pull request #14594 from nikhiljindal/deploymentE2e
...
Auto commit by PR queue bot
2015-09-28 20:22:14 -07:00
Mike Danese
ae7d3d5a54
add gce-upgrade to jenkins/e2e.sh
2015-09-28 13:52:42 -07:00
liguangbo
12299087da
Change Oom to OOM
2015-09-28 18:18:04 +08:00
gmarek
dd3bd73948
Initial Kubemark commit
2015-09-28 11:39:05 +02:00
Anastasis Andronidis
e8b9dde623
new kubectl explain command
2015-09-26 14:25:53 +03:00
Jordan Liggitt
b71fbb3df9
Lengthen integration test timeout
2015-09-25 20:46:02 -04:00
nikhiljindal
d61ed52799
Adding an e2e test for deployment
2015-09-25 17:14:31 -07:00
Brian Grant
8236335697
Merge pull request #14580 from ixdy/hack-verify-print-status
...
In verify-all.sh, print check and its status in verbose mode
2015-09-25 16:30:58 -07:00
Brian Grant
10a7f2b1fa
Merge pull request #14453 from yujuhong/kubelet_benchmark
...
Add a slow e2e test to monitor kubelet resource usage
2015-09-25 13:31:59 -07:00
Jeff Grafton
d466c63f5c
In verify-all.sh, print check and its status in verbose mode
2015-09-25 13:25:44 -07:00
Brian Grant
313918f561
Merge pull request #14148 from brendandburns/perf
...
Add a method for encoding directly to a io.Writer and use it for HTTP
2015-09-25 13:19:58 -07:00
Brian Grant
44b0bb1ae7
Merge pull request #14325 from mikedanese/podgc
...
add pod garbage collection
2015-09-25 11:24:01 -07:00
Brian Grant
d6c3ac54b8
Merge pull request #14392 from caesarxuchao/fix-swagger-docs-move-v1alpha1
...
simplify group-version-to-pkg-path
2015-09-25 11:02:52 -07:00
Marcin Wielgus
039acb8c1d
Merge pull request #14463 from nikhiljindal/DeploymentOnGCE
...
Allow enabling deployment controller on GCE and GKE
2015-09-25 13:47:36 +02:00
Mike Danese
376faea1cf
add pod garbage collection
2015-09-24 22:47:53 -07:00
Chao Xu
d599d07bc3
simplify group-version-to-pkg-path
2015-09-24 21:33:32 -07:00
Chao Xu
c449baea46
Remove ExpStorageVersion and Add StorageVersions to APIServer struct
2015-09-24 17:44:59 -07:00
Brendan Burns
8998219686
Add a method for encoding directly to a io.Writer and use it for HTTPx
2015-09-24 15:52:09 -07:00
Chao Xu
ae1293418b
move experimental/v1 to experimental/v1alpha1;
...
use "group/version" in many places where used to expect "version" only.
2015-09-24 15:32:11 -07:00
Eric Tune
f4f8ec68f8
Merge pull request #14518 from nikhiljindal/flag-exceptions
...
printf->print in hack/verify-flags-underscore.py script
2015-09-24 14:03:37 -07:00
nikhiljindal
0799c11cb5
printf->print
2015-09-24 13:10:25 -07:00
nikhiljindal
ed5d24ed52
Allow enabling deployment controller on GCE and GKE
2015-09-24 11:37:16 -07:00
Brendan Burns
ec427f22b1
Disable race detection for all integration tests
2015-09-24 09:37:01 -07:00
Jerzy Szczepkowski
c8238c079a
E2E tests for horizontal pod autoscaler.
...
Fixes & tuning in horiontal pod autoscaler and its e2e tests; two of the tests added to "Autoscaling suite".
2015-09-24 14:14:35 +02:00
gmarek
24b03c4db2
Move broken service tests to the flaky suite to make GCE suite happy again
2015-09-24 09:13:00 +02:00
Yu-Ju Hong
0b8244505c
Add a slow e2e test to monitor kubelet resource usage
...
This test tracks kubelet resource usage over a long period of time (1hr)
when running N pods (e.g., N=0,50), and prints out the resource usage. This
would give us an idea how much kubelet's management overhead is in a stable
cluster.
Some followup items:
* Use a more realistic workload (e.g., including probing)
* Fail the test if the resource usage is too high.
Caveat:
* We assume the scheduler would do a decent job distributing the pause pods,
but we should double check.
* Cluster addon pods could be unevenly distributed and skews the resource
usage on nodes.
2015-09-23 18:22:20 -07:00
Eric Tune
d3beca6f06
Merge pull request #14381 from dchen1107/fix
...
Flag controlled RLIMIT_NOFILE for kubelet.
2015-09-23 16:30:11 -07:00
Eric Tune
13821de107
Merge pull request #14427 from mesosphere/sttts-resource-tests
...
Avoid assumption of a fixed list of cgroups in e2e conformance tests
2015-09-23 16:22:53 -07:00
Eric Paris
2e814b3b79
hack/verify-all.sh: return error on error
2015-09-23 16:37:22 -04:00
Eric Paris
1ef9e05341
hack/verify-all.sh: turn tab into space
2015-09-23 16:34:38 -04:00
Dr. Stefan Schimanski
f9f91fd99d
Remove cgroup list dependent e2e test from conformance test suite
...
As discussed @gmarek the given test does not belong into the conformance test
suite because it makes a lot of static assumptions about the cgroup setup of the
nodes which cannot be fulfilled by all cluster providers. Depending on the
installation the kubelet is not allowed to move around process
into specific containers.
Fixes https://github.com/mesosphere/kubernetes-mesos/issues/439 .
2015-09-23 16:52:56 +02:00
gmarek
816b20a179
Move one of the service tests to skipped.
2015-09-23 15:18:19 +02:00
Dawn Chen
5649939a36
Add new flag to flag file.
2015-09-22 15:18:34 -07:00
Abhishek Shah
a64dad04c7
Make KubeProxy test faster
2015-09-22 13:43:43 -07:00
derekwaynecarr
321b4b577d
Add flag to enable cpu limit enforcement when using local up cluster
2015-09-22 16:31:28 -04:00
Tim Hockin
bd3cd82a12
Change kube-proxy flag: annotation for proxy-mode
...
This changes the --legacy-userspace-proxy flag to be a string flag
--proxy-mode. If specified, the flag will be respected ('userspace' and
'iptables' being valid values). If left blank (default) we will choose the
"best". best means userspace for now UNLESS the user adds an annotation
(net.experimental.kubernetes.io/proxy-mode) to their node, in which case we
will try to use that.
This allows people to try it on a single machine without fear of global failure
and without it getting rolled back on reboots. It is a poor-man's config blob.
2015-09-21 18:06:24 -07:00
k8s-merge-robot
c96c76b729
Merge pull request #13780 from smarterclayton/pod_logs
...
Auto commit by PR queue bot
2015-09-21 17:02:47 -07:00
Jeff Grafton
4ce49b6f45
Filter test output when running unit tests in verbose mode
2015-09-21 13:11:12 -07:00
Clayton Coleman
c2e90cd154
Support extended pod logging options
...
Increase the supported controls on pod logging. Add validaiton to pod
log options. Ensure the Kubelet is using a consistent, structured way to
process pod log arguments.
Add ?sinceSeconds=<durationInSeconds>, &sinceTime=<RFC3339>, ?timestamps=<bool>,
?tailLines=<number>, and ?limitBytes=<number>
2015-09-21 15:39:32 -04:00
k8s-merge-robot
843134885e
Merge pull request #12470 from simon3z/add-host-ipc
...
Auto commit by PR queue bot
2015-09-21 09:15:01 -07:00
Eric Paris
6766b732a5
Update verify-godeps.sh to actually work
...
The diff was incorrect. It was doing `diff -NIaupr`. And so diff was
interpreting the argument to -I to be `aupr`. So it was not running
recursively. The fix is not so simple because there is an intentionally
broken symlink in one of the godeps. Which diff -r fails on by default.
On linux there is an options to not dereference symlink and just make
sure they point to the same thing. No so on OS X. So we have to exclude
all files called "symlink". Which thankfully there is only one of.
2015-09-19 16:55:12 -04:00
Quinton Hoole
62a0aba550
Fix regex to banish KubeProxy test as slow.
2015-09-19 00:59:03 -07:00
Quinton Hoole
8a95a82c88
Merge pull request #14206 from ixdy/jenkins-configs
...
Demote "KubeProxy should test kube-proxy" to slow tests
2015-09-18 19:10:00 -07:00
k8s-merge-robot
cad5f03311
Merge pull request #14185 from tmrts/formatting
...
Auto commit by PR queue bot
2015-09-18 15:16:00 -07:00
Jeff Grafton
85179f3352
Demote "KubeProxy should test kube-proxy" to slow tests
2015-09-18 15:00:41 -07:00
Federico Simoncelli
f21d9ac9e4
Support pods with containers using host ipc
...
Add a HostIPC field to the Pod Spec to create containers sharing
the same ipc of the host.
This feature must be explicitly enabled in apiserver using the
option host-ipc-sources.
Signed-off-by: Federico Simoncelli <fsimonce@redhat.com>
2015-09-18 21:13:39 +02:00
Tamer Tas
cb5f921df1
Add newline to the end of bash scripts
2015-09-18 19:35:05 +03:00
Eric Paris
ed5668f405
Hack to make godep work again
2015-09-18 11:03:29 -05:00
Quinton Hoole
e1c75e91fe
Spaces don't work in e2e regex's. Doh!
2015-09-17 15:47:02 -07:00
Kris
f4ad00d9ae
Moving Status object to a common package
2015-09-17 14:09:53 -07:00
Quinton Hoole
ceea590f7e
Demote e2e test "Daemon set ... launch a pod on every node of the cluster" to flaky.
2015-09-17 13:11:51 -07:00
Eric Paris
650e38e12b
Merge pull request #14083 from eparis/fix-doc-gen-on-mac
...
Fix doc generation on Macs
2015-09-17 09:56:13 -05:00
k8s-merge-robot
b342591032
Merge pull request #13604 from JanetKuo/kubectl-edit
...
Auto commit by PR queue bot
2015-09-17 03:00:33 -07:00
k8s-merge-robot
445fde3dc5
Merge pull request #13447 from pweil-/pid-mode
...
Auto commit by PR queue bot
2015-09-16 23:34:35 -07:00
Eric Paris
2c9708967e
Fix doc generation on Macs
...
The find util on macs require a path. Linux does not. So give it the
path to work on both.
2015-09-16 20:13:14 -04:00
Jeff Lowdermilk
12010e9832
Add kubectl expose to GCE_PARALLEL_FLAKY_TESTS
...
It's essentially the same as Services.*expose, just using kubectl
instead of client lib.
Fixes #14078
2015-09-16 16:26:36 -07:00
Jeff Grafton
42dc0ca484
Mark "Networking should function for intra-pod communication" as flaky in parallel.
2015-09-16 16:09:19 -07:00
Alex Mohr
b44714da1d
Merge pull request #14007 from quinton-hoole/2015-09-15-make-daemon-restart-e2e-run
...
Make Restart e2e regex more specific so that it doesn't accidentally …
2015-09-16 15:42:21 -07:00
Alex Mohr
063e6d93f1
Merge pull request #14002 from ixdy/e2e-stage-time
...
Explicitly log how long each step of e2e setup/test/teardown takes.
2015-09-16 15:40:16 -07:00
k8s-merge-robot
b051f3d3df
Merge pull request #14024 from ixdy/jenkins-build-test
...
Auto commit by PR queue bot
2015-09-16 13:10:40 -07:00
Abhi Shah
c2ffe68d0f
Merge pull request #13982 from ArtfulCoder/netexec
...
Created netexec docker image
2015-09-16 10:00:37 -07:00
k8s-merge-robot
22f698f5b0
Merge pull request #13953 from liguangbo/change_iff_to_if_and_only_if
...
Auto commit by PR queue bot
2015-09-16 08:35:20 -07:00
liguangbo
4df68f03a3
change iff to if and only if to improve annotation readability
2015-09-16 08:29:36 +00:00
Jeff Grafton
a345704c92
hack/test-go.sh: make kube::test::find_dirs actually work correctly
...
(Also sort the list of excluded directories.)
2015-09-15 23:32:23 -07:00
k8s-merge-robot
d007c9141d
Merge pull request #13951 from ixdy/jenkins-go-tests
...
Auto commit by PR queue bot
2015-09-15 22:48:20 -07:00
Janet Kuo
5a608446ba
pull "kubectl edit" from openshift upstream
2015-09-15 19:16:23 -07:00
Abhishek Shah
65fbf5a5fb
Created netexec docker image
2015-09-15 19:05:03 -07:00
Jeff Lowdermilk
e0aeb1151b
Merge pull request #9870 from markturansky/recyc_config
...
Allow Volume Plugins to be configurable
2015-09-15 17:53:49 -07:00
Jeff Lowdermilk
a327844575
Merge pull request #13974 from gmarek/framework
...
Allow disabling waiting for a service account in e2e tests
2015-09-15 17:44:45 -07:00
Jeff Lowdermilk
ebc0b02b7d
Merge pull request #13613 from eparis/rework-doc-generation
...
Rework automatic doc generation
2015-09-15 17:35:47 -07:00
Quinton Hoole
d3996beb07
Make Restart e2e regex more specific so that it doesn't accidentally match DaemonRestart.
2015-09-15 15:41:47 -07:00
Jeff Grafton
170962becb
Explicitly log how long each step of e2e setup/test/teardown takes.
2015-09-15 15:04:05 -07:00
Jeff Grafton
beb476d96b
Add script to run unit/integration tests on Jenkins
2015-09-15 13:42:59 -07:00
Jeff Grafton
8a41cb46fa
Jenkins gke e2e: don't use sudo with gsutil cp
2015-09-15 13:31:00 -07:00
Jeff Lowdermilk
4c01b2a589
Merge pull request #13927 from jlowdermilk/gke-upgrade-tests
...
Add gke upgrade tests to hack/jenkins/e2e.sh
2015-09-15 13:30:14 -07:00
Paul Weil
ed80c2b940
pid mode
2015-09-15 13:51:44 -04:00
gmarek
96a90f45c3
Allow disabling waiting for a service account in e2e tests
2015-09-15 12:49:49 -04:00
markturansky
7bc55b5aea
configurable pv recyclers
2015-09-15 12:48:25 -04:00
k8s-merge-robot
b8e938b795
Merge pull request #13184 from feihujiang/limitTypesForExposeCommand
...
Auto commit by PR queue bot
2015-09-15 01:21:19 -07:00
k8s-merge-robot
1381d0cc36
Merge pull request #13887 from nikhiljindal/deploymentController
...
Auto commit by PR queue bot
2015-09-14 22:01:06 -07:00
k8s-merge-robot
c55cc2c68c
Merge pull request #13938 from jlowdermilk/fix-hack-test-go
...
Auto commit by PR queue bot
2015-09-14 20:48:00 -07:00
k8s-merge-robot
92b2d0156e
Merge pull request #13941 from ghodss/local-up-cluster-speedup
...
Auto commit by PR queue bot
2015-09-14 20:22:39 -07:00
feihujiang
98689a99ec
Limit the type for kubectl expose command
2015-09-15 11:17:04 +08:00
nikhiljindal
c97b9db700
Adding a deploymentController
2015-09-14 18:39:46 -07:00
Sam Ghods
b021c83ac3
Speed up hack/local-up-cluster.sh build time
2015-09-14 15:39:53 -07:00
Jeff Lowdermilk
1f71ac8c17
remove unneccessary echo in hack/test-go.sh
2015-09-14 15:25:33 -07:00
Jeff Lowdermilk
7fa7852205
disable Daemon set test when running e2e on gke
2015-09-14 13:34:13 -07:00
Jeff Lowdermilk
8e509be45f
Add gke upgrade tests to hack/jenkins/e2e.sh
2015-09-14 10:03:11 -07:00
Jeff Lowdermilk
e25ae7fdb2
Merge pull request #13833 from caesarxuchao/central-latest
...
[WIP] Making a generic latest package
2015-09-14 09:26:58 -07:00
k8s-merge-robot
4aa412e04d
Merge pull request #13810 from quinton-hoole/2015-09-10-banish-flaky-tests
...
Auto commit by PR queue bot
2015-09-12 21:10:49 -07:00
Chao Xu
f734a6f038
register experimental/v1 in test-cmd.sh and test-integration.sh
2015-09-11 17:34:32 -07:00
Chao Xu
a7b5e11171
fix KUBE_API_VERSIONS in update_swagger_spec.sh
2015-09-11 17:33:22 -07:00
Chao Xu
347ce513cc
modifying hack/test* scripts
2015-09-11 17:29:37 -07:00
k8s-merge-robot
cb481b4a00
Merge pull request #13837 from brendandburns/kubectl2
...
Auto commit by PR queue bot
2015-09-11 17:18:29 -07:00
Eric Paris
58d6b29e97
Rework doc generation to simplify and centralize
...
Just do all doc generation in the hack::util::gen-docs instead of spread
around. We also only track the generated docs in a single file for the
whole tree.
2015-09-11 19:32:08 -04:00
Daniel Smith
7a0fc719fb
Fix tooling for apis/experimental's new home
...
* fix package name
* add a script to auto-gofmt everything, useful after grep/sed incantations
* update conversion/deep copy generation
* doc update
2015-09-11 16:06:10 -07:00
Eric Paris
9cf7bb6b4f
Automatically clean up KUBE_TEMP
...
kube::util:ensure-temp-dir claims that it will automatically clean it
up. But it obviously doesn't. Since we cannot add multiple trap in bash
add a function that lets us trap and clean up KUBE_TEMP even if someone
already set a trap.
2015-09-11 18:58:49 -04:00
Brendan Burns
9ba13ff361
Address comments
2015-09-11 13:55:16 -07:00
Jeff Lowdermilk
7229096453
Add config for the main gke-jenkins jobs to e2e.sh
2015-09-11 11:05:30 -07:00
Jerzy Szczepkowski
5be8817315
Turning on pod autoscaler on GCE.
...
Implemented optional turning on of pod autoscaler in kube-up script for GCE.
2015-09-11 12:03:41 +02:00
Abhishek Shah
44ce4aa423
Create a LB for a K8S with the LB-IP provided by user.
2015-09-10 21:05:06 -07:00
k8s-merge-robot
bfc60709b1
Merge pull request #13468 from yifan-gu/rkt_doc
...
Auto commit by PR queue bot
2015-09-10 20:32:08 -07:00
Mike Danese
b0457bee94
Merge pull request #13058 from mvdan/go1.5
...
Race condition and test fixes
2015-09-10 15:10:19 -07:00
Yifan Gu
4f6f5586d2
hack/local-up-cluster.sh: add new rkt flags for kubelet.
2015-09-10 14:58:03 -07:00
Yifan Gu
e7b9c50ba1
kubelet/rkt: add support for different stage1 image.
...
Also enable grace stop for service files.
2015-09-10 14:58:03 -07:00
Mike Danese
a48f218264
Merge pull request #13754 from tummychow/labels-deps
...
Move util.StringSet into its own package
2015-09-10 13:10:54 -07:00
Mike Danese
1fec199356
Merge pull request #13824 from kubernetes/revert-13547-hpa-kubeup
...
Revert "Turning on pod autoscaler on GCE."
2015-09-10 12:53:10 -07:00
Quinton Hoole
eaf0e3e2f3
Merge pull request #13813 from quinton-hoole/2015-09-10-banish-e2e-try-again
...
Banish service up and down e2e test in parallel to flaky
2015-09-10 12:27:12 -07:00
tummychow
78ce5da988
Move util.StringSet into its own package
...
A lot of packages use StringSet, but they don't use anything else from
the util package. Moving StringSet into another package will shrink
their dependency trees significantly.
2015-09-10 12:04:15 -07:00
Jeff Lowdermilk
08442974bb
Revert "Turning on pod autoscaler on GCE."
2015-09-10 11:46:37 -07:00
Daniel Martí
c054b20148
Avoid using two periods in templates
...
Since $id_field already starts with a period, .$id_field would result in the
following in Go 1.5:
error: error parsing template {{range.items}}{{..metadata.name}}:{{end}}, template: output:1: unexpected . after term "."
Apparently, Go 1.4 allowed this. Unnecessary anyway.
2015-09-10 11:44:14 -07:00
Quinton Hoole
662e41cdcc
Banish services up and down e2e test in parallel to flaky.
2015-09-10 09:08:19 -07:00
Quinton Hoole
72cfaf4955
Demote namespace e2e test to flaky in parallel (and fix it's name).
2015-09-10 08:55:11 -07:00
Jerzy Szczepkowski
b41862b670
Turning on pod autoscaler on GCE.
...
Implemented optional turning on of pod autoscaler in kube-up script for GCE.
2015-09-10 16:10:01 +02:00
Chao Xu
fe0a7ae51a
Merge pull request #13740 from soltysh/fix_runtime_config_flag
...
Fixed passing RUNTIME_CONFIG flag
2015-09-09 17:15:30 -07:00
Maciej Szulik
08aae94dea
Fixed passing RUNTIME_CONFIG flag, since currently it fails passing eg.
...
RUNTIME_CONFIG="experimental/v1=true" to the server.
2015-09-09 21:55:57 +02:00
jiangyaoguo
1460a1fb9e
Rate limit events in kubelet
...
1. Add EvnetRecordQps and EventBurst parameter in kubelet.
2. If EvnetRecordQps and EventBurst was set, rate limit events in kubelet
with a independent ratelimiter as setted.
2015-09-09 16:57:21 +08:00
k8s-merge-robot
45742e885c
Merge pull request #13452 from aveshagarwal/master-api-rate-burst-remove
...
Auto commit by PR queue bot
2015-09-09 00:42:59 -07:00
Chao Xu
1c02ea04a7
Merge pull request #13605 from caesarxuchao/fix-verify-descriptions
...
Fix verify-descriptions.sh
2015-09-08 11:41:44 -07:00
k8s-merge-robot
1eb348c59b
Merge pull request #13591 from gmarek/update-all
...
Auto commit by PR queue bot
2015-09-08 09:02:09 -07:00
Chao Xu
10c8179030
enable verify-description.sh for pkg/expapi/v1/types.go
2015-09-08 08:59:52 -07:00
k8s-merge-robot
0d21b5888f
Merge pull request #13550 from gmarek/verify-all
...
Auto commit by PR queue bot
2015-09-08 03:35:51 -07:00
k8s-merge-robot
01d11b9f8f
Merge pull request #13617 from mesosphere/config-exec-resources
...
Auto commit by PR queue bot
2015-09-07 01:53:04 -07:00
gmarek
e232840673
Add a verify-all script that runs most of 'verify' scripts
2015-09-07 10:26:40 +02:00
gmarek
de9614af37
Add an hack/update-all.sh script that run all update scripts
2015-09-07 09:36:07 +02:00
James DeFelice
cf908df89c
add flags for initial executor cpu and memory resources
2015-09-06 02:16:09 +00:00
Dai Zuozhuo
2e2ef3e830
change -o template to -o go-template=...
2015-09-05 22:30:47 +08:00
Chao Xu
9fc79e9d99
refactor testapi and test scripts to prepare for multiple API groups.
2015-09-04 18:01:32 -07:00
Quinton Hoole
e4fbfa9777
Merge pull request #13025 from pires/example_elasticsearch
...
Revamped Elasticsearch example
2015-09-04 12:28:17 -07:00
Quinton Hoole
a66087c83f
Remove service latency e2e test from the flaky bucket.
2015-09-04 11:52:59 -07:00
Quinton Hoole
eff8ea2432
Banish some more Services e2e tests to flaky in parallel.
2015-09-04 08:44:34 -07:00
Piotr Szczesniak
47af1a0c9b
Merge pull request #13421 from mesosphere/optout_pod_resource_constraints
...
MESOS: Add --contain-pod-resources flag to determine how k8s-mesos will contain pod resources
2015-09-04 13:43:22 +02:00
Piotr Szczesniak
48b9c365c7
Merge pull request #13308 from timothysc/watch-cache-disable
...
Plumb through configuration option to disable watch cache
2015-09-04 13:40:46 +02:00
Paulo Pires
0a64995b7b
Revamped Elasticsearch example that now uses an Alpine Linux container with JRE 8u51 and Elasticsearch 1.7.1.
...
Replaced Go discovery mechanism for Elasticsearch discovery plug-in that supports Kubernetes.
2015-09-04 09:39:14 +01:00
Jerzy Szczepkowski
2684018bb5
Configurations of jenkins e2e cluster and default private e2e cluster made consistent.
...
Configurations of jenkins e2e cluster and default private e2e cluster made consistent.
2015-09-04 09:15:01 +02:00
Piotr Szczesniak
97abc950db
Merge pull request #13526 from ixdy/jenkins-build-test
...
Don't override KUBE_RELEASE_RUN_TESTS if set in enviroment
2015-09-04 09:06:31 +02:00
James DeFelice
a1cea8dd87
Flexible resource accounting and pod resource containment:
...
- new: introduce AllocationStrategy, Predicate, and Procurement to scheduler pkg
- new: --contain-pod-resources flag (workaround for docker+systemd+mesos problems)
- new: --account-for-pod-resources flag (for testing overcommitment)
- bugfix: forward -v flag from minion controller to executor
2015-09-04 00:49:13 +00:00
Abhi Shah
c9f2d3151b
Merge pull request #13155 from derekwaynecarr/enforce_limits
...
Map cpu limits to cpu-quota in docker run
2015-09-03 16:28:04 -07:00
Quinton Hoole
ea6238ddc3
Remove redundant filter from e2e-gce-parallel test job.
2015-09-03 15:54:12 -07:00
k8s-merge-robot
d1c7a5f04e
Merge pull request #13362 from mesosphere/proxy-runtime
...
Auto commit by PR queue bot
2015-09-03 15:26:56 -07:00
Avesh Agarwal
f0d0e2a089
Remove unused api-rate and api-burst params.
2015-09-03 17:57:35 -04:00
Quinton Hoole
e76e0477f2
Make PR builder and e2e-gce-parallel e2e runs use the same number of nodes.
2015-09-03 11:48:52 -07:00
derekwaynecarr
5dc74e8dbf
Add support for CFS quota in kubelet
2015-09-03 13:44:28 -04:00
Jeff Grafton
e3bb7834d9
Don't override KUBE_RELEASE_RUN_TESTS if set in enviroment
2015-09-02 14:37:15 -07:00
Chao Xu
530a9a0238
cover expapi when genereate types_swagger_doc_generated.go
2015-09-02 10:01:40 -07:00
Marcin Wielgus
77e2d4f918
Merge pull request #13132 from piosz/initial
...
Implemented first version of InitialResources plugin.
2015-09-02 13:11:35 +02:00
Marcin Wielgus
f7bb05f58e
Merge pull request #13504 from Huawei-PaaS/fix_heapster_cadvisor_port
...
Fix a typo `-cadvisor_port` to `--cadvisor-port`
2015-09-02 12:13:49 +02:00
qiaolei
d2a0f2b66f
Fix a typo -cadvisor_port
to --cadvisor-port
...
Where `-cadvisor_port` should be `--cadvisor-port`
2015-09-02 17:52:52 +00:00
James DeFelice
7fbd290167
moved cgroup-root detection to minion service; kube proxy now configured to run in mesos container
2015-09-02 06:13:26 +00:00
k8s-merge-robot
0a062c5b24
Merge pull request #11942 from ironcladlou/rolling-update-availability
...
Auto commit by PR queue bot
2015-09-01 16:51:13 -07:00
Dan Mace
da5e4d7bd5
Rolling updater availability enhancements
...
Enhance the rolling updater to support maintaining minimum pod
availability for the duration of the update process.
2015-09-01 12:54:08 -04:00
Piotr Szczesniak
7967642cf0
Implemented first version of InitialResources plugin.
2015-09-01 17:24:13 +02:00
Quinton Hoole
5b853a2384
Skip GCE_SKIP and GCE_FLAKY e2e tests when soak testing.
2015-08-31 14:58:50 -07:00
k8s-merge-robot
de60651cc0
Merge pull request #12858 from MatMaul/master
...
Auto commit by PR queue bot
2015-08-30 21:46:50 -07:00
k8s-merge-robot
4a7115d272
Merge pull request #11955 from pedro-r-marques/flag_resolv_conf
...
Auto commit by PR queue bot
2015-08-30 21:03:54 -07:00
k8s-merge-robot
8925363863
Merge pull request #13325 from quinton-hoole/2015-08-28-move-slow-e2e-tests
...
Auto commit by PR queue bot
2015-08-28 21:26:40 -07:00
k8s-merge-robot
b6e355d2d3
Merge pull request #13142 from jszczepkowski/exp-flag
...
Auto commit by PR queue bot
2015-08-28 17:08:06 -07:00
Quinton Hoole
ac52c996aa
Add a regex and Jenkins job for slow e2e tests.
2015-08-28 17:08:02 -07:00
k8s-merge-robot
66f71bafe1
Merge pull request #13114 from ixdy/test-go-junit-report
...
Auto commit by PR queue bot
2015-08-28 16:22:30 -07:00
k8s-merge-robot
8cf3d1a792
Merge pull request #13050 from mesosphere/minion-path
...
Auto commit by PR queue bot
2015-08-28 10:46:26 -07:00
Timothy St. Clair
2145371c45
Plumb through configuration option to disable watch cache
...
because we are seeing anomolies on our cluster.
2015-08-28 12:36:40 -05:00
k8s-merge-robot
721afd6f74
Merge pull request #13197 from soltysh/fix_local_up2
...
Auto commit by PR queue bot
2015-08-28 02:25:18 -07:00
Wojciech Tyczynski
9bdc85a228
Merge pull request #13292 from saad-ali/actuallyFix13257
...
Move E2E PD Test out of flaky
2015-08-28 09:13:33 +02:00
saadali
33b5616ebc
Fix E2E Test "Pod Disks should schedule a pod w/ a RW PD, remove it, then schedule it on another host" out of flaky
2015-08-27 21:39:46 -07:00
Dr. Stefan Schimanski
cac58f6db7
Add --path-override to minion to change the PATH env var of subprocesses;
...
pass hostname-override through to kube-proxy (if defined)
2015-08-27 22:57:04 +00:00
Quinton Hoole
be1d01e2e4
Don't run flaky e2e tests in parallel test runs.
2015-08-27 10:26:06 -07:00
Piotr Szczesniak
4ef108a92d
Moved failing tests to the flaky suite on Jenkins
2015-08-27 15:26:25 +02:00
Yu-Ju Hong
3789da1473
e2e: mark the restart count test flaky
2015-08-26 16:28:00 -07:00
Pedro Roque Marques
99b1da848d
Add kubelet '--resolv-conf' flag.
...
Allow the user to specify the resolver configuration file that is used
to determine the default DNS parameters. This defaults to the system's
/etc/resolv.conf.
2015-08-26 15:41:36 -07:00
Jeff Grafton
75294b7a38
Add option to save unit test results as JUnit XML for Shippable
2015-08-26 15:26:51 -07:00
Maciej Szulik
7edb1afad6
Fixed typo in verify-flags-underscore
2015-08-26 13:29:10 +02:00
Maciej Szulik
4caa5e80b1
Updated deprecated flags (address and port). Added an option to pass runtime-config.
2015-08-26 13:28:40 +02:00
Piotr Szczesniak
99b9de9d76
Started running Autoscaling e2e test on dedicated Jenkins job
2015-08-26 12:12:51 +02:00
Mathieu Velten
57f18a0e04
Add a dockercfg_path parameter to the Mesos scheduler (the main purpose is to handle private repos auth).
...
This is implemented by copying the dockercfg file in the executor work directory.
2015-08-26 11:21:08 +02:00
Yu-Ju Hong
ac97aed837
Revert "Updated deprecated flags (address and port). Added an option to pass runtime-config."
2015-08-25 14:45:06 -07:00
Yu-Ju Hong
a74bea7f32
Merge pull request #13094 from soltysh/fix_local_up
...
Updated deprecated flags (address and port). Added an option to pass runtime-config.
2015-08-25 14:31:57 -07:00
Jerzy Szczepkowski
2de49358ab
Added flags for horizontal pod autoscaler to controller-manager.
...
Added flags for horizontal pod autoscaler to controller-manager.
2015-08-25 17:28:17 +02:00
Eric Paris
03f4e52812
Make verify-flags-underscore.py return error on failure
...
We were running it in shippable and travis, but since it didn't return
an error it wasn't actually catching things.
2015-08-24 22:12:17 -05:00
Jeff Grafton
22cba0f86e
Use GCE defaults for per-PR Jenkins
2015-08-24 15:49:59 -07:00
Nikhil Jindal
9eb0970bdb
Merge pull request #13091 from mesosphere/python-set-sort
...
Fix sort on sets in hack/verify-flags-underscore.py
2015-08-24 14:07:12 -07:00
Nikhil Jindal
4e51cb2a86
Merge pull request #13090 from mesosphere/finally-undefined
...
Fix undefined variable f in 'finally' clause of verify-flags-underscore
2015-08-24 14:06:59 -07:00
Maciej Szulik
5bc93e0eb4
Updated deprecated flags (address and port). Added an option to pass runtime-config.
2015-08-24 21:43:16 +02:00
Nikhil Jindal
a09425d828
Merge pull request #10933 from andronat/swagger_auto_type_docs
...
Automatic Generation of Swagger Documentation in Types
2015-08-24 10:35:58 -07:00
Dr. Stefan Schimanski
211fe33f40
Fix undefined variable f in 'finally' clause of verify-flags-underscore.py
2015-08-24 16:36:52 +02:00
Dr. Stefan Schimanski
ce013e288c
Fix sort on sets in hack/verify-flags-underscore.py
2015-08-24 15:06:33 +02:00
Zach Loafman
30a1fb06c7
Merge pull request #10957 from yifan-gu/oidc
...
plugin/pkg/auth: add OpenID Connect token authenticator
2015-08-21 18:51:04 -07:00
Anastasis Andronidis
10747841a0
move type documentation from tags to comments
2015-08-22 03:24:35 +02:00
Anastasis Andronidis
e27a76ae81
hack and hooks scripts for generating swagger docs
2015-08-22 02:27:41 +02:00
Anastasis Andronidis
9f21ae21e8
swagger type documentation generator
2015-08-22 02:26:03 +02:00
Zach Loafman
29369b0dde
Merge pull request #13030 from justinsb/aws_jenkins_parallel
...
AWS: e2e: change instance default size, create kubernetes-e2e-aws-parallel
2015-08-21 16:06:56 -07:00
Zach Loafman
0a8291505a
Merge pull request #9234 from ZJU-SEL/fix-e2e-test-hostdir
...
fix e2e hostdir test
2015-08-21 15:51:42 -07:00
Yifan Gu
6376e41850
plugin/pkg/auth: add OpenID Connect token authenticator.
...
Also add related new flags to apiserver:
"--oidc-issuer-url", "--oidc-client-id", "--oidc-ca-file", "--oidc-username-claim",
to enable OpenID Connect authentication.
2015-08-21 15:27:08 -07:00
Zach Loafman
afc35742de
Merge pull request #12981 from BenTheElder/iptables_cleanup
...
Add --cleanup-iptables flag to kube-proxy
2015-08-21 14:36:31 -07:00
Zach Loafman
21b1453f25
Revert "Promoted Autoscaling e2e tests to standard suite"
2015-08-21 13:21:53 -07:00
Zach Loafman
86a10a142c
Merge pull request #12950 from ixdy/coveralls
...
Enable reporting test coverage to Coveralls from Shippable and disable per-PR coverage
2015-08-21 11:45:55 -07:00
BenTheElder
81ab51709a
Add --cleanup-iptables flag to kube-proxy
...
Adds a flag to cleanup iptables rules created by kube-proxy per
https://github.com/mesosphere/kubernetes-mesos/issues/353#issuecomment-1
27382832
2015-08-21 14:44:11 -04:00
Justin Santa Barbara
e7ce72cf35
AWS: Add kubernetes-e2e-aws-parallel for Jenkins
...
This should allow us to run tests on AWS much faster.
2015-08-21 10:24:05 -04:00
Jerzy Szczepkowski
3df1b9e151
Merge pull request #12986 from BenTheElder/masquerade_all_flag
...
Add flag to masquerade all in kube-proxy when using iptables proxier
2015-08-21 10:28:07 +02:00
Piotr Szczesniak
e485a6ca45
Promoted Autoscaling e2e tests to standard suite
2015-08-21 09:59:49 +02:00
k8s-merge-robot
1a18588a60
Merge pull request #12960 from smarterclayton/network_tester
...
Auto commit by PR queue bot
2015-08-20 22:44:30 -07:00
Saad Ali
93ffc9c57e
Merge pull request #12992 from pmorie/description_checker
...
Make description checker check for descriptions in internal API
2015-08-20 17:32:44 -07:00
BenTheElder
1f2076ce64
Add flag to masquerade all in kube-proxy when using iptables proxier
2015-08-20 20:12:32 -04:00
Abhishek Shah
b6b8e99393
External IPs support.
2015-08-20 16:10:01 -07:00
Saad Ali
9b01580946
Merge pull request #12872 from runningwild/master
...
Fix several problems with using rkt on gce
2015-08-20 15:46:16 -07:00
Jeff Grafton
6f548cf5be
Enable reporting test coverage to Coveralls from Shippable
...
However, enable coverage collection only on merges - not on pull
requests.
2015-08-20 15:34:20 -07:00
Saad Ali
e8009e828c
Merge pull request #12632 from erictune/conformance-master-2
...
Add generic master detector; simplify conformance.
2015-08-20 14:32:36 -07:00
Saad Ali
489e75e073
Merge pull request #12202 from daizuozhuo/kubectl
...
add jsonpath to kubectl
2015-08-20 14:31:45 -07:00
Paul Morie
2dceb28444
Make description checker check for descriptions in internal API
2015-08-20 15:55:05 -04:00
Clayton Coleman
9267f829eb
Update tests to prepare for graceful deletion
...
For cases where we want to immediately cleanup the pod, start using
gracePeriod 0 in test cases.
2015-08-19 22:20:29 -04:00
Clayton Coleman
9ee7b76bba
Allow testing graceful shutdown via network-tester
2015-08-19 22:06:37 -04:00
Dai Zuozhuo
b61a905b19
add jsonpath to kubectl
2015-08-20 08:57:24 +08:00
He Simei
faeb45d69f
fix host dir, to test volume r/w with different containers within a pod
...
Signed-off-by: He Simei <hesimei@zju.edu.cn>
2015-08-20 08:55:19 +08:00
Saad Ali
8a43bd621e
Merge pull request #12745 from eparis/even-less-dash-false-positive
...
verify-flags-underscore.py: Even fewer dash false positives
2015-08-19 17:03:29 -07:00
Saad Ali
ee89f55bb9
Merge pull request #12188 from eparis/godeps-clean-test
...
verify-godeps.sh script to make sure all of Godeps is easily reproducible
2015-08-19 16:57:22 -07:00
Saad Ali
bce79d1368
Merge pull request #12850 from wojtek-t/scalability_suite_verbosity
...
Reduce logs verbosity in scalability tests
2015-08-19 15:37:58 -07:00
Saad Ali
14eadcccac
Merge pull request #12521 from feihujiang/kubectlScaleAcceptFileNameParam
...
Kubectl scale command accepts a filename param
2015-08-19 15:00:26 -07:00
Eric Tune
29da889bbf
Add generic master detector; simplify conformance.
...
Add detect-master-from-kubeconfig bash function.
Use it to no longer require conformance test user
to specify KUBE_MASTER_IP.
2015-08-19 13:20:22 -07:00
Saad Ali
d42864b0ad
Merge pull request #12112 from JanetKuo/update-kubectl-get-pods-running
...
Hide terminated pods in 'kubectl' Printer by default
2015-08-19 12:51:18 -07:00
Jonathan Wills
80e799fc0c
Allow configuring the rkt binary in a kubelet with a flag.
...
This is necessary because coreos comes with rkt installed, and if we want to use a different version
we need some way to avoid the default one.
2015-08-19 09:42:13 -04:00
Tim Hockin
16a33318b7
Use a valid address for swagger
2015-08-18 21:50:27 -07:00
Robert Bailey
08e6a43c1d
Revert "Merge pull request #9165 from smarterclayton/graceful"
...
This reverts commit 4f856b595d
, reversing
changes made to d78525a83b
.
Conflicts:
pkg/kubelet/status_manager.go
2015-08-18 17:34:49 -07:00
Janet Kuo
44a7a52a94
Hide failed/succeeded pods in 'kubectl get pods' by default
2015-08-18 13:47:19 -07:00
Robert Bailey
4f856b595d
Merge pull request #9165 from smarterclayton/graceful
...
Enable graceful deletion using reconciliation loops in the Kubelet without TTL
2015-08-18 10:01:40 -07:00
Clayton Coleman
adc97bf936
Conversions
2015-08-18 09:08:45 -04:00
Clayton Coleman
89f1f3b1b8
Alter graceful deletion to not use TTL
...
Avoid TTL by deleting pods immediately when they aren't
scheduled, and letting the Kubelet delete them otherwise.
Ensure the Kubelet uses pod.Spec.TerminationGracePeriodSeconds
when no pod.DeletionGracePeriodSeconds is available.
2015-08-18 09:08:43 -04:00
Clayton Coleman
b842a7dd15
Revert "Revert "Gracefully delete pods from the Kubelet""
...
This reverts commit 98115facfd
.
2015-08-18 08:57:02 -04:00
Wojciech Tyczynski
d9d7f6d964
Reduce logs verbosity in scalability tests
2015-08-18 11:14:14 +02:00
Prashanth Balasubramanian
83f1212e0b
Confirms daemons restart and do sane things in an e2e test
2015-08-17 20:39:57 -07:00
Eric Paris
ca310ffdac
Sort output from hack/verify-flag-underscore.py
...
So we get some consistency and readability to the exceptions.txt
2015-08-17 11:32:18 -07:00
Eric Paris
99dc464c9b
verify-flags-underscore.py: update how to add to exclusion list
2015-08-17 11:19:32 -07:00
Eric Paris
b432f036db
verify-flags-underscore.py: ignore juju variables
2015-08-17 11:19:32 -07:00
Eric Paris
f3fd2e1028
verify-flags-underscore.py: ignore if trailed by :
...
These are often yaml definitions, and thus not usages of kubernetes
flags. Not necessarily always, but usually.
2015-08-17 11:19:32 -07:00
Eric Paris
d1ba0bb692
verify-flags-underscore.py: ignore salt grains
2015-08-17 11:19:31 -07:00
Eric Paris
d7f9477a94
verify-flags-underscore.py: exclude salt variable which look like flags
2015-08-17 11:19:31 -07:00
Eric Paris
7f96f9312b
verify-flags-underscore.py: ignore 'flags' that look like bash variables
...
We ignore bad 'flags' if they are proceeded by $ or { as these are
likely bash variables and not in fact bad flag usage.
2015-08-17 11:19:31 -07:00
Eric Paris
055d648ed7
Change log_flush_frequency to use -
...
Since we have the rename, we don't need our declaration to look like
glog's.
2015-08-17 11:19:31 -07:00
Eric Paris
c560f41a4b
Update docs which were incorrectly using _ in flag names
...
Each of these was verified that the actual flag declaration correctly
used -
2015-08-17 11:18:43 -07:00
Eric Paris
68716c7712
verify-flags-underscore.py: Remove contrib/ exceptions
...
As contrib was removed.
2015-08-17 11:08:24 -07:00
Marek Grabowski
d310eeaca9
Merge pull request #12783 from piosz/autoscaling_e2e
...
Enabled Autoscaling e2e test for Jenkins flaky job
2015-08-17 11:23:28 +02:00
Piotr Szczesniak
b6f1c9d989
Enabled Autoscaling e2e test for Jenkins flaky job
2015-08-17 10:54:33 +02:00
Mike Danese
fa40ced8f8
move contrib/for-tests to test/images
2015-08-14 20:42:46 -07:00
Brendan Burns
9cc5156b69
Merge pull request #12685 from eparis/goimports
...
Remove dependancy on external goimports binary
2015-08-14 20:29:00 -07:00
Brendan Burns
8e05da1316
Merge pull request #12696 from eparis/less-dash-false-positive
...
Fewer false positives in verify-flag-underscore.sh
2015-08-14 16:27:08 -07:00
Brendan Burns
d7763a1b2b
Merge pull request #12557 from eparis/boilerplate-multiple-file-types
...
Speed up pre-commit boilerplate by only checking changed files
2015-08-14 16:26:00 -07:00
Eric Paris
823392e4e3
New test and commit hook to make sure changes to Godeps are reproducable
...
It is a pretty slow test (it downloads fresh) all of kube's Godeps, so only
run it when needed in pre-commit hook.
This also means that random changes to other non-kube repositories could
cause travis/shippable to just randomly stop working for all PRs which touch
Godeps after that moment (even though no changes have been made to Godeps by
us). Examples would be things like other repos completely disappearing. Or
even the directory we include disappearing in master in the remote
project (even though the directory may exist at the commit we care
about) This is a bugwin godep, but it is a problem we have seen happen
with kube Godeps.
2015-08-14 14:21:43 -04:00
Eric Paris
56f6ad0c01
Specifically exclude some flag definitions in verify-flag-underscore.sh
...
We know there are some flags (declared with an _) which we wish to
ignore. These flags are used by container definitions, e2e, etc. By
explicitly ignoring those flags we can cut the amount of noise in the
whitelist.
2015-08-14 14:11:02 -04:00
Eric Paris
8a91d86783
Speed up pre-commit boilerplate by only checking changed files
...
Although the boilerplate checker was very fast it can be faster. With
this change we can hand the boilerplate a list of files which need to be
checked or give it no files. If given no files it will run all files in
the repo. Before you had to explicitly tell the boiler checker the
'extention' of the the files. In this case we let the checker figure it
out and load the headers as needed.
Doing the whole repo takes about 0.4 seconds. Doing a single go file
takes < .04 seconds.
2015-08-14 10:19:33 -04:00
Piotr Szczesniak
fb44d5e045
Enabled Autoscaling e2e test for cpu utilization
2015-08-14 11:50:19 +02:00
Eric Paris
30d34d0e59
Reduce false positives with verify-flag-underscore.sh by updating regex
...
Check to make sure there is not an alphanumeric character immeditely
before or after the 'flag'. It there is an alphanumeric character then
this is obviously not actually the flag we care about. For example if
the project declares a flag "valid-name" but the regex finds something
like "invalid_name" we should not match. Clearly this "invalid_name" is
not actually a wrong usage of the "valid-name" flag.
2015-08-13 21:06:39 -04:00
Eric Paris
8f3577e5d2
Do not use goimports in hack/update-generated-conversions.sh
...
Stop depending on an external binary needing to be on people's system.
Use the code directly.
2015-08-13 19:37:01 -04:00
Eric Paris
00929ed7d8
Convert generated-deep-copies to use golang.org/x/tools/imports
...
I don't like users to need an external binary which can easily get out
of sync. Just include the tools.
2015-08-13 19:36:57 -04:00
Eric Paris
c6a5b43df1
Update flag-dash whitelist
...
PRs older than the verifier landed in HEAD. So update the whitelist
2015-08-13 17:43:00 -04:00
Brendan Burns
db39e5c45d
Merge pull request #12667 from preillyme/issues_12666
...
Remove the "www" and "third-party ui" directories from kubernetes repo
2015-08-13 14:09:11 -07:00
Brendan Burns
d8a60d2271
Merge pull request #12623 from thockin/proxy-ipt
...
Auto commit by PR queue bot
2015-08-13 13:10:39 -07:00
Brendan Burns
15281a5e01
Merge pull request #12388 from feihujiang/kubectlPatchAcceptFileNameParam
...
Auto commit by PR queue bot
2015-08-13 11:49:41 -07:00
Patrick Reilly
bf02aaa97d
remove other cluster addon references for container build
2015-08-13 10:23:55 -07:00
Tim Hockin
776132e1ae
Make kube-proxy iptables sync period configurable
2015-08-13 09:53:32 -07:00
Ruddarraju, Uday Kumar Raju
937db3f70d
Keystone authentication plugin
2015-08-13 09:46:30 -07:00
Wojciech Tyczynski
77f431649b
Merge pull request #12462 from gmarek/cadvisor2
...
Add e2e test monitoring current container resource usage with updated constants.
2015-08-13 10:19:19 +02:00
feihujiang
1e10a7cc59
Kubectl scale command accepts a filename param
2015-08-13 14:26:25 +08:00
feihujiang
0110f3176b
Kubectl patch command accepts a filename param
2015-08-13 11:13:31 +08:00
Brendan Burns
99b8df1812
Add field based sorting to the kubectl command line.
2015-08-12 16:51:36 -07:00
CJ Cullen
0f27307f82
Merge pull request #12609 from mikedanese/rewrite-shell
...
updating all references to GoogleCloudPlatform in .sh scripts
2015-08-12 16:00:43 -07:00
Mike Danese
f061875840
updating all references in .sh scripts
2015-08-12 14:41:59 -07:00
Eric Paris
f54098fe00
Verify all flag usage does not use _
...
This works by defining two 'static' lists in hack. The first is the list
of all flags in the project which use a `-` or an `_` in their name. All
files being processed by verify-flags-underscore.py (or all files in the
repo if no filename arguments are given) will be searched for flag
declaration using a simple regex. Its not super smart. If a flag is
found which is not in the static list it will complain/reject the commit
until a human adds it to the list. If we do not keep a static list of
flags it takes >.2 seconds to find them 'all' at runtime. Since this is
run in pre-commit saving every part of a second helps.
After it finds all of the flags it runs all of the arguments (or all
files in repo if no arguments) looking for usage of those flags which
includes an `_`. There are lots of places where these are false
positives. For example we have a flag named oom-adj-score but the kernel
calls it oom_adj_score. To handle this we keep a second 'whitelist' of
lines which are allowed to use these flag names with an `_`.
Running the entire git repo looking for flags in every golang file and
looking in every single file for bad usage takes about 8.75 seconds.
Running it in the precommit hook where we only check things that changed
takes about .06 seconds.
2015-08-12 16:17:02 -04:00
Eric Paris
ce6f2c8e4b
Do not build genconversion and gendeepcopy twice
...
The hack/after-build/verify-* functions were using the hack/update-*
functions. Which means that if you call hack/verify-* you will do the
build twice. Stop it.
2015-08-12 10:05:48 -04:00
Piotr Szczesniak
81fb0f9582
Merge pull request #12527 from piosz/jenkins-autoscaling
...
Actually changed monitoring level on Jenkins
2015-08-12 11:23:12 +02:00
Piotr Szczesniak
c91950f01c
Merge pull request #12566 from uluyol/cleanup-convcopy
...
Add missing argument to function call and don't set GOPATH directly
2015-08-12 09:36:10 +02:00
Piotr Szczesniak
1df0267f4a
Merge pull request #12551 from eparis/underscore-to-dash
...
Update code and docs to use - in flag names instead of _
2015-08-12 07:16:31 +02:00
Muhammed Uluyol
eba19cc96a
Add missing argument to function call and don't set GOPATH directly
2015-08-11 21:54:37 -07:00
Muhammed Uluyol
567bb15432
Generate conversions/deep-copies for experimental. Currently we make (and register) duplicate functions but this is benign.
2015-08-11 17:12:24 -07:00
Eric Paris
5aa495cdad
Update code to use - in flag names instead of _
2015-08-11 16:31:52 -04:00
CJ Cullen
9fdd793555
Merge pull request #11841 from eparis/commit-speed
...
Speedups for precommit hooks
2015-08-11 12:58:58 -07:00
Eric Paris
bf9c3cd6ec
Use cp instead of rsync in hack/verify-gendocs.sh
...
Instead of calling rsync over and over and over and over and over and
over and over and over and over (and probably over) use one `cp`
Before:
real 0m5.247s
user 0m2.294s
sys 0m1.300s
After:
real 0m2.260s
user 0m2.230s
sys 0m0.936s
2015-08-11 14:21:57 -04:00
Eric Paris
3b7c39656c
Split hack/{verify,update}-* files so we don't always go build
...
Right now some of the hack/* tools use `go run` and build almost every
time. There are some which expect you to have already run `go install`.
And in all cases the pre-commit hook, which runs a full build wouldn't
want to do either, since it just built!
This creates a new hack/after-build/ directory and has the scripts which
REQUIRE that the binary already be built. It doesn't test and complain.
It just fails miserably. Users should not be in this directory. Users
should just use hack/verify-* which will just do the build and then call
the "after-build" version. The pre-commit hook or anything which KNOWS
the binaries have been built can use the fast version.
2015-08-11 14:20:46 -04:00
Eric Paris
985fa94ebd
Move description.sh from hack/ to hooks/
...
Just to get everything in one place...
2015-08-11 14:20:38 -04:00
Eric Paris
302cb7dc7f
Move boilerplate from hooks/ to hack/
...
Hooks seems like they should be hooks. Not sure hack makes a lot more
sense, but it has more stuff already.
2015-08-11 14:20:38 -04:00
Eric Paris
5aeebb4886
hack/lib/etcd: remove unused local var
...
It isn't used anywhere, why have it?
2015-08-11 14:20:38 -04:00
Eric Paris
055d008634
Update swagger to start etcd with known values
...
We were setting etcd values, but we started etcd before we set them.
Thankfully we were just setting them to etcd defaults, so it all worked
2015-08-11 14:20:38 -04:00
Piotr Szczesniak
5e58004131
Actually changed monitoring level on Jenkins
2015-08-11 15:25:36 +02:00
Piotr Szczesniak
63a88dd24a
Changed monitoring level to googleinfluxdb in kubernetes-e2e-gce Jenkins job.
2015-08-11 10:07:48 +02:00
gmarek
bc8565d55e
Add e2e test monitoring current container resource usage with updated
...
constants.
This reverts commit 1f7ea4f08e
.
2015-08-11 09:16:14 +02:00
Alex Robinson
f7cab137df
Merge pull request #12019 from gmarek/soak
...
Move initialization of Jenkins variables for GCE soak tests to hack/jenkins/e2e.sh
2015-08-10 16:19:57 -07:00
Alex Robinson
59c0fbb6a9
Merge pull request #12444 from thockin/nix-cmd-kubernetes
...
Remove old 'kubernetes' cmd
2015-08-10 16:19:35 -07:00
Alex Robinson
462fed62b7
Merge pull request #12189 from feihujiang/describeKindNoArguments
...
kubectl describe <kind> work with no arguments
2015-08-10 11:05:34 -07:00
feihujiang
73b694e6c1
kubectl describe <kind> work with no arguments
...
Add describe_resource_assert to test describe <kind> with no object arg
2015-08-10 14:08:38 +08:00
Tim Hockin
bef7c99619
Remove old 'kubernetes' cmd
2015-08-08 20:39:57 -07:00
Veres Lajos
9f77e49109
typofix - https://github.com/vlajos/misspell_fixer
2015-08-08 22:31:48 +01:00
Satnam Singh
1f7ea4f08e
Revert "Add e2e test monitoring current container resource usage"
2015-08-07 22:40:15 -07:00
Satnam Singh
991775e77b
Merge pull request #10724 from eparis/convert-underscore-to-dash
...
Convert underscore to dash
2015-08-07 16:40:05 -07:00
Eric Paris
7715290bbd
Convert hack/ from --flag_name= to --flag-name=
2015-08-07 11:00:13 -04:00
gmarek
1c22fd39ff
Add e2e test monitoring current container resource usage.wq
2015-08-07 10:27:00 +02:00
Dawn Chen
9af5d8bd23
Merge pull request #12305 from GoogleCloudPlatform/puller
...
Exit if hub isn't installed, add verbiage to message.
2015-08-06 16:08:30 -07:00
Max Forbes
acef505cfd
Implement 'Nodes Network' test for GKE; add optional verbose SSH.
2015-08-06 14:25:53 -07:00
Wojciech Tyczynski
e366f2c597
Merge pull request #12206 from derekwaynecarr/move_doc
...
LimitRange documentation should be under admin
2015-08-06 13:43:58 +02:00
Wojciech Tyczynski
871ca7a05f
Merge pull request #12320 from mikedanese/rewrite-pr-issue-links
...
rewrite all links to issues and PRs to k8s links
2015-08-06 09:55:44 +02:00
Mike Danese
8326697055
rewrite all links to prs to k8s links
2015-08-05 21:11:11 -07:00
Alex Crawford
79f14822a9
Plumb linker flags through from the Makefile
2015-08-05 20:42:54 -07:00
Mike Danese
fb02b33e99
fix build
2015-08-05 17:52:56 -07:00
Dawn Chen
a90075d7eb
Merge pull request #12008 from smarterclayton/fix_mac
...
mktemp on OSX behaves differently than Linux
2015-08-05 15:17:59 -07:00
Zach Loafman
fccca8fa5d
Exit if hub isn't installed, add verbiage to message.
2015-08-05 14:26:14 -07:00
Dawn Chen
9bc54481e0
Merge pull request #12233 from brendandburns/velocity
...
Add automated pull request creation.
2015-08-05 12:02:25 -07:00
derekwaynecarr
577f2fa0a5
LimitRange documentation should be under admin
2015-08-05 10:26:52 -04:00
Brendan Burns
70d843176b
Add automated pull request creation.
2015-08-04 21:32:03 -07:00
Alex Mohr
e92c63be74
Merge pull request #12172 from GoogleCloudPlatform/revert-12106-demote
...
Auto commit by PR queue bot
2015-08-04 18:48:49 -07:00
Eric Paris
08d8bea61d
Support 1.5 in verify-gofmt
2015-08-04 19:59:19 -04:00
Alex Mohr
2d81775a2d
Merge pull request #11151 from gmarek/max_pods_e2e
...
Auto commit by PR queue bot
2015-08-04 15:11:13 -07:00
gmarek
61d3b250ee
Move initialization of Jenkins variables for soak tests to hack/jenkins/e2e.sh
2015-08-04 10:18:52 +02:00
Mike Danese
8e48431ca5
Revert "demote to flaky tests from parallel e2e"
2015-08-03 15:32:04 -07:00
Alex Mohr
2a397671bb
Merge pull request #12060 from jlowdermilk/jenkins-default-version
...
Allow gke to use server-default version for jenkins runs
2015-08-03 13:22:07 -07:00
Mike Danese
b56edd1355
Merge pull request #11727 from ZJU-SEL/build-nonstatic-hyperkube
...
build hyperkube as a nonstatic binary
2015-07-31 15:46:04 -07:00
Mike Danese
cf4cb1a6a3
Merge pull request #10474 from kargakis/scale-multiple-controllers
...
Enable scaling multiple controllers
2015-07-31 14:51:43 -07:00
Mike Danese
e376a094af
demote to flaky service tests from parallel e2e
2015-07-31 13:25:15 -07:00
Mike Danese
7c47d6bdbd
Merge pull request #12009 from smarterclayton/fix_cmd_config
...
hack/test-cmd.sh can fail when ~/.kube/config exists
2015-07-31 10:25:35 -07:00
Mike Danese
0269e2baad
Merge pull request #11941 from GoogleCloudPlatform/enact_version_md
...
Enacting versioning.md
2015-07-31 10:17:22 -07:00
kargakis
0e796ca09a
Enable scaling multiple controllers
2015-07-31 10:24:59 +02:00
Jeff Lowdermilk
2707fab181
Allow gke to use server-default version for jenkins runs
2015-07-30 18:32:57 -07:00
Clayton Coleman
0f9fdcafea
Revert "Revert "Improve conversion to support multiple packages""
...
This reverts commit 94a387d5d1
.
2015-07-30 15:15:14 -04:00
Mike Danese
94a387d5d1
Revert "Improve conversion to support multiple packages"
2015-07-30 10:51:40 -07:00
Mike Danese
1a613c43fe
Merge pull request #9971 from smarterclayton/make_conversion_more_flexible
...
Improve conversion to support multiple packages
2015-07-30 10:05:10 -07:00
Mike Danese
0ae48c449e
Merge pull request #11927 from wojtek-t/remove_shell_services
...
Remove shell services test
2015-07-30 09:56:38 -07:00
Wojciech Tyczynski
2c5c1931e5
Revert "Implement 'Nodes Network' test for GKE"
2015-07-30 15:29:01 +02:00
Clayton Coleman
5df2188d3d
hack/test-cmd.sh can fail when ~/.kube/config exists
...
Use the KUBE_TEMP dir for HOME
2015-07-30 00:47:50 -04:00
Clayton Coleman
1a64830ef1
mktemp on OSX behaves differently than Linux
...
hack/test-integration and hack/test-cmd are currently broken
2015-07-30 00:41:20 -04:00
Mike Danese
59a1dd4267
Merge pull request #11789 from mbforbes/nodesNetwork
...
Implement 'Nodes Network' test for GKE
2015-07-29 17:43:33 -07:00
Clayton Coleman
732647ea97
Improve conversion to support multiple packages
...
OpenShift uses multiple API packages (types are split) which
Kube will also eventually have as we introduce more plugins.
These changes make the generators able to handle importing different
API object packages into a single generator function.
2015-07-29 17:05:54 -04:00
Joe Beda
55e4941c5e
Fix up memory requirements for release w/ boot2docker.
2015-07-29 13:13:59 -07:00
Mike Danese
6294070c51
Merge pull request #11803 from wojtek-t/move_back_from_flaky
...
Move remaining PD test back from flaky
2015-07-29 11:24:40 -07:00
Mike Danese
daa6d4dde6
Merge pull request #11285 from liggitt/ca
...
Use self-signed cert as CA for local-up-cluster.sh
2015-07-29 11:13:23 -07:00
Mike Danese
9f16fd900e
Merge pull request #11860 from ingvagabund/delimiter-for-X-option-eparis
...
Use the correct delimiter for -X option of --ldflags (more readable solution)
2015-07-29 10:52:59 -07:00
Wojciech Tyczynski
4b9903ec17
Move remaining PD test back from flaky
2015-07-29 08:18:07 +02:00
Brendan Burns
a546a2979c
Merge pull request #11726 from caesarxuchao/fix-types-link
...
Auto commit by PR queue bot
2015-07-28 13:24:11 -07:00
Zach Loafman
4363f14e77
Enacting versioning.md
...
This PR changes how we version going forward in the following ways:
* mark-new-version.sh is changed to a new policy of just splitting
branches, rather than the old backmerge policy, as discussed in
vX.Y.0, and a tag for vX.(Y+1).0-alpha.0 back to master.
* I eliminated PRs back to master by making the version/base.go
gitVersion and gitCommit just be `export-subst`. I testing that this
works with GitHub's source export tarballs. There's no reason to
bother with forcing the version into `base.go` (especially twice). The
tarball versions outside a git tree aren't perfect (master looks like
"v0.0.0+hash", and the release branches look more accurate), but our
build contract has never allowed that version is perfect in this
situation, so I think we can relax this.
* That master tag gets picked up by "git describe" on master, so e.g.
master would have immediately become v1.1.0-alpha.0
* In order to be more semVer compatible, the gitVersion field for the
master branch now looks something like 1.1.0-alpha.0.6+84c76d1142ea4d.
This is a tiny translation of the "git describe". I did this because
there are a ton of consumers out there of the "gitVersion" field
expecting it to be the full version, but it would be nice if this
field were actually semver compliant. (1.1.0-alpha.0-6-84c76d1142ea4d
is, but it's not *usefully* so.)
Fixes #11495
2015-07-28 11:58:44 -07:00
Wojciech Tyczynski
b69ef7b5ca
Remove shell services test
2015-07-28 17:14:18 +02:00
gmarek
36aff274f1
Add test that verifies that we don't allow resource overallocation on Nodes
2015-07-27 16:37:57 +02:00
Marek Grabowski
831827b4bb
Merge pull request #11056 from wojtek-t/rewrite_services_in_go
...
Rewrite services shell test in Go.
2015-07-27 09:21:44 +02:00
Chao Xu
464385281b
add a tool in cmd/ to check links in go file. Currently it's only used to check the links in api descriptions (pkg/api/.../types.go).
2015-07-24 20:21:16 -07:00
Mike Danese
c0acfbcd4b
Merge pull request #11421 from nikhiljindal/exposeServcPort
...
Updating kubectl expose to extract ports from the service being cloned
2015-07-24 17:16:31 -07:00
Max Forbes
bd9e09ba00
Implement 'Nodes Network' test for GKE
2015-07-24 17:05:30 -07:00
nikhiljindal
242910e57c
kubectl expose should extract ports from service
2015-07-24 15:17:48 -07:00
Prashanth Balasubramanian
be0bfa97cc
Fix resource aliasing flake
2015-07-24 11:15:38 -07:00
Mike Danese
ae1c8e55ef
Merge pull request #11737 from thockin/cleanup-remove-v1beta3
...
Remove v1beta3
2015-07-24 10:25:56 -07:00
Mike Danese
01ee1b8634
Merge pull request #10840 from jbeda/master
...
Fix up check for min memory for parallel builds
2015-07-24 08:02:33 -07:00
Jan Chaloupka
3a90386c78
golang 1.4 was happy with -X key val
...
golang 1.5 complains ans wants -X key=val
2015-07-24 16:56:18 +02:00
Jordan Liggitt
5893f1c5b6
Use self-signed cert as CA for local-up-cluster.sh
2015-07-24 07:16:07 -07:00
Tim Hockin
1c3233a1d4
Remove v1beta3
2015-07-23 17:21:27 -07:00
Vish Kannan
136d53466a
Merge pull request #10892 from nikhiljindal/beta1
...
Removing references to pre v1beta3 apis in code
2015-07-23 17:05:43 -07:00
Jeff Grafton
4d45945b3b
Require at least one healthy startup pod in GCE Jenkins e2e tests
...
Includes a small fix relative to e7547b97
to handle
$E2E_MIN_STARTUP_PODS being null.
2015-07-23 15:31:41 -07:00
Wojciech Tyczynski
fdd7f1e4b2
Rewrite services shell test in Go.
2015-07-23 16:16:45 +02:00
gmarek
be59c5a935
Change a value that join_regex returns for empty input and use it in ginkgo.focus statements
2015-07-23 13:30:01 +02:00
He Simei
a210a96f5f
build hyperkube as a nonstatic binary
2015-07-23 09:18:08 +08:00
Jeff Grafton
55e050e3f3
Create a Jenkins project to run only the examples e2e tests on GCE.
2015-07-20 13:39:09 -07:00
Wojciech Tyczynski
a0f30586dd
Move PD on two hosts test to flaky
2015-07-20 11:08:11 +02:00
David Oppenheimer
e5208c83b7
Merge pull request #11357 from caesarxuchao/api-type-doc-tool-2
...
generate docs for types defined in pkg/api/v*/types.go
2015-07-17 15:57:17 -07:00
Chao Xu
ab740cf93b
Dockerfile and related scritps for a container that generates docs for API types
2015-07-17 15:46:54 -07:00
Tim Hockin
261d2ce423
Ignore whitespace when diffing generated docs
2015-07-17 15:28:58 -07:00
nikhiljindal
4734b938de
Updating update-swagger-spec to build the apiserver before running
2015-07-17 12:10:56 -07:00
nikhiljindal
496f30a92f
Introduce a new service generator that leaves service port unnamed
2015-07-16 20:40:40 -07:00
Brendan Burns
59bc8db554
Merge pull request #11360 from zmerlynn/fix_silly_backslash
...
Fix hack/cherry_pick_pull.sh on OS X (sigh):
2015-07-16 11:42:31 -07:00
Zach Loafman
fb8613201b
Fix hack/cherry_pick_pull.sh on OS X (sigh):
...
On OS X bash, for whatever reason, the ancient, forsaken bash version
(3.2!?) that will never be updated because it might insult the memory
of Steve Jobs doesn't allow me to accidentally escape the hash
character. Fix the unnecessary escaping.
For reviewers out there wondering about this syntax, it's documented
here: http://www.tldp.org/LDP/abs/html/parameter-substitution.html
under:
```
${var/#Pattern/Replacement}
If prefix of var matches Pattern, then substitute Replacement for Pattern.
```
It just looks odd here because I'm adding the hash character to the
start of each array element.
2015-07-15 21:09:56 -07:00
Eric Tune
8c891cfb70
Merge pull request #11291 from thockin/jenkins
...
Better handling of ginkgo args in jenkins
2015-07-15 15:00:51 -07:00
Eric Tune
c208c1c9a3
Merge pull request #11270 from mbforbes/jenkinsTypo
...
(jenkins/e2e) Fix typos and clarify instructions in comments
2015-07-15 12:57:46 -07:00
Eric Tune
97d13c25c2
Merge pull request #11314 from mikedanese/mungdocs-error
...
mungedoc should exit 1 when manual changes are required.
2015-07-15 12:54:20 -07:00
Mike Danese
d4d99deb97
make mungedoc exit 1 if manual changes are needed and wire up erro message.
2015-07-15 11:20:11 -07:00
Zach Loafman
af1a8b825a
Add hack/cherry_pick_list.sh to list all automated cherry picks
...
* Adds hack/cherry_pick_list.sh to list all automated cherry picks
since the last tag.
* Adds a short python script to extract title/author and print it in
markdown style like our current release notes.
* Revises patch release instructions to use said script.
2015-07-15 10:30:00 -07:00
Tim Hockin
38d51f33e5
Better handling of ginkgo args in jenkins
2015-07-14 23:54:39 -07:00
Wojciech Tyczynski
635e82897f
Fix tests on Jenkins
2015-07-15 08:27:41 +02:00
Mike Danese
337772a91f
fix all tests
2015-07-14 21:51:30 -07:00
Tim Hockin
f330a43329
fix test-cmd from file moves
2015-07-14 17:59:59 -07:00
Tim Hockin
43e315d686
Fix test-cmd after file moves
2015-07-14 15:57:41 -07:00
Max Forbes
392ca97d90
(jenkins/e2e) Fix typos and clarify instructions in comments
2015-07-14 15:12:05 -07:00
Eric Tune
4635cf381b
Merge pull request #11211 from gmarek/flaky
...
Update Jenkins Flaky suite
2015-07-14 14:59:06 -07:00
Eric Tune
13434cea60
Merge pull request #11194 from zmerlynn/louder_release_fork
...
hack/cherry_pick_pull.sh: Coach user on how to make a pull against non-master
2015-07-14 13:00:47 -07:00
gmarek
9d55842a02
Move MaxPods back from Flaky suite
2015-07-14 12:09:27 +02:00
Daniel Smith
ffcc6cadb0
run munger over examples dir
2015-07-13 17:47:48 -07:00
Daniel Smith
bf77ecc3a9
Various munger changes
...
* Add analytics munger w/ munge heading
* More link autofixes
* Allow running a subset of munges
* Fix repo root detection
* Only process non-preformatted blocks
* Gendocs no longer adds the analytics link; mungedocs does that in a
second pass.
2015-07-13 17:47:48 -07:00
Tim Hockin
a41f508451
Merge pull request #11198 from thockin/fix-services-sh-e2e
...
Don't use a shell array where not needed
2015-07-13 17:40:26 -07:00
Tim Hockin
957514d932
Don't use a shell array where not needed
2015-07-13 17:17:51 -07:00
Tim Hockin
a7364c08b0
Merge pull request #10994 from erictune/conformance_master
...
Conformance test update
2015-07-13 17:04:47 -07:00
Zach Loafman
4c078b1a99
hack/cherry_pick_pull.sh: Coach user on how to make a pull against non-master
2015-07-13 16:16:59 -07:00
Mike Danese
055115a109
fake realpath, and standardize treatment of trailing / of dirs in gendoc
2015-07-13 15:27:33 -07:00
Mike Danese
b4514ee1f3
fix run-gendocs to point to new repo location
2015-07-13 13:01:20 -07:00
Tim Hockin
64e3047397
Merge pull request #11124 from thockin/docs-munge-branch-warnings_filter_munges
...
Make all docs have a warning if unversioned
2015-07-13 11:30:50 -07:00
Tim Hockin
558ae212a5
Merge pull request #11165 from brendandburns/e2e2
...
increase NUM_MINIONS to 3 for e2e + jenkins by default.
2015-07-13 11:28:38 -07:00
Tim Hockin
06a6623a70
Filter munges out during doc generation
...
This allows us to apply content-mutating munges to generated files and nothave
the verifier flag them as needing regeneration later.
2015-07-13 11:23:07 -07:00
Brendan Burns
910857a4a8
increase NUM_MINIONS to 3 for e2e + jenkins by default.
2015-07-13 10:35:15 -07:00
Tim Hockin
2ad0774562
Merge pull request #11122 from zmerlynn/multi-pick
...
hack/cherry_pick_pull.sh: Allow multiple pulls
2015-07-13 10:17:14 -07:00
Wojciech Tyczynski
403c39d742
Fix shell Services test
2015-07-13 16:43:06 +02:00
Zach Loafman
180a38c181
hack/cherry_pick_pull.sh: Allow multiple pulls
...
Reorder the arguments to allow for multiple pulls at the end:
hack/cherry_pick_pull.sh <remote branch> <pr-number>...
This solves some common A-then-immediate-A' cases that appear
frequently on head. (There's a workaround, but it's a hack.) Updates
the documentation.
2015-07-13 07:11:12 -07:00
Rohit Jnagal
e5ce898058
Merge pull request #9264 from derekwaynecarr/limit_range_readme
...
LimitRange example improvements, detailed README
2015-07-10 19:14:23 -07:00
Rohit Jnagal
869df32d00
Merge pull request #10987 from stefwalter/setup-golang-update-hack
...
hack: Add $GOPATH to hack/update-generated-xxx.sh scripts
2015-07-10 14:15:37 -07:00
Daniel Smith
59dca5ba7d
fix verify-gendocs to call mungedocs --verify on the originals
2015-07-10 10:54:47 -07:00
Quinton Hoole
f653932b87
Demote Shell.*services e2e test as it cannot be run in parallel with other tests (yet)
...
Fixes #10127
2015-07-10 08:33:22 -07:00
derekwaynecarr
c8ad995462
LimitRange example improvements, detailed README
2015-07-10 11:07:54 -04:00
Wojciech Tyczynski
22e63a76b9
Merge pull request #11039 from nikhiljindal/beta3Conversion
...
Updating the scripts to not delete v1beta3 conversions and copies
2015-07-10 09:58:47 +02:00
Stef Walter
a38a148e02
hack: Add $GOPATH to hack/update-generated-xxx.sh scripts
...
So that not everyone has to figure this out.
2015-07-10 09:47:47 +02:00
Wojciech Tyczynski
dc711ee92d
Promote Services shell out of flaky. Demote Elasticsearch
2015-07-10 08:26:42 +02:00
nikhiljindal
1350cc8bc3
Set KUBE_API_VERSIONS appropriately
2015-07-09 19:04:20 -07:00
Max Forbes
6b609f644b
Jenkins: Allow fetching new tars for multi-job tests
2015-07-09 11:28:51 -07:00
Eric Tune
2459cfa96c
Update conformance test.
...
Fix formatting and quote variable.
Fix comments from a previous review.
Move instructions to the top.
Change from using tag to using branch.
Improve documentation of conformance test.
Use stable random seed.
Fix bug where there was a double quote as a prefix and suffix to the
skip regexp.
Remove .* not needed in regex.
Skip a few more tests that are not reliable for me in the
Conformance test environment.
2015-07-09 09:08:48 -07:00
Victor Marmol
b7da593d7c
Merge pull request #10762 from erictune/toc
...
Automatic Doc Editing, with Table of Contents Generation
2015-07-09 08:13:45 -07:00
Wojciech Tyczynski
6d864527c9
Merge pull request #10932 from zmerlynn/fork-jenkins-release-21
...
Add skip/flaky arguments for gce-release job
2015-07-09 15:20:04 +02:00
Wojciech Tyczynski
b33954c45e
Merge pull request #10963 from thockin/cherrypick-fixes
...
Ignore untracked files in cherrypick
2015-07-09 11:28:11 +02:00
Wojciech Tyczynski
977b1d9579
Merge pull request #10823 from piosz/real_test
...
Added load test with pods doing real works
2015-07-09 11:26:47 +02:00
Wojciech Tyczynski
9d32830040
Merge pull request #10978 from wojtek-t/fix_shell_services
...
Fix Shell services test
2015-07-09 10:08:57 +02:00
Wojciech Tyczynski
9cb7bc2e90
Fix Shell services test
2015-07-09 09:46:10 +02:00
Wojciech Tyczynski
e5836cc933
Merge pull request #10952 from mbforbes/JenkinsRemoveServer
...
Jenkins: remove dead 'use server version' code
2015-07-09 09:09:13 +02:00
Zach Loafman
1d6db553b0
Fix two issues in cherry_pick_pull:
...
* Ignore errexit in trap handler
* Check for branch (since two people have complained now..)
2015-07-08 18:16:27 -07:00
Tim Hockin
b61985ad87
Ignore untracked files in cherrypick
2015-07-08 17:09:14 -07:00
Victor Marmol
cfbc64e3c5
Merge pull request #10864 from mbforbes/gcloudUpdateJenkins
...
Fully update gcloud before Jenkins runs
2015-07-08 16:13:27 -07:00
Zach Loafman
a6594dc38b
Add skip/flaky arguments for the jenkins-gce-e2e-release job
...
I haven't added the job yet. Want to get the args in place first.
Related to #10676
2015-07-08 16:12:50 -07:00
Victor Marmol
f5cbf5af0f
Merge pull request #10923 from wojtek-t/promote_tests_2
...
Promote ElasticSearch test to non-flaky suite
2015-07-08 16:11:56 -07:00
Eric Tune
c51e35e835
Support for in-place modification of docs
...
Adds cmd/mungedocs which is framework for processing
all files under docs/ and either verifying that no changes needed or
making in-place changes.
Did not reuse kube::util::gen-docs because that seemed to be
centered around handling added files, and this pass does not
add files.
Planned uses:
- table of contents automatic updating
- linkification
- internal link checker
- link-path-relativizer or absolutizer
- example file syncer
- header inserter.
Just table-of-contents updating in this PR.
Added Table of Contents to docs/networking.md.
Demonstrates use of new TOC generator presubmit.
Other docs will be added in future PRs.
Additional development will be needed to handle some
of the more complex cases.
2015-07-08 14:58:54 -07:00
nikhiljindal
fc4da6844e
removing references to pre v1beta3 apis
2015-07-08 13:51:43 -07:00
Max Forbes
38f2f4dab9
Jenkins: remove dead 'use server version' code
2015-07-08 13:32:37 -07:00
Zach Loafman
390bb58f48
Brendan noticed this silly inconsistency.
2015-07-08 11:53:33 -07:00
Victor Marmol
faa573f995
Merge pull request #10922 from wojtek-t/fix_proxy_2
...
Fix service shell e2e test
2015-07-08 11:34:03 -07:00
Victor Marmol
dbc0e7636b
Merge pull request #10757 from zmerlynn/pull-propose
...
Add cherry_pick_pull.sh <pr-number> <branch>
2015-07-08 11:25:43 -07:00
Zach Loafman
4f3accec00
Add cherry_pick_pull.sh <pr-number> <branch>
...
This script checks out a branch based on <branch>, cherry picks pull
request <pr> into it commit by commit, then instructs the user on how
to propose that branch as a PR to the branch.
For bonus points, this could be integrated with something like the
"hub" tool (https://github.com/github/hub ) and be made about 2x more
automated.
Fixes #10730
2015-07-08 11:15:28 -07:00
Wojciech Tyczynski
de3a36c904
Promote ElasticSearch test to non-flaky suite
2015-07-08 16:26:04 +02:00
Wojciech Tyczynski
ff727ede74
Increase timeouts in services shell script
2015-07-08 15:32:05 +02:00
Piotr Szczesniak
3fb39542d0
Added load test with pods doing real works
2015-07-08 11:01:41 +02:00
Quinton Hoole
4a26114a9a
Make merge conflicts less likely in jenkins/e2e.sh with multiline regexs.
2015-07-07 20:10:00 -07:00
Max Forbes
5f9dc8c84c
Fully update gcloud before Jenkins runs.
2015-07-07 13:22:54 -07:00
Joe Beda
6c4ae61f6b
Fix up check for min memory for parallel builds
2015-07-07 10:14:23 -07:00
Wojciech Tyczynski
9854d47923
Move Proxy logs out of flaky
2015-07-07 13:54:22 +02:00
Wojciech Tyczynski
73cb04ad6b
Merge pull request #10819 from wojtek-t/fix_services_shell
...
Fix service shell test
2015-07-07 11:44:35 +02:00
Wojciech Tyczynski
f658988ad1
Fix service shell test
2015-07-07 11:19:17 +02:00
Wojciech Tyczynski
78c1117cb9
Promote no-longer flaky tests to gce suite
2015-07-07 08:27:11 +02:00
Quinton Hoole
ac3e3db579
Demote e2e test as per #10792
...
Demote e2e test as per #10792 .
2015-07-06 17:43:36 -07:00
Yu-Ju Hong
dad97b6224
Merge pull request #10691 from thockin/shutup-presubmit
...
Shutup presubmit
2015-07-06 09:56:41 -07:00
Zach Loafman
af781d8df4
Ban MaxPods to flaky test list. See #10720 .
...
If you revert this, please notify @zmerlynn to fix the GKE list.
2015-07-04 09:16:50 -07:00
Nikhil Jindal
974377b306
Merge pull request #10481 from gmarek/max_pods_e2e
...
Add max-pods e2e test
2015-07-02 15:26:46 -07:00
Tim Hockin
efa76b72ae
Run the build once during presubmit
2015-07-02 14:43:43 -07:00
Tim Hockin
a95814b593
make swagger presubmit not spew noise
2015-07-02 14:03:02 -07:00
Jeff Grafton
44f3c9e01e
Re-enable namespace test on the pull request Jenkins
2015-07-01 17:53:27 -07:00
Zach Loafman
b60c8e567f
Merge pull request #10077 from timstclair/ui-server
...
Move dashboard UI out of the apiserver to a separate pod
2015-07-01 15:56:33 -07:00
Zach Loafman
c7fb07a6aa
Merge pull request #10428 from mikedanese/nightly
...
add documentation and script on how to get recent and "nightly" builds
2015-07-01 15:55:49 -07:00
Zach Loafman
e5670c104d
Merge pull request #10604 from nikhiljindal/v1
...
Updating scripts to use v1 instead of v1beta3
2015-07-01 15:54:17 -07:00
nikhiljindal
274792d7bb
Stop exposing v1beta3 by default
2015-07-01 14:38:02 -07:00
Tim St. Clair
b6b2d6df42
Add kube-ui cluster addon for serving k8s dashboard UI.
...
Changes include:
- Add kube-ui binary for serving static dashboard UI
- Add kube-ui docker image, replication controller, and service
- Make the kube-ui a cluster-addon (enabled by default)
- Split the compiled pkg/ui/datafile.go into separate dashboard and swagger packages
- Update docs to reflect changes
2015-07-01 14:21:47 -07:00
Zach Loafman
0b2efd8d28
Merge pull request #10633 from saad-ali/enablePDE2ETest
...
Enable readonly PD tests for Jenkins GCE E2E run
2015-07-01 14:15:44 -07:00
Zach Loafman
4f9cfc84c4
Merge pull request #10180 from mwielgus/e2e_examples
...
E2E tests for Redis and Celery-RabbitMq examples
2015-07-01 12:02:27 -07:00
saadali
c84b0e0f4f
Enable readonly PD tests for Jenkins GCE E2E run
2015-07-01 11:10:00 -07:00
nikhiljindal
2e9e46dd08
Updating scripts to use v1 instead of v1beta3
2015-07-01 00:23:16 -07:00
gmarek
c86e18846b
Add max-pods e2e test
2015-07-01 09:21:42 +02:00
Marcin Wielgus
b5600fee12
E2E tests for Redis and Celery-RabbitMq examples
2015-07-01 00:25:58 +02:00
Jeff Grafton
0c321c3759
Jenkins GCE e2e: "Service endpoints latency" is not flaky in parallel
2015-06-30 13:47:46 -07:00
Chao Xu
7f89a29aad
add "kubectl patch". It will replace "kubectl udpate --patch" in the future
2015-06-29 16:36:45 -07:00
Alex Robinson
764d34d363
Merge pull request #10468 from caesarxuchao/add-cmd-replace
...
Add command "kubectl replace"
2015-06-29 16:06:33 -07:00
Mike Danese
c053b9a51b
add documentation and script on how to get recent and "nightly" builds
2015-06-29 14:50:41 -07:00
Mike Danese
719870fdcf
add publishing of latest-green.txt to jenkins e2e tests on success
2015-06-29 14:50:41 -07:00
Alex Robinson
fb9c126fd4
Merge pull request #10078 from ixdy/jenkins-e2e-gce-configs
...
Determine e2e test configs for GCE using Jenkins project name
2015-06-29 14:34:05 -07:00
Anastasis Andronidis
697e07f864
Correctly parse multiple resources from files
...
Refactored how files, directories and stdin are handled. Every file must pass
through the FileVisitor and then streamed through StreamVisitor. FileVisitor
takes care of opening/closing files and StreamVisitor is parsing multiple
resources.
2015-06-29 23:11:46 +02:00
Chao Xu
9b3d42c090
Add command "kubectl replace". "kubectl update" is still supported as an alias.
...
"kubectl replace --patch" is NOT supported. It's moved to "kubectl patch" as a separate command in another commit.
2015-06-29 12:14:24 -07:00
Jeff Grafton
8c70fa42ee
Determine e2e test configs for GCE using Jenkins project name.
...
Most parameters can still be overridden by specifying them in the
Jenkins configs.
Additionally, remove --noColor option, since the ANSI Jenkins plugin
can handle the color codes.
2015-06-26 17:32:50 -07:00
Robert Bailey
91589143a3
Merge pull request #10370 from mikedanese/no-more-machines
...
remove --machines and related deprecated flags from code and docs
2015-06-26 10:54:01 -07:00
Robert Bailey
508f7f1697
Merge pull request #10358 from caesarxuchao/add-force-update
...
Add --force to `kubectl update`
2015-06-26 10:49:04 -07:00
Mike Danese
1e130e0794
remove --machines from code and docs
2015-06-25 18:29:11 -07:00
Chao Xu
ef5de91fd7
add "--force" flag to "kubectl update";
...
update relevant tests
2015-06-25 17:16:20 -07:00
Maxwell Forbes
24de9afded
Merge pull request #10364 from brendandburns/e2e2
...
Add some sleep to the verification loop.
2015-06-25 16:31:07 -07:00
Brendan Burns
da938dc190
Add some sleep to the verification loop.
...
Programming is hard, sleep 5!
2015-06-25 14:50:46 -07:00
Maxwell Forbes
5e748c1d47
Merge pull request #10070 from lavalamp/e2eProxyFix
...
proxy e2e test improvements
2015-06-25 13:15:03 -07:00
Maxwell Forbes
66752bfb93
Merge pull request #10310 from nikhiljindal/local
...
Updating local-cluster-up to v1
2015-06-24 17:56:45 -07:00
nikhiljindal
e6c83bca5f
updating local-cluster-up to v1
2015-06-24 14:08:27 -07:00
Daniel Smith
5eb5b4a130
Test kubectl proxy in test-cmd.sh
2015-06-24 13:54:15 -07:00
Maxwell Forbes
26d3a4429d
Merge pull request #9816 from erictune/conformance
...
Revive conformance test.
2015-06-24 13:20:46 -07:00
Eric Tune
c5efb12a62
Revive conformance test.
...
Use KUBE_CONFIG_FILE instead of AUTH_CONFIG (and CERT_DIR).
Pass GINKGO_TEST_ARGS for a subset of e2e tests which
@erictune has deemed initially sufficient for conformance.
Allow GINKGO_TEST_ARGS to pass through hack/ginkgo-e2e.sh.
Set NUM_MINIONS (need better way to handle this).
Remove use of "KUBERNETES_CONFORMANCE_TEST" variable
and use of KUBERNETES_PROVIDER="conformance_test" convention,
both of which have no apparent purpose.
Allow unset testContext.provider in test/e2e/e2e_test.go
Allow testContext.Provider to be unset in providerIs().
2015-06-22 22:29:02 -07:00
Chao Xu
59b654c996
fix tests for 22f1b07858
2015-06-22 17:10:09 -07:00
CJ Cullen
ff0546da4f
Merge pull request #10133 from mbforbes/gkeLivingUpgrade
...
GKE upgrade tests
2015-06-20 15:02:11 -07:00
Max Forbes
434f968715
GKE upgrade tests
2015-06-20 09:44:19 -07:00
Jeff Lowdermilk
bdd3602eb7
Allow explicit pinned versions to be specified for jenkins runs
2015-06-19 16:19:02 -07:00
Satnam Singh
b964f3c911
Merge pull request #9739 from bprashanth/sno
...
Fix kubectl stop rc with sequence numbers
2015-06-19 15:30:26 -07:00
Prashanth Balasubramanian
9ed9bd1c4f
Add a generation number to the object meta of all objects, and status of rcs
2015-06-19 14:32:08 -07:00
Jeff Lowdermilk
9e4c5bc3b4
fix bash typo in jenkins/e2e.sh
2015-06-19 11:57:44 -07:00
Jeff Lowdermilk
8f5d8da7d6
yet another special case for e2e script
2015-06-19 11:13:55 -07:00
Satnam Singh
4bf6058919
Merge pull request #9988 from mikedanese/upgrade-pre-e2e
...
remove e2e run before cluster upgrade
2015-06-18 14:25:26 -07:00
Satnam Singh
d2c2f7e35e
Merge pull request #9993 from mikedanese/re-patch
...
reenable patch serverside using strategic-merge-patch
2015-06-18 14:13:10 -07:00
Jeff Lowdermilk
e72431033a
Fix a few e2e references to allow gke to test dogfood builds
2015-06-18 13:39:51 -07:00
Jeff Lowdermilk
1a7d811b4a
Add a test to test-cmd.sh for update --patch
2015-06-18 12:06:46 -07:00
Mike Danese
dbb47fe248
remove e2e run before cluster upgrade
2015-06-17 17:02:04 -07:00
Saad Ali
56083489e3
Merge pull request #9884 from brendandburns/gcr
...
Switch to loading busybox from gcr.
2015-06-17 11:38:24 -07:00
Saad Ali
9f60f3ce44
Merge pull request #9831 from jayunit100/local-up-from-docker
...
Allow docker/ or other source directory for local-up
2015-06-16 16:17:06 -07:00
Brendan Burns
9fda26e5da
Switch to loading busybox from gcr.
2015-06-16 11:31:33 -07:00
Jeff Lowdermilk
47901b7edd
Remove the last provider-specific handling in kubectl.sh, ginkgo-e2e.sh
2015-06-16 10:58:04 -07:00
jayunit100
ecdc025b61
Allow docker/ or other source directory for local-up
2015-06-15 19:44:35 -04:00
Fabio Yeon
3f62e420cb
Merge pull request #9784 from saad-ali/jenkinsSymlinkFix
...
Jenkins E2E build should not fail if symlink to junit file already exists
2015-06-15 13:37:09 -07:00
saadali
3bc1c18e12
Jenkins E2E build should not fail if symlink to junit file already exists.
2015-06-15 10:52:47 -07:00
Fabio Yeon
652eed5bce
Merge pull request #9479 from jayunit100/local-up-clean
...
[hack/] Modularize local-up into clean functions so its self documenting
2015-06-15 09:54:24 -07:00
Abhi Shah
22a4d555c6
Merge pull request #9517 from mikedanese/e2e-cluster-upgrade
...
e2e test cluster stability during master upgrade
2015-06-12 13:53:09 -07:00
Abhi Shah
52db576617
Merge pull request #8882 from mesosphere/upstream_k8sm
...
Upstream Kubernetes-Mesos framework
2015-06-12 06:36:20 -07:00
Mike Danese
de55e17f75
e2e test cluster stability during upgrade
2015-06-11 15:10:52 -07:00
Quinton Hoole
ec0dd2db00
Merge pull request #9678 from dchen1107/podstatus
...
Using bigger node for minions for jenkin-e2e tests.
2015-06-11 14:13:54 -07:00
Dawn Chen
a1065d1e24
Using bigger node for master node for jenkin-e2e tests.
2015-06-11 14:09:02 -07:00
Dawn Chen
bf6d4d6d7e
Using bigger node for minions for jenkin-e2e tests.
2015-06-11 14:07:41 -07:00
Abhi Shah
b37190b784
Merge pull request #9513 from lavalamp/fixFlake
...
improve output of kube_get_url & fix #6548
2015-06-11 11:28:32 -07:00
Abhi Shah
c5553af281
Merge pull request #9506 from cjcullen/resize
...
Make resize tests work on GKE
2015-06-11 11:05:07 -07:00
Abhi Shah
f4e3c97a0b
Merge pull request #9539 from quinton-hoole/2015-06-09-fix-e2e.sh
...
Don't require a space at the end of GINKGO_TEST_ARGS
2015-06-11 11:01:08 -07:00
James DeFelice
91238f8b44
Make building contrib code optional
2015-06-10 20:30:10 +00:00
jayunit100
a2ea0ba467
Modularize local-up into clean functions so its self documenting
2015-06-10 13:24:59 -04:00
Brendan Burns
1dc723b4cb
Fix testing to skip the release directories.
2015-06-10 09:22:18 -07:00
Quinton Hoole
e774717f6c
Don't require a space at the end of GINKGO_TEST_ARGS
...
8703#commitcomment-11336307
2015-06-09 15:48:13 -07:00
Daniel Smith
97ebc1aad9
improve output of kube_get_url
2015-06-09 15:26:09 -07:00
CJ Cullen
abc4e53648
Make resize tests work on GKE
2015-06-09 12:00:10 -07:00
krousey
cf4b4a313b
Merge pull request #9335 from swagiaal/e2e-test-prefix
...
Add a prefix option to e2e for use with resources
2015-06-09 11:50:02 -07:00
Sami Wagiaalla
899cf360ba
Add a prefix option to e2e for use with resources
...
This is helpful when cleaning manually up after a failed test in
shared a gce environment.
Signed-off-by: Sami Wagiaalla <swagiaal@redhat.com>
2015-06-09 13:29:41 -04:00
krousey
d8d295d647
Merge pull request #9385 from pmorie/local-privileged
...
Allow privileged containers in local cluster
2015-06-09 10:18:44 -07:00
krousey
b2449746b4
Merge pull request #9388 from nikhiljindal/verify-swagger
...
Adding a script to verify that swagger spec is updated
2015-06-08 16:49:46 -07:00
Paul Morie
5d7418707a
Allow privileged containers in local cluster
2015-06-08 19:40:12 -04:00
Filip Grzadkowski
b999e6655c
Do not overwrite bash variables in jenkins for scalability tests
2015-06-08 13:51:24 +02:00
nikhiljindal
a89d2da249
Adding a script to verify that swagger spec is updated
2015-06-08 04:04:57 -07:00
Chao Xu
5a54a0118d
fix
2015-06-04 16:35:24 -07:00
Chao Xu
21bea6e8e7
since v1 is defaultly enabled, don't explicit enable it in update-swagger-spec.sh
2015-06-04 11:57:20 -07:00
Daniel Smith
1690617ee6
remove ro service
2015-06-03 16:45:54 -07:00
Brian Grant
f8bf996000
Merge pull request #9211 from lavalamp/no-ro-nonbreaking
...
Nonbreaking pieces of #8155
2015-06-03 16:44:24 -07:00
Daniel Smith
6e95388672
allow kubectl to be built statically
...
* Package kubectl in a container
* Add example with a pod using kubectl as a sidecar
2015-06-03 15:41:09 -07:00
Brian Grant
6898a7957c
Merge pull request #9206 from thockin/services-e2e
...
Make services e2e more debuggable
2015-06-03 13:14:15 -07:00
Tim Hockin
a2b7117ee4
Make services e2e more debuggable
2015-06-03 12:09:54 -07:00
Brian Grant
1845ca88fc
Merge pull request #9169 from caesarxuchao/hack/test-update-storage-objects.sh
...
enable v1 in hack/test-update-storage-objects.sh
2015-06-03 11:20:35 -07:00
Brian Grant
53b8728528
Merge pull request #9154 from caesarxuchao/hack/test-cmd.sh
...
enable v1 for hack/test-cmd.sh
2015-06-03 11:20:10 -07:00
Brian Grant
895ad68422
Merge pull request #9145 from caesarxuchao/hack/test-integration
...
enable v1 in hack/test-integration.go
2015-06-03 11:19:41 -07:00
Chao Xu
d52cef11a4
add v1 tests to hack/test-go; let default value of Container.SecurityContext to be nil
2015-06-03 09:50:41 -07:00
Brian Grant
3bdde89a68
Revert "Make services e2e test more debuggable"
2015-06-02 23:46:46 -07:00
Chao Xu
bdf43eb66d
enable v1 in hack/test-update-storage-objects.sh
2015-06-02 20:31:01 -07:00
Tim Hockin
e6a7f85d70
Make services e2e test more debuggable
2015-06-02 19:01:12 -07:00
Chao Xu
a4887bc6d4
enable v1 in hack/test-cmd.sh
2015-06-02 17:13:13 -07:00
Brian Grant
202343799e
Revert "Make services.sh e2e more reliable(?) and debuggable"
2015-06-02 16:54:12 -07:00
Brian Grant
6cfa260745
Revert "Make a namespace before using it"
2015-06-02 16:46:30 -07:00
Chao Xu
89c8949e78
add v1 to hack/test-integration.sh
2015-06-02 14:55:45 -07:00
Chao Xu
ff6947625d
add v1 tests to hack/test-go; let default value of Container.SecurityContext to be nil
2015-06-02 14:55:45 -07:00
Filip Grzadkowski
98115facfd
Revert "Gracefully delete pods from the Kubelet"
2015-06-02 23:40:05 +02:00
Tim Hockin
3211f851ff
Make a namespace before using it
2015-06-02 14:37:18 -07:00
Brian Grant
ca733221e2
Merge pull request #8953 from thockin/services-e2e
...
Make services.sh e2e more reliable(?) and debuggable
2015-06-02 13:08:17 -07:00
Brian Grant
00005f4da8
Merge pull request #9088 from caesarxuchao/add-v1-swagger
...
add v1 swagger-spec; update existing swagger-spec
2015-06-02 10:41:58 -07:00
Tim Hockin
96caf1b582
Make services.sh e2e more reliable(?) and debuggable
2015-06-01 21:34:18 -07:00
Clayton Coleman
984692d205
Verify in hack/test-cmd
2015-06-01 19:24:01 -04:00
Chao Xu
66e4f7b053
add v1 swagger-spec; update existing swagger-spec
2015-06-01 16:16:20 -07:00
Eric Tune
1f526a5f89
Merge pull request #9027 from jlowdermilk/kubectl-deprecate-minion
...
Stop supporting the minion alias for nodes in kubectl
2015-06-01 10:26:51 -07:00
Eric Tune
936c6842e0
Merge pull request #8733 from justinsb/nodeport_aws
...
Enable support for AWS LB
2015-06-01 09:25:15 -07:00
Kris
f4e2c738f6
Delete deprecated API versions
...
pkg/service:
There were a couple of references here just as a reminder to change the
behavior of findPort. As of v1beta3, TargetPort was always defaulted, so
we could remove findDefaultPort and related tests.
pkg/apiserver:
The tests were using versioned API codecs for some of their encoding
tests. Necessary API types had to be written and registered with the
fake versioned codecs.
pkg/kubectl:
Some tests were converted to current versions where it made sense.
2015-05-29 17:17:35 -07:00
Rohit Jnagal
99c9c54c05
Merge pull request #8983 from jlowdermilk/update-patch
...
Disable --patch for kubectl update
2015-05-29 16:30:16 -07:00
Rohit Jnagal
5aed389f0a
Merge pull request #8594 from nikhiljindal/swagger
...
Stop generating v1beta1,2 swagger spec
2015-05-29 16:27:02 -07:00
Justin Santa Barbara
1e99426d5b
Support for AWS ELB
2015-05-29 18:53:35 -04:00
Jeff Lowdermilk
0c44be833d
Stop supporting the minion alias for nodes in kubectl
2015-05-29 15:40:47 -07:00
Zach Loafman
2eccd87ccb
Adjust the Jenkins E2E_REPORT_DIR to something less silly
...
Start of a fix for complaints on #8852 .
2015-05-29 13:54:18 -07:00
nikhiljindal
c0e26d2f38
Modify update-swagger-spec to stop generating v1beta1,2 spec
2015-05-29 13:39:01 -07:00
Jeff Lowdermilk
90a5b8c845
Disable --patch for kubectl update
2015-05-29 09:31:49 -07:00
Tim Hockin
3005471100
Add new apiserver flags for clusterIP (nee portal)
...
Leave old flags but marked as deprecated
2015-05-28 16:10:44 -07:00
Tim Hockin
4318ca5a8b
Rename 'portal IP' to 'cluster IP' most everywhere
...
This covers obvious transforms, but not --portal_net, $PORTAL_NET and
similar.
2015-05-28 16:10:44 -07:00
Tim Hockin
081ab3abac
Merge pull request #8853 from caesarxuchao/HostToNodeName
...
update PodSpec.Host to PodSpec.NodeName
2015-05-28 15:50:12 -07:00
Tim Hockin
e456e8d63e
Merge pull request #8921 from wojtek-t/update_instructions
...
Update instructions on auto-generating conversions.
2015-05-28 15:01:24 -07:00
Tim Hockin
f8d0060d6e
Merge pull request #8388 from pmorie/third-party-tests
...
Run tests for third-party code
2015-05-28 14:58:26 -07:00
Chao Xu
9c1153322e
update PodSpec.Host to PodSpec.NodeName in /pkg/api/types.go and /pkg/api/v1beta3/types.go
2015-05-28 14:10:06 -07:00
Wojciech Tyczynski
cb414d8bc4
Delete generated deep-copy files before updating.
2015-05-28 17:41:58 +02:00
Tim Hockin
0721377646
Merge pull request #8596 from andronat/fix_8319
...
Kubectl command renaming (run-container to run and resize to scale)
2015-05-27 15:37:54 -07:00
Tim Hockin
a3d5367156
Merge pull request #8765 from eparis/hack-test-failure
...
Fix build with --use_go_build (e2e.test failure)
2015-05-27 12:43:04 -07:00
Tim Hockin
f69eb0af67
Merge pull request #8831 from a-robinson/tp
...
Adjust the sleep time before tearing down e2e clusters and add a rough formula
2015-05-27 12:42:49 -07:00
Anastasis Andronidis
9e3a540940
rename resize to scale
2015-05-27 19:08:06 +02:00
Tim Hockin
244b10e8ba
Merge pull request #8812 from jayunit100/kubectlparam
...
Parameterized kubectl once and for all :)
2015-05-27 09:35:23 -07:00
Piotr Szczesniak
cd2c7e16d7
Merge pull request #8320 from wojtek-t/generated_deep_copy
...
Code to automatically generate functions for DeepCopy
2015-05-27 13:14:07 +02:00
jayunit100
6e4160eeb0
Set option for KubectlPath (kubectl-path) for E2E tests.
2015-05-26 21:46:59 -04:00
Alex Robinson
9d61a95464
Adjust the sleep time before tearing down e2e clusters and add a rough formula
...
for determining how long the sleep should be.
2015-05-26 21:09:05 +00:00
Alex Robinson
0188e9af8c
Sleep before deleting the cluster to give the controller manager time to
...
delete any cloudprovider resources still around from the last test.
2015-05-26 20:11:03 +00:00
Wojciech Tyczynski
b2280db724
Deep-copy functions autogeneration.
2015-05-26 21:16:26 +02:00
Eric Paris
d8187e26d3
Fix build with --use_go_build (e2e.test failure)
...
hack/build-go.sh --use_go_build would fail because e2e.test was not being
excluded from the set of things that we were "go build"ing
Instead of walking all binaries, only walk static and nonstatic
```
$ hack/build-go.sh
+++ [0524 18:09:51] Building go targets for linux/amd64:
cmd/kube-proxy
cmd/kube-apiserver
cmd/kube-controller-manager
cmd/kubelet
cmd/hyperkube
cmd/kubernetes
plugin/cmd/kube-scheduler
cmd/kubectl
cmd/integration
cmd/gendocs
cmd/genman
cmd/genbashcomp
examples/k8petstore/web-server
github.com/onsi/ginkgo/ginkgo
test/e2e/e2e.test
+++ [0524 18:09:51] +++ Warning: stdlib pkg with cgo flag not found.
+++ [0524 18:09:51] +++ Warning: stdlib pkg cannot be rebuilt since /usr/lib/golang/pkg is not writable by eparis
+++ [0524 18:09:51] +++ Warning: Make /usr/lib/golang/pkg writable for eparis for a one-time stdlib install, Or
+++ [0524 18:09:51] +++ Warning: Rebuild stdlib using the command 'CGO_ENABLED=0 go install -a -installsuffix cgo std'
+++ [0524 18:09:51] +++ Falling back to go build, which is slower
**************can't load package: package github.com/GoogleCloudPlatform/kubernetes/test/e2e/e2e.test: cannot find package "github.com/GoogleCloudPlatform/kubernetes/test/e2e/e2e.test" in any of:
/usr/lib/golang/src/github.com/GoogleCloudPlatform/kubernetes/test/e2e/e2e.test (from $GOROOT)
/storage/kubernetes/_output/local/go/src/github.com/GoogleCloudPlatform/kubernetes/test/e2e/e2e.test (from $GOPATH)
/storage/kubernetes/Godeps/_workspace/src/github.com/GoogleCloudPlatform/kubernetes/test/e2e/e2e.test
!!! Error in /storage/kubernetes/hack/lib/golang.sh:339
'go build -o "${outfile}" "${goflags[@]:+${goflags[@]}}" -ldflags "${version_ldflags}" "${binary}"' exited with status 1
Call stack:
1: /storage/kubernetes/hack/lib/golang.sh:339 kube::golang::build_binaries_for_platform(...)
2: /storage/kubernetes/hack/lib/golang.sh:488 kube::golang::build_binaries(...)
3: hack/build-go.sh:26 main(...)
Exiting with status 1
!!! Error in /storage/kubernetes/hack/lib/golang.sh:406
'( kube::golang::setup_env; local version_ldflags; version_ldflags=$(kube::version::ldflags); local host_platform; host_platform=$(kube::golang::host_platform); local goflags; eval "goflags=(${KUBE_GOFLAGS:-})"; local use_go_build; local -a targets=(); local arg; for arg in "$@";
do
if [[ "${arg}" == "--use_go_build" ]]; then
use_go_build=true;
else
if [[ "${arg}" == -* ]]; then
goflags+=("${arg}");
else
targets+=("${arg}");
fi;
fi;
done; if [[ ${#targets[@]} -eq 0 ]]; then
targets=("${KUBE_ALL_TARGETS[@]}");
fi; local -a platforms=("${KUBE_BUILD_PLATFORMS[@]:+${KUBE_BUILD_PLATFORMS[@]}}"); if [[ ${#platforms[@]} -eq 0 ]]; then
platforms=("${host_platform}");
fi; local binaries; binaries=($(kube::golang::binaries_from_targets "${targets[@]}")); local parallel=false; if [[ ${#platforms[@]} -gt 1 ]]; then
local gigs; gigs=$(kube::golang::get_physmem); if [[ ${gigs} -gt ${KUBE_PARALLEL_BUILD_MEMORY} ]]; then
kube::log::status "Multiple platforms requested and available ${gigs}G > threshold ${KUBE_PARALLEL_BUILD_MEMORY}G, building platforms in parallel"; parallel=true;
else
kube::log::status "Multiple platforms requested, but available ${gigs}G < threshold ${KUBE_PARALLEL_BUILD_MEMORY}G, building platforms in serial"; parallel=false;
fi;
fi; if [[ "${parallel}" == "true" ]]; then
kube::log::status "Building go targets for ${platforms[@]} in parallel (output will appear in a burst when complete):" "${targets[@]}"; local platform; for platform in "${platforms[@]}";
do
( kube::golang::set_platform_envs "${platform}"; kube::log::status "${platform}: go build started"; kube::golang::build_binaries_for_platform ${platform} ${use_go_build:-}; kube::log::status "${platform}: go build finished" ) &> "/tmp//${platform//\//_}.build" &
done; local fails=0; for job in $(jobs -p);
do
wait ${job} || let "fails+=1";
done; for platform in "${platforms[@]}";
do
cat "/tmp//${platform//\//_}.build";
done; exit ${fails};
else
for platform in "${platforms[@]}";
do
kube::log::status "Building go targets for ${platform}:" "${targets[@]}"; kube::golang::set_platform_envs "${platform}"; kube::golang::build_binaries_for_platform ${platform} ${use_go_build:-};
done;
fi )' exited with status 1
Call stack:
1: /storage/kubernetes/hack/lib/golang.sh:406 kube::golang::build_binaries(...)
2: hack/build-go.sh:26 main(...)
Exiting with status 1
```
2015-05-24 19:16:26 -04:00
Quinton Hoole
b8ca74ab66
Don't clobber GINKGO_TEST_ARGS in hack/jenkins/e2e.go
2015-05-22 14:54:05 -07:00
Dawn Chen
cc6a31354e
Merge pull request #8169 from kargakis/expose-use-resource-builder
...
expose: Use resource builder
2015-05-22 12:29:24 -07:00
Jerzy Szczepkowski
ef965a60f2
Implementation of e2e test that resizes cluster (works on GCE).
2015-05-22 02:59:25 +02:00
Dawn Chen
b33c4259f8
Merge pull request #8566 from markturansky/generator_godep
...
Added GOPATH vars and godep to generator script
2015-05-21 09:34:12 -07:00
kargakis
30958f892d
expose: Use resource builder
...
Plus:
* Rename flag --service-name to --name
* Some refactoring
2015-05-20 23:55:07 +02:00
Wojciech Tyczynski
2df11cea32
Automatically generate conversions
2015-05-20 17:11:18 +02:00
markturansky
10258c46d7
Added GOPATH vars and godep to generator script
2015-05-20 10:56:54 -04:00
Jeff Grafton
e968b6be81
Merge pull request #8442 from mbforbes/e2ePodsReady
...
Ensure pods both running and ready before starting e2e tests
2015-05-19 13:40:08 -07:00
Tim Hockin
97abc19810
Merge pull request #8299 from thockin/import-names
...
rename imported pkgs for readability
2015-05-19 12:01:57 -07:00
Tim Hockin
76a0a7dff2
Shush minor stdout noise on builds
2015-05-19 11:24:44 -07:00
Tim Hockin
70c94fad6d
Don't rename api imports in conversions
2015-05-19 11:21:21 -07:00
Max Forbes
1da46ca3d0
Ensure pods both running and ready before starting e2e tests
2015-05-19 10:53:02 -07:00
Jeff Grafton
90f61f3005
Change into the output directory before running go test -c.
2015-05-19 10:04:27 -07:00
Jeff Grafton
bf1de72f4a
Revert "Revert "Use native Ginkgo test runner instead of cmd/e2e (attempt N)""
...
This reverts commit f4bb6aa37d
.
2015-05-19 09:13:08 -07:00
Quinton Hoole
f4bb6aa37d
Revert "Use native Ginkgo test runner instead of cmd/e2e (attempt N)"
2015-05-18 21:04:26 -07:00
Nikhil Jindal
0a6007b299
Merge pull request #8429 from jackgr/master
...
Fix portability bugs in hack/local-up-cluster.sh
2015-05-18 18:17:47 -07:00
Tim Hockin
2307350d1b
Merge pull request #8443 from wojtek-t/conversion_improvements
...
Script for regenerate auto-generated conversions.
2015-05-18 17:24:08 -07:00
Wojciech Tyczynski
9a93206774
Script for automatically generate conversions.
2015-05-19 02:17:58 +02:00
Daniel Smith
5e056f119d
Merge pull request #6694 from bprashanth/bench
...
Add a simple master benchmark and a wrapper to run it.
2015-05-18 14:42:24 -07:00
jackgr
87a26e2fd2
Fixes portability issues in cleanup() that cause the pid expansion to fail when host_os=darwin by replacing ps --ppid and ps --pid with pgrep -P and ps -p, and by suppressing header line in output with ps -o pid=.
2015-05-18 12:14:21 -07:00
Jeff Grafton
35c4b92e92
Make e2e compatible with Go 1.3 and OS X.
...
Go 1.4 added the -o flag to the "go test" command as well as support for
the TestMain() function, so we must work around these not existing in
Go 1.3.
The version of readlink on OS X does not have the -f flag - so we'll
just skip canonicalizing the path.
2015-05-18 12:11:33 -07:00
Jeff Grafton
b79fae5d71
Revert "Revert "Once again, use native Ginkgo test runner instead of cmd/e2e.""
...
This reverts commit 67da1ac0c8
.
2015-05-18 11:39:21 -07:00
Victor Marmol
d431e98604
Merge pull request #8234 from nak3/terminate-child-process-local-up-cluster
...
Ensuring that we never call kill with empty arguments in local-cluster-up
2015-05-18 08:40:41 -07:00
Paul Morie
3b8e4d97a1
Run tests for third-party code
2015-05-16 16:52:23 -04:00
Jeff Lowdermilk
553f9f822b
Add ga-beacon analytics to gendocs scripts
...
hack/run-gendocs.sh puts ga-beacon analytics link into all md files,
hack/verify-gendocs.sh verifies presence of link.
2015-05-15 18:56:38 -07:00
Daniel Smith
cf337051e0
Merge pull request #7819 from nikhiljindal/etcdTranslation
...
Adding a script to update etcd objects as per the latest API Version
2015-05-15 18:28:36 -07:00
Prashanth Balasubramanian
4200033c0a
Add a simple master benchmark and a wrapper to run it.
2015-05-15 17:30:17 -07:00
Jeff Grafton
67da1ac0c8
Revert "Once again, use native Ginkgo test runner instead of cmd/e2e."
...
This change broke compilation on go 1.3 and running e2e tests on OS X.
This reverts commit 86b023fdd6
.
2015-05-15 16:41:55 -07:00
nikhiljindal
fa9f864782
Adding a script to update etcd objects
2015-05-15 16:20:35 -07:00
Kenjiro Nakayama
4c859c7e35
Ensuring that we never call kill with empty arguments in local-cluster-up
2015-05-16 07:50:31 +09:00
Quinton Hoole
c4fa78509d
Merge pull request #7653 from ixdy/native-ginkgo-runner
...
Once again, use native Ginkgo test runner instead of cmd/e2e
2015-05-15 15:29:19 -07:00
David Oppenheimer
b8c469e4f0
Merge pull request #8134 from nikhiljindal/test-go
...
Fixing the number of times our unit tests are run
2015-05-15 15:28:34 -07:00
Jeff Grafton
86b023fdd6
Once again, use native Ginkgo test runner instead of cmd/e2e.
...
This commit deletes cmd/e2e and updates hack/ginkgo-e2e.sh to use the
'ginkgo' command instead. All logic from cmd/e2e/e2e.go and
test/e2e/driver.go have been combined into the new file
test/e2e/e2e_test.go.
The test tarball now includes a built version of the test/e2e test
binary, which includes all tests under test/e2e. This was accomplished
by updating the build scripts to use 'go test -c' when a target name
ended with '.test', and adding a dependency on test/e2e/e2e.test.
This prebuilt test binary is passed to the Ginkgo runner in
hack/ginkgo-e2e.sh. In a future change, we can add support to run
Ginkgo against the source tree if it is available.
This change is generally intended to have no externally visible changes,
aside from the following caveats:
- The -t/--tests flag has been removed
- Calling cmd/e2e/e2e directly obviously won't work, but that was never
intended to be supported anyway
- If the GINKGO_PARALLEL environment variable is set to y, then ginkgo
will run test specs in parallel. (Currently defaults to n, since some
tests are broken in this mode.)
Additionally, several tests which made poor assumptions about cwd or
used testContext before it had been set have been fixed.
2015-05-15 11:54:53 -07:00
Rohit Jnagal
bd0156c65a
Merge pull request #8204 from jlowdermilk/gke-todos
...
Cleanup some todos for gke + rip out dead code
2015-05-14 10:30:24 -07:00
Yifan Gu
621dc01f42
Remove 'auth-path' in the arguments for kubelet.
...
Otherwise kubelet will fail to create the client because it can't
find the nonexisting auth file.
2015-05-13 16:26:22 -07:00
Paul Morie
8fcf470167
Merge pull request #8174 from liggitt/local_up_cluster
...
Fix key generation in local-up-cluster.sh
2015-05-13 17:33:25 -04:00
Jeff Lowdermilk
3f3760a14a
Cleanup some todos for gke + rip out dead AuthConfig code
2015-05-13 13:54:02 -07:00
Tim Hockin
8e7970f2a1
mkdir -p in doc generation
2015-05-13 12:50:25 -07:00
nikhiljindal
0e9d7d1451
Fixing the number of times our unit tests are run
2015-05-13 09:56:13 -07:00
Jordan Liggitt
b552503c07
Fix key generation in local-up-cluster.sh
2015-05-13 10:04:40 -04:00
Robert Bailey
c47b9178b4
Replace the auth config file with a kubeconfig file when
...
starting the kubelet on GCE.
2015-05-13 01:03:28 -07:00
Nikhil Jindal
d75bd8bf2a
Merge pull request #7101 from liggitt/service_account
...
ServiceAccounts
2015-05-12 10:23:41 -07:00
Max Forbes
579aed4161
Add zone to jenkins version-getting call.
2015-05-12 09:23:41 -07:00
Max Forbes
a161800e13
Allow Jenkins to get the version from the GKE server.
2015-05-11 17:31:29 -07:00
Jordan Liggitt
7e14a80f63
ServiceAccount admission plugin
2015-05-11 17:18:06 -04:00
Jordan Liggitt
db1f0dc906
JWT token generation/verification
2015-05-11 17:18:06 -04:00
saadali
94643ce6c9
Modify Jenkins E2E to not fetch/unpack Kuberenetes, when deployment is
...
disabled,
2015-05-11 12:31:31 -07:00
Nikhil Jindal
3d8f94ed59
Merge pull request #8040 from nak3/terminate-child-process-local-up-cluster
...
Terminate child process by cleanup() in local-up-cluster.sh
2015-05-11 10:11:28 -07:00
Jeff Lowdermilk
6523d18130
Future proof GKE kubeconfig handling in e2e driver
2015-05-11 09:57:54 -07:00
Kenjiro Nakayama
e39f29ca16
Terminate child process by cleanup() in local-up-cluster.sh
2015-05-11 00:07:22 +09:00
Shawn Smith
ecce796ee8
Use Fatalf
2015-05-10 13:08:55 +09:00
Justin SB
a442918d31
AWS: Don't try to copy gce_keys in jenkins e2e job
...
Should fix e2e builds.
For the AWS jenkins jobs, I've been using the secret plugin.
2015-05-09 08:55:35 -07:00
Max Forbes
590d3873ea
Make jenkins e2e runs reuse one key, take two.
2015-05-08 15:52:56 -07:00
Zach Loafman
c6400cab1f
Revert "Make jenkins e2e runs reuse one SSH key."
2015-05-08 15:46:42 -07:00
Max Forbes
41cc8027ab
Make jenkins e2e runs reuse one key.
2015-05-08 14:51:42 -07:00
saadali
7cc25842fa
Add control variables to Jenkins E2E script
2015-05-07 17:01:25 -07:00
CJ Cullen
fbd125e4e2
Remove restriction that cluster-cidr be a class-b
2015-05-06 15:01:13 -07:00
Paul Morie
5c3bf0b08f
Remove unnecessary bind-mount from dockerized kubelet run
2015-05-06 15:38:17 -04:00
Paul Morie
fa1d065595
Add ability to dockerize kubelet in local cluster
2015-05-06 09:36:52 -04:00
Zach Loafman
875e83a741
Revert "Revert "Security context - types, kubelet, admission""
2015-05-05 16:02:13 -07:00
Zach Loafman
f48904fd5e
Revert "Security context - types, kubelet, admission"
2015-05-05 15:20:39 -07:00
Yifan Gu
102a2c4269
hack/local-up-cluster.sh: Add env to enable rkt in local cluster.
...
This makes testing rkt easier.
2015-05-05 14:07:10 -07:00
Paul Morie
1625e231dd
Merge pull request #7343 from pweil-/security-context-types
...
Security context - types, kubelet, admission
2015-05-05 16:26:09 -04:00
Eric Paris
63e3366581
Merge pull request #7757 from nak3/build_genbashcomp_with_make_all
...
Add genbashcomp to KUBE_TEST_TARGETS
2015-05-05 13:47:11 -05:00
Paul Weil
982bf19c20
security context initial implementation - squash
2015-05-05 13:46:13 -04:00
Jeff Lowdermilk
87cdc3f032
Merge pull request #7672 from eparis/boilerplate-python
...
Check license boilerplate for python files
2015-05-05 09:23:36 -07:00
Jeff Lowdermilk
c1ae69da14
Merge pull request #7705 from bprashanth/rollingupdate_2
...
Reliable updates in rollingupdate
2015-05-05 09:23:25 -07:00
Kenjiro Nakayama
4c9f2d89ba
Add genbashcomp to KUBE_TEST_TARGETS
2015-05-05 16:42:23 +09:00
Eric Paris
c9cd50dc49
Check python files for valid license boilerplate
2015-05-04 18:37:47 -04:00
Prashanth Balasubramanian
faa65cbd20
More reliable updates in rollingupdate
2015-05-04 15:29:30 -07:00
Daniel Smith
838b59cb4d
make benchmark able to run only specific packages
2015-05-04 14:28:37 -07:00
Clayton Coleman
dd8184247e
Merge pull request #7629 from caesarxuchao/new-fix-7260-7491
...
Change the order the different versions of API are registered
2015-05-04 15:01:59 -04:00
Jeff Lowdermilk
dda0af07b3
Merge pull request #7654 from eparis/boilerplate-speedup
...
Boilerplate speedup
2015-05-04 09:46:21 -07:00
Wojciech Tyczynski
690c991415
Merge pull request #7692 from BenTheElder/e2e_fixes
...
Fix typo in e2e
2015-05-04 12:01:22 +02:00
Wojciech Tyczynski
a7205b1fe9
Merge pull request #7685 from jayunit100/etcd-minor
...
(minor) Add pgrep debugging to etcd error
2015-05-04 11:21:02 +02:00
BenTheElder
129d7f8d26
Fix typo in e2e
...
Correct comment in e2e.go ’…at least 3 minions running’ -> ‘…at least minMinionCount
minions running’.
2015-05-04 04:42:07 -04:00
jayunit100
cdf068495a
(minor) Add pgrep debugging to etcd error
2015-05-03 16:59:45 +00:00
Eric Paris
f4d0b8df3a
Do all boilerplate checks in 1 python call
...
It's just a little bit faster.....
BEFORE:
$ time hack/verify-boilerplate.sh
real 0m9.378s
user 0m3.405s
sys 0m13.906s
AFTER:
$ time hack/verify-boilerplate.sh
real 0m0.181s
user 0m0.114s
sys 0m0.068s
2015-05-01 20:46:57 -04:00
Chao Xu
4787c66214
Register the API versions to the DefaultRESTMapper in the order of preferred versions first.
...
This makes kubectl sends requests to URLs in the format defined by the latest API version.
2015-05-01 15:14:15 -07:00
Eric Paris
6b3a6e6b98
Make copyright ownership statement generic
...
Instead of saying "Google Inc." (which is not always correct) say "The
Kubernetes Authors", which is generic.
2015-05-01 17:49:56 -04:00
Zach Loafman
230449f122
Merge pull request #7593 from ixdy/jenkins-godep
...
Build github.com/onsi/ginkgo/ginkgo as a part of the release
2015-05-01 14:10:31 -07:00
Jeff Grafton
1359125a4e
Build github.com/onsi/ginkgo/ginkgo as a part of the release.
...
Additionally, add hack/lib to the testing tarball.
2015-05-01 11:29:11 -07:00
Jeff Lowdermilk
ec9942e995
Merge pull request #7540 from bprashanth/rollingupdate
...
Fix rolling update --image
2015-05-01 10:07:46 -07:00
Alex Robinson
1bb76633da
Make hack/test-go.sh friendlier to OS X bash by not using a -1 array index.
...
Without this, everytime I run test-go.sh I get the following error:
./hack/test-go.sh: line 215: apiVersions: bad array subscript
2015-04-30 14:56:02 -07:00
Quinton Hoole
bfaf976df7
Revert "Use native Ginkgo test runner instead of cmd/e2e"
2015-04-30 13:45:46 -07:00
Quinton Hoole
3602884d32
Merge pull request #7462 from ixdy/native-ginkgo-runner
...
Use native Ginkgo test runner instead of cmd/e2e
2015-04-30 13:27:04 -07:00
Prashanth Balasubramanian
c8ea0c27e9
Fix rollingupdate --image
2015-04-30 11:28:18 -07:00
CJ Cullen
615906ccca
Fix parallel-e2e.sh to work on my macbook (bash v3.2)
2015-04-29 10:52:21 -07:00
Jeff Grafton
57750ccb51
Use native Ginkgo test runner instead of cmd/e2e.
...
This commit deletes cmd/e2e and updates hack/ginkgo-e2e.sh to use the
'ginkgo' command instead. All logic from cmd/e2e/e2e.go and
test/e2e/driver.go have been combined into the new file
test/e2e/e2e_test.go.
Additionally, several tests which made poor assumptions about cwd or
used testContext before it was set have been fixed.
This change is generally intended to have no externally visible changes,
aside from the following caveats:
- The -t/--tests flag has been removed
- Calling cmd/e2e/e2e directly obviously won't work, but that was never
supported anyway
- If the GINKGO_PARALLEL environment variable is set to y, then ginkgo
will run test specs in parallel. (Currently defaults to n, since some
tests are broken in this mode.)
2015-04-28 18:42:37 -07:00
Alex Robinson
79b9b1b0ef
Build hyperkube into a static binary.
2015-04-28 02:13:09 +00:00
Tim Hockin
a3d45fada8
Change flags to use dashes in help
2015-04-27 15:11:03 -07:00
Daniel Smith
83093af8b0
Merge pull request #5707 from endocode/kbeecher/etcd_prefix
...
Adds ability to define a prefix for etcd paths
2015-04-27 13:37:43 -07:00
Karl Beecher
a7623ca6cc
Adds ability to define a prefix for etcd paths
...
The API server can be supplied (via a command line flag) with a custom
prefix that is prepended to etcd resources paths.
Refs: #3476
2015-04-24 12:12:39 +02:00
Prashanth Balasubramanian
080bc5b3dd
Configurable log levels for integration tests.
2015-04-23 18:12:48 -07:00
David Oppenheimer
e8b28c59c6
Merge pull request #7228 from jlowdermilk/describe-examples
...
Add examples for kubectl describe, make gendocs less spammy
2015-04-23 16:08:35 -07:00
Jeff Lowdermilk
a8e2f6e9c8
Add examples for kubectl describe, and make gendocs less spammy
...
Makes hack/{run/verify}-gendocs.sh ignore generated-timestamp-only
changes so minor changes to kubectl don't have to touch the entire
set of md docs.
2015-04-23 14:53:10 -07:00
nikhiljindal
1e323d77bc
Updating the guestbook example to v1beta3
2015-04-23 14:34:36 -07:00
Brian Grant
97302af015
Merge pull request #5012 from smarterclayton/podtemplates
...
Pod templates as their own type
2015-04-22 11:50:24 -07:00
Zach Loafman
e055ee0b71
Use KUBE_SKIP_UPDATE in Jenkins
...
After #7146 , we need to protect Jenkins from the internal gcloud bug (again).
2015-04-22 10:08:09 -07:00
Clayton Coleman
10c2ace6bf
Pod Templates
2015-04-22 12:54:25 -04:00
Max Forbes
5880166845
Add support for using released tars (instead of just ci) as well as using a stable version (instead of just latest).
2015-04-21 15:56:23 -07:00
Daniel Smith
1ebe994ba7
Merge pull request #7056 from kubernetes-ui/kubernetes-ui-dashboard
...
Kubernetes UI with Dashboard component
2015-04-21 12:16:47 -07:00
Robert Bailey
a50e02bb3b
Merge pull request #7078 from jlowdermilk/gke-kubectl
...
Use standalone kubectl for gke, remove special case for vagrant
2015-04-21 12:11:45 -07:00
Jeff Lowdermilk
70a576e25a
Use standalone kubectl for gke, remove special case for vagrant
...
also fix hack/local-up-cluster.sh kubeconfig instructions
2015-04-21 11:01:45 -07:00
Patrick Reilly
716d98c39e
initial commit of chrome only of new replacement web ui
...
remove node modules
make new data file for web ui
initial commit of dashboard
switch back to non SSL request
move port splitting to common place; add to node resource location
Signed-off-by: Patrick Reilly <patrick@kismatic.io>
various path fixes
make svg path relative
work around missing mime type
Signed-off-by: Patrick Reilly <patrick@kismatic.io>
fix paths
fix karma path
remove bad protractor test
2015-04-21 07:24:06 -07:00
Wojciech Tyczynski
21788d8e66
Merge pull request #7033 from nak3/add-cert_dir-option-to-apiserver
...
Add cert_dir option to kube-apiserver
2015-04-21 09:16:01 +02:00
Jeff Lowdermilk
89fba5ff63
Merge pull request #6942 from smarterclayton/simplify_object_export
...
List output with differing types should be more resilient
2015-04-20 13:48:57 -07:00
Jeff Grafton
fafd1df7a6
Revert "Continue after failed unit test"
...
This reverts commit f70752d9e1
.
This change caused Travis and Shippable to report success on all test
runs, even if any tests failed or timed out.
2015-04-20 11:59:18 -07:00
Clayton Coleman
545a5a865f
List output with differing types should be more resilient
...
kubectl get can output a series of objects as a List in versioned
form, but not all API objects are available in the same schema.
Make the act of converting a []runtime.Object to api.List more
robust and add a test to verify its behavior in Get.
Makes it easier for client code to output unified objects.
2015-04-20 14:44:16 -04:00
Jeff Lowdermilk
196b3d066d
Merge pull request #6919 from zmerlynn/sharded-e2e
...
Add hack/parallel-e2e.sh to run hack/e2e.go on multiple clusters
2015-04-20 11:34:18 -07:00
Zach Loafman
a5f7f4c9a1
Add hack/parallel-e2e.sh to run hack/e2e.go on multiple clusters
...
$ hack/parallel-e2e.sh
Usage: hack/parallel-e2e.sh <number of clusters> [options to hack/e2e.go]
Output is logged to _output/e2e/<prefix>. Test failures are aggregated
by slurping the junit results from the parallelized output and
summarized at the end of the run.
2015-04-20 11:18:09 -07:00
Jeff Lowdermilk
3787fc5eca
set KUBECONFIG in common.sh, default to new location
...
and preserve value in ginkgo e2e test driver
2015-04-20 11:07:35 -07:00
Kenjiro Nakayama
51d0443dde
Add cert_dir option to kube-apiserver
2015-04-19 17:40:08 +09:00
Eric Paris
2915c90200
Remove -installsuffix from go build
...
This is a go install argument which has no use in go build. Clean it up.
2015-04-17 15:33:00 -04:00
Eric Paris
d7fefb6f39
Indicate progress when doing a go build
...
It is slow.
2015-04-17 15:32:26 -04:00
Brian Grant
95183dde5a
Merge pull request #6988 from zmerlynn/flock_gcloud_update
...
Use flock around gcloud component update to avoid race
2015-04-17 12:23:58 -07:00
Brian Grant
2cd04755c5
Merge pull request #6953 from eparis/cgo-build-fallback
...
fall back to go build when static cgo not possible
2015-04-17 12:03:50 -07:00
Jeff Lowdermilk
2a8291a67e
Retry Move KUBECONFIG to common.sh, change default to new location
2015-04-17 10:33:12 -07:00
Zach Loafman
d5f02b2970
Use flock around gcloud component update to avoid race
2015-04-17 09:50:15 -07:00
Clayton Coleman
3bc42f1635
Merge pull request #6573 from kargakis/setup-resource-aliases
...
Support setting up aliases for groups of resources
2015-04-17 11:16:30 -04:00
kargakis
9d056c6bd8
Support setting up aliases for groups of resources
...
Closes #5278
2015-04-17 16:31:59 +02:00
Eric Paris
5fb8602c65
fall back to go build when static cgo not possible
...
Instead of just failing, use go build if people don't have the magic cgo
stuff we need build-able/write-able.
2015-04-17 09:50:54 -04:00
Zach Loafman
0232888a4b
Merge pull request #6975 from zmerlynn/dont_error_on_update
...
Don't error out if gcloud update fails
2015-04-17 06:17:12 -07:00
Zach Loafman
db7e640bb5
Don't error out if gcloud update fails
...
Fixes #6974
2015-04-17 06:16:17 -07:00
Zach Loafman
e87ae8f8e3
Merge pull request #6891 from nak3/fix_obsolete_option
...
Replace obsolete tests option
2015-04-16 15:21:15 -07:00
Eric Tune
14eb70b1dc
Merge pull request #6899 from nak3/fix-unittest-after-fail
...
Continue after failed unit test
2015-04-16 13:21:45 -07:00
Kenjiro Nakayama
f70752d9e1
Continue after failed unit test
2015-04-16 16:53:07 +09:00
Kenjiro Nakayama
1d804629b6
Escape integration test codes from unit tests
2015-04-16 15:41:03 +09:00
Kenjiro Nakayama
9a7b842d17
Replace obsolete tests option
2015-04-16 11:49:55 +09:00
Brian Grant
29e68ad392
Merge pull request #6790 from nikhiljindal/encoder
...
Removing references to v1beta1 from hack/ and test/
2015-04-15 10:25:33 -07:00
Wojciech Tyczynski
586bae7948
Bigger performance test cluster
2015-04-15 09:25:35 +02:00
Dawn Chen
012a35bd02
Merge pull request #6816 from jlowdermilk/make-clean-is-your-friend
...
Suggest running make clean on verify-gendocs failure
2015-04-14 15:42:16 -07:00
Jeff Lowdermilk
797903798e
Suggest running make clean on verify-gendocs failure
2015-04-14 13:21:43 -07:00
Jeff Lowdermilk
b59266ad84
Merge pull request #6798 from xiang90/fix_doc
...
docs: fix docs for #6776
2015-04-14 13:15:10 -07:00
Xiang Li
5466dd8138
hack: reliable sort in util.sh
2015-04-14 12:52:28 -07:00
nikhiljindal
a2c29d48ec
Removing references to v1beta1 from hack/ and test/
2015-04-14 11:31:37 -07:00
Dawn Chen
913dc4e490
Revert "Use a helper to find built binaries"
2015-04-14 11:24:49 -07:00
Dawn Chen
7bfe57b30d
Merge pull request #6783 from eparis/use-hack-lib-find-binaries
...
Use a helper to find built binaries
2015-04-14 09:18:14 -07:00
Wojciech Tyczynski
8fb22a750b
Explicitly define scalability test suite
2015-04-14 14:55:11 +02:00
Fabio Yeon
e99141de0d
Merge pull request #6729 from smarterclayton/chaosclient
...
Add a new Chaos transport that can simulate network failure and add it to the kubelet
2015-04-13 16:06:53 -07:00
Eric Paris
6d4ab258f0
Use a helper to find built binaries
...
We should not be determining the arch/os and all the possible
directories binaries can live. Let a hack/lib/ helper do it for us.
2015-04-13 18:57:36 -04:00
Clayton Coleman
ca335d7be9
Add support for chaos to Kubelet and hack/local-up-cluster.sh
2015-04-13 18:21:20 -04:00
Eric Paris
26149bd83d
Doc generation should remove old doc files
...
Right now, our doc generation scripts notice if you make changes and
don't regen docs, don't include new docs, etc. But they miss it if your
changes should have REMOVED a doc. Both kubectl-apiversion and
kubectl-clusterinfo should have been removed, but weren't.
This patch starts tracking all generated doc files and will cause
problems if files should be removed and aren't.
2015-04-13 17:48:24 -04:00
Eric Paris
d7a89117b7
Use a helper to find built binaries
...
Instead of doing it all outselves....
2015-04-13 15:27:55 -04:00
Eric Paris
ebb0affc21
Automatically generate bash completions for kubectl
2015-04-13 15:27:55 -04:00
Dawn Chen
f345aec360
Merge pull request #6762 from justinsb/e2e_fix_aws
...
Specify equivalent instance types for AWS, in hack/jenkins/e2e.sh
2015-04-13 10:16:36 -07:00
Jeff Lowdermilk
4a41a7ffe5
Merge pull request #6745 from eparis/auto-gen-markdown
...
Auto gen markdown
2015-04-13 10:00:55 -07:00
Justin Santa Barbara
cf02d8cef2
Specify equivalent instance types for AWS, in hack/jenkins/e2e.sh
...
This should unbreak the AWS e2e tests
2015-04-13 08:28:24 -07:00
Wojciech Tyczynski
f7fbc2d0c5
Prepare for running scalability test on Jenkins
2015-04-13 11:36:12 +02:00
Eric Paris
263dc981db
Use spf13/cobra md generation instead of doing it outselves
2015-04-12 15:03:13 -04:00
derekwaynecarr
2484adbbfe
Local-up-cluster does not have admission control
2015-04-10 15:50:33 -04:00
Yu-Ju Hong
faf47b6f0b
Limit the number of concurrent tests in integration.go
...
Integration test often time out because the machine is loaded. Instead of
increasing timeout, this change hopes to address the issue by limiting the
number of tests running simultaneously.
Add a new flag in integration.go to specify the maximum number of concurrent
tests. Set the default in travis and shippable configurations to be 4.
2015-04-09 16:54:23 -07:00
nikhiljindal
08d9e244f7
Removing some references to v1beta1 from test code
2015-04-08 17:28:06 -07:00
Brian Grant
c4cbc9bc46
Merge pull request #6581 from nikhiljindal/v1beta3
...
Moving v1beta1 kubectl examples to v1beta3
2015-04-08 14:01:57 -07:00
nikhiljindal
fe60be3179
Moving v1beta1 kubectl examples to v1beta3
2015-04-08 13:08:13 -07:00
Tim Hockin
f9a3315367
Remove useless e2e noise
2015-04-07 17:52:32 -07:00
Rohit Jnagal
8b4914dd0f
Merge pull request #6472 from zmerlynn/fix_build_status
...
Add kube::util::wait-for-jobs to report status, unlike builtin wait
2015-04-06 13:39:58 -07:00
Zach Loafman
2bc5dd559a
Add kube::util::wait-for-jobs to report status, unlike builtin wait
...
** Sigh **
Fixes an additional complaint in #6463
2015-04-06 11:11:49 -07:00
Nikhil Jindal
7270010a3a
Merge pull request #6444 from you-n-g/master
...
etcd should be started after the trap func set
2015-04-06 10:50:14 -07:00
Rohit Jnagal
6b51476791
Merge pull request #6460 from jayunit100/gofmtmsg
...
Make gofmt message precise (-s option)
2015-04-06 08:58:20 -07:00
markturansky
95bd170ca2
PV & PVC Client implementation
2015-04-06 08:46:43 -04:00
jayunit100
8d6c163650
Make gofmt message explicit about -s option
2015-04-06 00:12:06 -04:00
Young
802610b13a
etcd should be started after the trap func set
2015-04-05 03:41:26 -04:00
Brian Grant
b0b6418ca3
Merge pull request #6377 from nikhiljindal/kubevtl
...
Updating components to use v1beta3
2015-04-03 15:58:09 -07:00
nikhiljindal
f2b72931fc
Updating components to use v1beta3
2015-04-03 15:19:14 -07:00
Brendan Burns
88dbdc4a69
Merge pull request #6203 from brendandburns/qps
...
Add a QPS limiter to the kubernetes client.
2015-04-03 14:24:29 -07:00
Eric Tune
e49424785e
Merge pull request #6380 from roberthbailey/kubelet-ssl
...
Configure the kubelet to use HTTPS (take 2)
2015-04-03 13:43:00 -07:00
Brendan Burns
3f98ac07c2
Add a QPS limiter to the kubernetes client.
2015-04-03 11:58:51 -07:00
Zach Loafman
c0ed73a10d
Only build in parallel if the build machine is >8G
2015-04-02 17:56:45 -07:00
Zach Loafman
e159c02a2a
Completely neutral commit that just factors each platform build out to
...
a function (to make it kinder on reviewers for the next piece).
2015-04-02 17:56:44 -07:00
Zach Loafman
04813f0dcd
Revert "Revert "Parallelize architectures in both the building and packaging phases of make release
""
...
This reverts commit 9f60dde320
.
2015-04-02 17:56:44 -07:00
Robert Bailey
f15e34a1bf
Revert "Merge pull request #6309 from GoogleCloudPlatform/revert-6243-kubelet-ssl"
...
This reverts commit 96a0a0d618
, reversing
changes made to 2af9b54147
.
2015-04-02 10:44:37 -07:00
Zach Loafman
9f60dde320
Revert "Parallelize architectures in both the building and packaging phases of make release
"
2015-04-02 08:49:11 -07:00
Jerzy Szczepkowski
ad306c9c6e
Merge pull request #6340 from zmerlynn/upgrade_gcloud
...
Automatically upgrade gcloud in Jenkins (reenable)
2015-04-02 09:37:27 +02:00
Jerzy Szczepkowski
8cff43dfb7
Merge pull request #6330 from jayunit100/local-up-fix
...
Check to prevent split brain api-servers/api-clients which can happen if...
2015-04-02 09:34:19 +02:00
Quinton Hoole
46e5ec3617
Merge pull request #6339 from zmerlynn/skip_paranoia
...
Skip cleaning docker cache prior to build
2015-04-01 20:21:49 -07:00
Zach Loafman
6ba14f1c28
Skip cleaning docker cache prior to build
...
This seems to be more trouble than its worth, and much of
the remaining build time (except the push itself). We can
cache the cross-build/golang images between builds - it's
not going to kill us, and it'll save the occasional weird
flake of not finding an image when it tries to rm one of
these.
2015-04-01 20:04:24 -07:00
jayunit100
1cc61174ea
Check to prevent split brain api-servers/api-clients which can happen if etcd dies between rerun of local-up-cluster.sh
2015-04-01 22:56:34 -04:00
Zach Loafman
4fa84a4f41
Automatically upgrade gcloud in Jenkins (reenable)
2015-04-01 19:27:17 -07:00
Zach Loafman
1ff0a1e2a1
Merge pull request #6270 from jlowdermilk/gcloud-updates
...
Updates for gcloud 0.9.54
2015-04-01 19:14:57 -07:00
Quinton Hoole
3a724b2622
Merge pull request #6196 from zmerlynn/parallel_arch
...
Parallelize architectures in both the building and packaging phases of `make release`
2015-04-01 17:55:43 -07:00
Victor Marmol
312bc71c8b
Merge pull request #6304 from roberthbailey/test-cmd-timeout
...
Increase the time we wait for the kubelet to be healthy.
2015-04-01 17:36:44 -07:00
Zach Loafman
0bbf4e99f6
Re tab-ify golang.sh
2015-04-01 17:31:15 -07:00
Zach Loafman
44b4c9ff26
Parallelize architectures in "make release"
...
On my desktop, this took the KUBE_RELEASE_RUN_TESTS=n
"make release" down from 172s to 115s
2015-04-01 17:29:22 -07:00
Satnam Singh
3c119c008d
Convert kubernetes/serve_hostname to gcr.io/google_containers/server_hostname
2015-04-01 15:39:05 -07:00
Robert Bailey
1fa7955807
Increase the time we wait for the kubelet to be healthy.
2015-04-01 15:10:32 -07:00
Victor Marmol
0cf3590c36
Merge pull request #6299 from thockin/faster_build
...
Make the build faster - call 'go install' once
2015-04-01 14:41:53 -07:00
Robert Bailey
32a1c052dc
Revert "Configure the kubelet to use HTTPS"
2015-04-01 13:59:31 -07:00
Robert Bailey
836fb4ac0b
Remove liveness.sh.
2015-04-01 11:56:39 -07:00
Tim Hockin
005da75f4a
Make the build faster - call 'go install' once
2015-04-01 10:10:27 -07:00
Jeff Lowdermilk
cfc04f41b8
Updates for gcloud changes (alpha, kubeconfig)
2015-04-01 09:27:06 -07:00
Robert Bailey
dd9ec46cc0
Fix test-cmd to work with the kubelet listening on HTTPS.
2015-04-01 09:09:29 -07:00
Paul Morie
fdae6748d2
Fix typo in std install instructions for build
2015-03-31 17:36:47 -04:00
Brian Grant
3354cffbf0
Merge pull request #6182 from thockin/plural_services_20
...
Implement multi-port Services
2015-03-31 12:55:21 -07:00
Abhishek Shah
745368d6b2
Nicer error msg if stdlib pkg with cgo flag is not installed
2015-03-31 08:37:33 -07:00
Tim Hockin
eeff1b74fb
Fixes from feedback and testing
2015-03-30 23:52:37 -07:00
Zach Loafman
8fff5338e2
Fix gke_test (should've realized why the cut -c 2- was there above this)
2015-03-30 13:38:29 -07:00