k3s/pkg
Kubernetes Submit Queue e1248bcbbc Merge pull request #42962 from k82cn/fix_min_tolerant_time
Automatic merge from submit-queue

Fixed incorrect result of getMinTolerationTime.

For the following case, `getMinTolerationTime` should return one; but  it returned -1 :
1. for tolerations[0], TolerationSeconds is nil, minTolerationTime is not set 
2. for tolerations[1], it's TolerationSeconds (1) is bigger than `minTolerationTime`, so minTolerationTime is still -1 which means infinite.

```
+		{
+			tolerations: []v1.Toleration{
+				{
+					TolerationSeconds: nil,
+				},
+				{
+					TolerationSeconds: &one,
+				},
+			},
+		},
```
2017-03-12 23:55:39 -07:00
..
api Merge pull request #42755 from aveshagarwal/master-fix-default-toleration-seconds 2017-03-10 22:02:18 -08:00
apimachinery/tests
apis Merge pull request #42553 from k82cn/autogen_proto 2017-03-09 07:37:36 -08:00
auth
bootstrap/api
capabilities
client Use Histogram instead of Summary 2017-03-10 07:24:38 +01:00
cloudprovider Merge pull request #42444 from jingxu97/Mar/deleteVolume 2017-03-10 12:50:24 -08:00
controller Fixed incorrect result of getMinTolerationTime. 2017-03-12 20:21:14 +08:00
conversion
credentialprovider
features Move taint eviction feature flag to feature-gates 2017-03-08 10:04:18 +01:00
fieldpath
fields
generated Update docs and client 2017-03-09 07:34:56 +00:00
hyperkube
kubeapiserver update names for kube plugin initializer to avoid conflicts 2017-03-06 10:18:21 -05:00
kubectl Merge pull request #41830 from irfanurrehman/fed-rbac-1 2017-03-10 15:56:47 -08:00
kubelet Merge pull request #42642 from fraenkel/envfrom 2017-03-10 17:37:31 -08:00
kubemark kubemark: enable CRI in the hollow kubelet 2017-03-09 09:52:17 -08:00
labels
master Ensure patched objects are defaulted correctly 2017-03-10 22:07:10 -05:00
metrics
printers Merge pull request #42702 from smarterclayton/printer_owners 2017-03-12 21:04:57 -07:00
probe
proxy Merge pull request #42165 from wojtek-t/fix_kubeproxy_initial_bug 2017-03-02 03:20:27 -08:00
quota Regenerate everything 2017-03-02 10:23:58 +01:00
registry Validation PVs for mount options 2017-03-09 18:24:37 -05:00
routes
runtime
security Addition of ScaleIO Kubernetes Volume Plugin 2017-03-03 15:47:19 -05:00
securitycontext
serviceaccount
ssh
types
util
version
volume Validation PVs for mount options 2017-03-09 18:24:37 -05:00
watch
BUILD Regenerate everything 2017-03-02 08:56:26 +01:00
OWNERS