Merge pull request #25599 from caesarxuchao/orphaning-finalizer

Add orphaning finalizer logic to GC
This commit is contained in:
Alex Mohr
2016-05-26 13:19:19 -07:00
20 changed files with 1037 additions and 123 deletions

View File

@@ -2100,6 +2100,7 @@ type FinalizerName string
// These are internal finalizer values to Kubernetes, must be qualified name unless defined here
const (
FinalizerKubernetes FinalizerName = "kubernetes"
FinalizerOrphan string = "orphan"
)
// NamespaceStatus is information about the current status of a Namespace.