Show / Hide Table of Contents

Class NodeEvictionNodePoolSettings

Node Eviction Details configuration

Inheritance
object
NodeEvictionNodePoolSettings
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ContainerengineService.Models
Assembly: OCI.DotNetSDK.Containerengine.dll
Syntax
public class NodeEvictionNodePoolSettings

Properties

EvictionGraceDuration

Declaration
[JsonProperty(PropertyName = "evictionGraceDuration")]
public string EvictionGraceDuration { get; set; }
Property Value
Type Description
string

Duration after which OKE will give up eviction of the pods on the node. PT0M will indicate you want to delete the node without cordon and drain. Default PT60M, Min PT0M, Max: PT60M. Format ISO 8601 e.g PT30M

IsForceActionAfterGraceDuration

Declaration
[JsonProperty(PropertyName = "isForceActionAfterGraceDuration")]
public bool? IsForceActionAfterGraceDuration { get; set; }
Property Value
Type Description
bool?

If the node action should be performed if not all the pods can be evicted in the grace period

IsForceDeleteAfterGraceDuration

Declaration
[JsonProperty(PropertyName = "isForceDeleteAfterGraceDuration")]
public bool? IsForceDeleteAfterGraceDuration { get; set; }
Property Value
Type Description
bool?

If the underlying compute instance should be deleted if you cannot evict all the pods in grace period

In this article
Back to top