LinuxOSConfigResponse

data class LinuxOSConfigResponse(val swapFileSizeMB: Int? = null, val sysctls: SysctlConfigResponse? = null, val transparentHugePageDefrag: String? = null, val transparentHugePageEnabled: String? = null)

See AKS custom node configuration for more details.

Constructors

Link copied to clipboard
constructor(swapFileSizeMB: Int? = null, sysctls: SysctlConfigResponse? = null, transparentHugePageDefrag: String? = null, transparentHugePageEnabled: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val swapFileSizeMB: Int? = null

The size in MB of a swap file that will be created on each node.

Link copied to clipboard

Sysctl settings for Linux agent nodes.

Link copied to clipboard

Valid values are 'always', 'defer', 'defer+madvise', 'madvise' and 'never'. The default is 'madvise'. For more information see Transparent Hugepages.

Link copied to clipboard

Valid values are 'always', 'madvise', and 'never'. The default is 'always'. For more information see Transparent Hugepages.