Show / Hide Table of Contents

Class KubernetesNetworkConfig

The properties that define the network configuration for Kubernetes.

Inheritance
object
KubernetesNetworkConfig
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 KubernetesNetworkConfig

Properties

PodsCidr

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

The CIDR block for Kubernetes pods. Optional, defaults to 10.244.0.0/16.

ServicesCidr

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

The CIDR block for Kubernetes services. Optional, defaults to 10.96.0.0/16.

In this article
Back to top