Exister exposes read-only access to namespace state. Exists matches any state; IsActive excludes the deleting state.
| 85 | // Exister exposes read-only access to namespace state. Exists matches any |
| 86 | // state; IsActive excludes the deleting state. |
| 87 | type Exister interface { |
| 88 | Exists(name string) bool |
| 89 | IsActive(name string) bool |
| 90 | GetNamespace(name string) (cmd.Namespace, bool) |
| 91 | } |
| 92 | |
| 93 | // Controller owns the namespace control-plane state. |
| 94 | // |
no outgoing calls
no test coverage detected
searching dependent graphs…