From 84bf931580dcd70184816c3335cacfa0b452ead4 Mon Sep 17 00:00:00 2001 From: Di Xu Date: Thu, 17 Aug 2017 22:19:04 +0800 Subject: [PATCH] newline to separate unimplemented elements --- pkg/api/types.go | 1 + staging/src/k8s.io/api/core/v1/types.go | 1 + 2 files changed, 2 insertions(+) diff --git a/pkg/api/types.go b/pkg/api/types.go index 4d626b5d095..4f0aa8ecdef 100644 --- a/pkg/api/types.go +++ b/pkg/api/types.go @@ -2116,6 +2116,7 @@ const ( // Kubelet without going through the scheduler to start. // Enforced by Kubelet and the scheduler. // TaintEffectNoScheduleNoAdmit TaintEffect = "NoScheduleNoAdmit" + // Evict any already-running pods that do not tolerate the taint. // Currently enforced by NodeController. TaintEffectNoExecute TaintEffect = "NoExecute" diff --git a/staging/src/k8s.io/api/core/v1/types.go b/staging/src/k8s.io/api/core/v1/types.go index 2444bf0a46d..c1068512024 100644 --- a/staging/src/k8s.io/api/core/v1/types.go +++ b/staging/src/k8s.io/api/core/v1/types.go @@ -2335,6 +2335,7 @@ const ( // Kubelet without going through the scheduler to start. // Enforced by Kubelet and the scheduler. // TaintEffectNoScheduleNoAdmit TaintEffect = "NoScheduleNoAdmit" + // Evict any already-running pods that do not tolerate the taint. // Currently enforced by NodeController. TaintEffectNoExecute TaintEffect = "NoExecute"