Clayton Coleman
8811fd2971
Merge pull request #4284 from brendandburns/cleanup
...
Explicitly send the error string to the Fatal log.
2015-02-10 12:48:30 -05:00
Jeff Lowdermilk
ed9761fef1
Merge pull request #4237 from brendandburns/pd_fix
...
Add a label command to kubectl.
2015-02-10 09:47:18 -08:00
Mike Danese
c72c2a0d1e
added tests
2015-02-10 08:30:13 -08:00
Mike Danese
3d0cd81feb
refactor pkg/probe ProbeRunners to interfaces and move global probers into kubelet field for testability
2015-02-10 08:30:11 -08:00
Mike Danese
043794492e
implement readiness.
2015-02-10 08:30:09 -08:00
Brendan Burns
8f3136cd37
Explicitly send the error string to the Fatal log.
2015-02-10 07:12:13 -08:00
Brendan Burns
ac35aa5e32
Add a label command.
2015-02-09 20:09:02 -08:00
Mike Danese
27dfebed98
api changes to support readiness.
2015-02-09 18:27:46 -08:00
Brian Grant
e27d534b87
Merge pull request #4262 from vishh/api_resources
...
Rename ResourceRequirementSpec to ResourceRequirements.
2015-02-09 17:26:05 -08:00
Saad Ali
6167aeb8fa
Merge pull request #4233 from thockin/mastersvc
...
Fix wrong port on kubernetes service
2015-02-09 17:24:07 -08:00
Vishnu Kannan
d0524d4778
Rename ResourceRequirementSpec to ResourceRequirements.
2015-02-09 23:19:38 +00:00
Deyuan Deng
4c6f6e0efc
Refactor RegisterRetryCount, improve tests
2015-02-09 17:55:28 -05:00
Deyuan Deng
55b9944cfe
Remove pods from failed node
2015-02-09 17:50:24 -05:00
Ravi Sankar Penta
3a5ef05f64
Make periodic sync nodes from cloud provider optional.
...
--sync_nodes=false gives user flexibility to add/remove nodes in the
cluster using REST api/kubectl cli and at the same time can use
cloud provider for other resources like persistent disks, etc.
2015-02-09 13:42:44 -08:00
Jeff Lowdermilk
6021dcba30
Merge pull request #4213 from smarterclayton/use_name_from_server
...
Use name from server when displaying create/update
2015-02-09 09:41:20 -08:00
Marek Grabowski
72a066a992
Add more information to Validator error messages.
2015-02-09 18:07:09 +01:00
Deyuan Deng
91b43a4b16
Merge pull request #4165 from smarterclayton/ignore_already_exists_errors_on_create_node
...
NodeController should tolerate when nodes already exist
2015-02-09 11:01:17 -05:00
Clayton Coleman
8c1206ca2d
NodeController should tolerate when nodes already exist
...
During startup, if nodes have already been defined the controller
does not need to create them, just needs to keep them up to date.
When defining a static list, the controller would loop and fail
repeatedly if the node existed.
I don't know if we need to update the node during registration,
as long as the sync loop checks it later.
2015-02-08 21:44:08 -05:00
Clayton Coleman
52c6c60b15
Use name from server when displaying create/update
...
Allows generated names from files to be displayed so users can
interact with them.
2015-02-08 21:40:47 -05:00
Tim Hockin
2707bcf10e
Fix wrong port on kubernetes service
...
* Rename a field to make it more obvious.
* Fix some comments and other minor artifacts.
Verified by hitting the service on 443, and by hitting the master on 8080,
6443, and 7080.
2015-02-06 20:23:17 -08:00
Brendan Burns
cc7279f6a8
Actually use the safeFormatAndMounter...
2015-02-06 17:01:05 -08:00
Brian Grant
a8964c58c9
Merge pull request #4130 from ddysher/node-lifecycle
...
Populate node status transition timestamp and reason
2015-02-06 16:05:36 -08:00
Deyuan Deng
08721e0a00
Populate node statu transition timestamp and reason
2015-02-06 18:42:41 -05:00
Tim Hockin
e89a4ef33f
Merge pull request #4151 from brendandburns/fixer
...
Adjust replication controller validation to be more flexible. Fix docs.
2015-02-06 15:26:13 -08:00
Brendan Burns
31ce2a9411
Adjust replication controller validation to be more flexible about
...
read/write volumes.
Update docs to reflect reality as it is implemented.
2015-02-06 14:58:21 -08:00
Zach Loafman
b77abb5945
Merge pull request #4221 from brendandburns/pd_fix
...
Make gce_safe_format_and_mount actually work correctly.
2015-02-06 14:50:20 -08:00
Dawn Chen
8f69192be4
Merge pull request #4222 from brendandburns/status
...
Add some more verbose logging around pod status.
2015-02-06 13:06:12 -08:00
Brendan Burns
b527b8a9ef
Add some more verbose logging around pod status.
2015-02-06 12:42:17 -08:00
Brendan Burns
3d6c9fc9e8
Fix gce_pd to only use safe_format_and_mount when mounting block devices.
2015-02-06 12:41:21 -08:00
Jeff Lowdermilk
9c7817577b
Merge pull request #4200 from brendandburns/race
...
Add some locking to prevent go data race logic from tripping.
2015-02-06 12:29:56 -08:00
Brendan Burns
35fa143b29
Revert "Revert "Start using GCE safe format and mount for mounting disks.""
...
This reverts commit 858a85e8fe
.
2015-02-06 10:09:00 -08:00
Brendan Burns
94d852e8a6
Merge pull request #4214 from brendandburns/pd_fix
...
Revert "Start using GCE safe format and mount for mounting disks."
2015-02-06 09:58:51 -08:00
Brendan Burns
858a85e8fe
Revert "Start using GCE safe format and mount for mounting disks."
...
This reverts commit 3f109d6d46
.
2015-02-06 09:58:03 -08:00
Dawn Chen
05de54249f
Merge pull request #4191 from simon3z/master
...
api: add image's id to ContainerStatus
2015-02-06 09:35:44 -08:00
Federico Simoncelli
e01df69565
api: add image's id to ContainerStatus
...
Sometimes for external applications it is important to identify
exactly what images are running. Since tags can be moved to point
to newer builds this information can be used to identify old images
running.
Signed-off-by: Federico Simoncelli <fsimonce@redhat.com>
2015-02-06 09:01:14 -05:00
saadali
79cbcf918e
Modify Event struct to allow compressing multiple recurring events in to a single event.
...
# *** ERROR: *** Some API files are missing the required field descriptions
# Add description tags to all non-inline fields in the following files:
# pkg/api/v1beta1/types.go
# pkg/api/v1beta2/types.go
#
# Your commit will be aborted unless you fix these.
# COMMIT_BLOCKED_ON_DESCRIPTION
2015-02-05 21:50:29 -08:00
Brendan Burns
ff4c23d803
Merge pull request #4208 from brendandburns/e2e2
...
Revert filtering unknown pods, as I believe that it is causing e2e flakes.
2015-02-05 21:46:13 -08:00
Brendan Burns
234f951867
Revert filtering unknown pods, as I believe that it is causing e2e flakes.
2015-02-05 20:57:01 -08:00
Brendan Burns
783e1de5bb
Add some locking to prevent go data race logic from tripping.
2015-02-05 17:27:58 -08:00
Brian Grant
d2feaade9e
Merge pull request #4195 from smarterclayton/add_endpoints_to_service
...
Kubectl should be able to display endpoints directly and for service
2015-02-05 17:22:34 -08:00
Brian Grant
175e9caa55
Merge pull request #4194 from dchen1107/podstatus
...
Kubelet decides podStatus
2015-02-05 17:18:39 -08:00
Brendan Burns
3f109d6d46
Start using GCE safe format and mount for mounting disks.
...
This removes the need for disks to be formatted.
2015-02-05 17:01:37 -08:00
Dawn Chen
4da829ef20
comment.
2015-02-05 15:57:26 -08:00
Mike Danese
14bfec92f2
rename probe.Status to probe.Result.
2015-02-05 15:49:58 -08:00
Dawn Chen
f762e062f2
Kubelet decides podStatus
2015-02-05 15:49:41 -08:00
Clayton Coleman
698e8dd06f
Kubectl should be able to display endpoints directly and for service
...
kubectl get endpoints <servicename>
kubectl describe service <servicename>
should have printers for endpoints
2015-02-05 18:46:09 -05:00
Brendan Burns
8e6f5c7201
Merge pull request #3593 from commonlisp/master
...
Add timeouts to HealthChecks and retry checks
2015-02-05 15:40:22 -08:00
Brendan Burns
50e855953f
Merge pull request #4131 from a-robinson/validate
...
Add a few extra test cases for API validation of labels
2015-02-05 15:37:45 -08:00
Brendan Burns
b08bd8671f
Merge pull request #4157 from saad-ali/updateEventApi
...
Add "Update Event" to Kubernetes API
2015-02-05 14:50:48 -08:00
Brendan Burns
f153a27235
Merge pull request #4147 from jlowdermilk/kubeconfig-view
...
Allow output formatting for kubectl config view
2015-02-05 14:48:02 -08:00