KindNodeModel Properties
ClassProperties6 members
Represents a node in a Kind cluster configuration.
Gets or sets additional mount points for the node container. When
null, no extra mounts are configured. public IList<KindMountModel>? ExtraMounts { get; set; } Gets or sets additional port mappings for the node container. When
null, no extra port mappings are configured. public IList<KindPortMappingModel>? ExtraPortMappings { get; set; } Gets or sets the container image for the node. When
null, Kind uses its default image. public string? Image { get; set; } Gets or sets kubeadm config patches applied as merge patches at the node level. Each entry is a YAML string. Node-level patches are applied after cluster-level patches. When
null, no node-level kubeadm patches are applied. public IList<string>? KubeadmConfigPatches { get; set; } Gets or sets labels to apply to the node. When
null, no additional labels are applied. public IDictionary<string, string>? Labels { get; set; } Gets or sets the role of the node (e.g., "control-plane" or "worker").
public string Role { get; set; }