Enum StopMode
Used to control how cluster nodes are shutdown.
Namespace: Neon.Kube.Hosting
Assembly: Neon.Kube.dll
Syntax
public enum StopMode
Fields
Name | Description |
---|---|
Graceful | Performs a graceful shutdown of the nodes such that all services have a chance to persist their state before the node stops. |
Pause | Pauses the nodes when supported by the hosting environment. This quickly persists the node state to disk such that it can be restarted relatively quickly where it left off. noteThis is not supported by some hosting environments. Those environments will treat this as Graceful. |
TurnOff | Immediately turns the the nodes off without shutting them down gracefully. This is equivalent to pulling the power plug on a physical machine and may result in data loss. |