Garrett Rodrigues
ad1e5e98c2
Updated top level owners file to match new format
2017-01-19 11:29:16 -08:00
Jeff Grafton
16aa59c34a
bazel: add a config setting to control embedding kubernetes-src.tar.gz
2017-01-18 17:07:55 -08:00
Jeff Grafton
a8c528dccd
add a TODO
2017-01-18 16:40:35 -08:00
Jeff Grafton
bc4b6ac397
Build release tarballs in bazel and add make bazel-release rule
2017-01-13 16:17:44 -08:00
Jeff Grafton
9beb13aba6
Refactor docker bazel rules and tag docker images
2017-01-13 14:23:31 -08:00
Jeff Grafton
c0e972d4dd
Reorder package_kube_manifests_tarball a bit to make it more readable
2017-01-13 14:16:56 -08:00
Jeff Grafton
0fc56ea0c8
Wait until kubernetes-src.tar.gz is build before building node/server.
2017-01-11 15:55:44 -08:00
Jeff Grafton
39217af9e9
Update amd64 kube-proxy base image to debian-iptables-amd64:v5
2017-01-11 00:49:13 -08:00
Jeff Grafton
9172bf63e5
Update to debian-iptables-*:v5
2017-01-10 16:23:01 -08:00
Jeff Grafton
19aafd291c
Always --pull in docker build to ensure recent base images
2017-01-10 16:21:05 -08:00
deads2k
453651cbfc
rename kubernetes-discovery to kube-aggregator
2017-01-10 12:27:42 -05:00
Tim Hockin
52c07683ef
Merge pull request #39448 from bowei/remove-dns
...
Remove dns
2017-01-06 17:31:05 -08:00
Mike Danese
f00b59f657
fix kube-proxy images default command for new bin path
2017-01-06 13:33:30 -08:00
Bowei Du
0992e2bfc9
Remove DNS code from the main repo (code is now in http://github.com/kubernetes/dns )
2017-01-06 12:57:45 -08:00
Kubernetes Submit Queue
af1a5ce426
Merge pull request #39492 from mikedanese/xtables
...
Automatic merge from submit-queue
add netlink and libxtables to kube-proxy image
kube-proxy won't start
2017-01-06 00:23:38 -08:00
Jeff Grafton
20d221f75c
Enable auto-generating sources rules
2017-01-05 14:14:13 -08:00
Mike Danese
eb62ac4363
add netlink and libxtables to kube-proxy image
2017-01-05 13:42:26 -08:00
Mike Danese
35ca259464
uses debs to build k8s docker images
2017-01-04 15:35:49 -08:00
Yifan Gu
dd59aa1c3b
cluster/gce: Rename coreos to container-linux.
2016-12-30 15:32:02 -08:00
Kubernetes Submit Queue
274a9f0f70
Merge pull request #38927 from luxas/remove_maintainer
...
Automatic merge from submit-queue
Remove all MAINTAINER statements in the codebase as they are deprecated
**What this PR does / why we need it**:
ref: https://github.com/docker/docker/pull/25466
**Release note**:
```release-note
Remove all MAINTAINER statements in Dockerfiles in the codebase as they are deprecated by docker
```
@ixdy @thockin (who else should be notified?)
2016-12-29 16:41:24 -08:00
Łukasz Oleś
1ef56828f8
Remove build containers
...
5 containers are created during the build and not used anymore. Removing them.
2016-12-29 18:22:00 +01:00
Lee Verberne
c706a052ef
pause.c: Document intended PID 1 behavior
2016-12-22 21:51:10 +00:00
Kubernetes Submit Queue
e843f77c6a
Merge pull request #38919 from brendandburns/fix
...
Automatic merge from submit-queue
Add a KUBERNETES_NODE_* section to build kubelet/kube-proxy for windows
@pires @ixdy
Addresses https://github.com/kubernetes/kubernetes/issues/38785 (I hope)
2016-12-20 15:32:40 -08:00
Kubernetes Submit Queue
46afb00f4c
Merge pull request #38984 from deads2k/fed-16-make-image
...
Automatic merge from submit-queue
create kuberentes-discovery image
Creates an image for `kubernetes-discovery` since this is the API registration, aggregation, and proxy image.
2016-12-20 07:05:40 -08:00
deads2k
47073be356
create kuberentes-discovery image
2016-12-20 07:42:49 -05:00
Euan Kemp
13afe18ab4
cluster/coreos: update to gci based implementation
...
This update includes significant refactoring. It moves almost all of the
logic into bash scripts, modeled after the `gci` cluster scripts.
The primary differences between the two are the following:
1. Use of the `/opt/kubernetes` directory over `/home/kubernetes`
2. Support for rkt as a runtime
3. No use of logrotate
4. No use of `/etc/default/`
5. No logic related to noexec mounts or gci-specific firewall-stuff
2016-12-17 21:36:31 -08:00
Brendan Burns
ab0e245bc6
Add a KUBERNETES_NODE_* section to build kubelet/kube-proxy for windows
2016-12-17 21:07:18 -08:00
Lucas Käldström
3c5b5f5963
Remove all MAINTAINER statements in the codebase as they aren't very useful and now deprecated
2016-12-17 20:34:10 +02:00
Alejandro Escobar
7d9c06f82d
local-up-cluster changes: added help option, added error message for why docker ps fails and how to recover, added test to check if etcd is in your path to fail fast when not found.
...
from etcd.sh split the start process into validate fucntion + start function so that the validate piece can be reused elsewhere. the up-cluster script has been changed to remove duplicate docker logic to the one used in buid-tools/common.sh and the validate etcd function is now used here.
moved docker daemon check function to util.sh and made function name changes and upstream changes.
2016-12-16 07:41:35 -08:00
Kubernetes Submit Queue
aa454ec740
Merge pull request #37215 from shashidharatd/fed-ci
...
Automatic merge from submit-queue
[Federation][init-11.2] use USE_KUBEFED env var to choose bw old and new federation deployment
This is continuation of #35961
USE_KUBEFED variable is used for deploying federation control plane. if not defined, federation will be brought up using old method i.e scripts.
Have verified that federation comes up using the old method, using following steps
```
$ export FEDERATION=true
$ export E2E_ZONES="asia-east1-c"
$ export FEDERATION_PUSH_REPO_BASE=gcr.io/<my-project>
$ KUBE_RELEASE_RUN_TESTS=n KUBE_FASTBUILD=true go run hack/e2e.go -v -build
$ build-tools/push-federation-images.sh
$ go run hack/e2e.go -v --up
```
Should merge #35961 before this PR
@madhusudancs
2016-12-16 00:33:35 -08:00
Kubernetes Submit Queue
87444522d0
Merge pull request #32088 from piosz/fluentd-daemon-set
...
Automatic merge from submit-queue
Migrated fluentd addon to daemon set
fix #23224
supersedes #23306
``` release-note
Migrated fluentd addon to daemon set
```
2016-12-15 23:04:40 -08:00
Madhusudan.C.S
5a7644c502
[Federation][init-11] Switch federation e2e tests to use the new federation control plane bootstrap via the kubefed init command.
2016-12-16 11:22:44 +05:30
Lee Verberne
7910a3f315
Move orphan.c to catch up to build-tools rename
2016-12-16 02:36:32 +00:00
Lee Verberne
c1520e15ff
Address style comments for pause.c
...
Run clang-format on the C files and capitalize error messages.
2016-12-16 02:30:58 +00:00
Lee Verberne
81d27aa239
Add SIGCHLD handler to pause container
...
This allows pause to reap zombies in the upcoming Shared PID namespace
(#1615 ). Uses the better defined sigaction() instead of signal() for all
signals both for consistency (SIGCHLD handler avoids SA_RESTART) and to
avoid the implicit signal()->sigaction() translation of various libc
versions.
Also makes warnings errors and includes a tool to make orphaned zombies
for manual testing.
2016-12-16 02:30:58 +00:00
Jeff Grafton
dd7c960aaf
Rename build-tools/debs to build/debs
2016-12-15 11:10:23 -08:00
Piotr Szczesniak
a52637f09f
Migrated fluentd to daemon set
2016-12-15 13:48:32 +01:00
xuxinkun
29dc75abc2
fix kube::log::error in start_rsyncd_container.
...
Signed-off-by: xuxinkun <xuxinkun@gmail.com >
2016-12-15 10:00:19 +08:00
Jeff Grafton
27d096d27d
Rename build-tools/ back to build/
2016-12-14 13:42:15 -08:00
Mike Danese
27116c6818
rename build/ to build-tools/
2016-10-24 14:41:56 -07:00
Vish Kannan
d5b1b4087e
Fix path to gci mounter in release.sh
2016-10-24 05:50:24 -07:00
Michael Taufen
f819cada9c
Add a bare-bones level of indirection for GCI mounter
...
This is the bare bones scaffolding from @vishh's PR #34787
2016-10-24 05:50:24 -07:00
Mike Danese
88c1ee28ed
gazel
2016-10-21 17:31:54 -07:00
Jeff Grafton
c32da484ff
Delete some old, dead release code
2016-10-20 13:57:15 -07:00
Kubernetes Submit Queue
6e2f5f8f6d
Merge pull request #28742 from jessfraz/test-go1.7rc1
...
Automatic merge from submit-queue
Update to go 1.7
<!--
Checklist for submitting a Pull Request
Please remove this comment block before submitting.
1. Please read our [contributor guidelines](https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md ).
2. See our [developer guide](https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md ).
3. If you want this PR to automatically close an issue when it is merged,
add `fixes #<issue number>` or `fixes #<issue number>, fixes #<issue number>`
to close multiple issues (see: https://github.com/blog/1506-closing-issues-via-pull-requests ).
4. 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.
-->
Closes #33070
Closes #32999
```release-note
Updated Go to 1.7
```
[]()
This is to test go version 1.7
2016-10-18 05:59:04 -07:00
Kubernetes Submit Queue
1d323adade
Merge pull request #34361 from jessfraz/remove-docker-tag-f
...
Automatic merge from submit-queue
remove all instances of docker tag -f
<!-- Thanks for sending a pull request! Here are some tips for you:
1. If this is your first time, read our contributor guidelines https://github.com/kubernetes/kubernetes/blob/master/CONTRIBUTING.md and developer guide https://github.com/kubernetes/kubernetes/blob/master/docs/devel/development.md
2. If you want *faster* PR reviews, read how: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/faster_reviews.md
3. Follow the instructions for writing a release note: https://github.com/kubernetes/kubernetes/blob/master/docs/devel/pull-requests.md#release-notes
-->
**What this PR does / why we need it**: There is no flag `-f` for newer versions of `docker tag`
**Which issue this PR fixes** *(optional, in `fixes #<issue number>(, #<issue_number>, ...)` format, will close that issue when PR gets merged)*: fixes #
**Special notes for your reviewer**:
**Release note**:
<!-- Steps to write your release note:
1. Use the release-note-* labels to set the release note state (if you have access)
2. Enter your extended release note in the below block; leaving it blank means using the PR title as the release note. If no release note is required, just write `NONE`.
-->
2016-10-17 19:16:56 -07:00
shashidharatd
c47732c60a
Fix federated-image.tag written with empty string
2016-10-17 11:00:18 +05:30
Jess Frazelle
40e71deb25
remove all instances of docker tag -f
...
Signed-off-by: Jess Frazelle <acidburn@google.com >
2016-10-13 21:26:20 -07:00
Jess Frazelle
3193174142
Remove go patches for darwin
...
Signed-off-by: Jess Frazelle <acidburn@google.com >
2016-10-13 21:12:15 -07:00
Jess Frazelle
3803fee972
Update to go1.7.1
...
Signed-off-by: Jess Frazelle <me@jessfraz.com >
2016-10-13 21:12:15 -07:00