Show / Hide Table of Contents

Class OciVcnIpNativeNodePoolPodNetworkOptionDetails

Network options specific to using the OCI VCN Native CNI

Inheritance
object
NodePoolPodNetworkOptionDetails
OciVcnIpNativeNodePoolPodNetworkOptionDetails
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 OciVcnIpNativeNodePoolPodNetworkOptionDetails : NodePoolPodNetworkOptionDetails

Properties

MaxPodsPerNode

Declaration
[JsonProperty(PropertyName = "maxPodsPerNode")]
public int? MaxPodsPerNode { get; set; }
Property Value
Type Description
int?

The max number of pods per node in the node pool. This value will be limited by the number of VNICs attachable to the node pool shape

PodNsgIds

Declaration
[JsonProperty(PropertyName = "podNsgIds")]
public List<string> PodNsgIds { get; set; }
Property Value
Type Description
List<string>

The OCIDs of the Network Security Group(s) to associate pods for this node pool with. For more information about NSGs, see {@link NetworkSecurityGroup}.

PodSubnetIds

Declaration
[Required(ErrorMessage = "PodSubnetIds is required.")]
[JsonProperty(PropertyName = "podSubnetIds")]
public List<string> PodSubnetIds { get; set; }
Property Value
Type Description
List<string>

The OCIDs of the subnets in which to place pods for this node pool. This can be one of the node pool subnet IDs

Remarks

Required

In this article
Back to top