SchedulerConfigMode Class

public final class SchedulerConfigMode
extends ExpandableStringEnum<SchedulerConfigMode>

The config customization mode for this scheduler instance.

Field Summary

Modifier and Type Field and Description
static final SchedulerConfigMode DEFAULT

No config customization.

static final SchedulerConfigMode MANAGED_BY_CRD

Enable config customization.

Constructor Summary

Constructor Description
SchedulerConfigMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of SchedulerConfigMode value.

Method Summary

Modifier and Type Method and Description
static SchedulerConfigMode fromString(String name)

Creates or finds a SchedulerConfigMode from its string representation.

static Collection<SchedulerConfigMode> values()

Gets known SchedulerConfigMode values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

DEFAULT

public static final SchedulerConfigMode DEFAULT

No config customization. Use default configuration.

MANAGED_BY_CRD

public static final SchedulerConfigMode MANAGED_BY_CRD

Enable config customization. Customer can specify scheduler configuration via a CRD. See aka.ms/aks/scheduler-crd for details.

Constructor Details

SchedulerConfigMode

@Deprecated
public SchedulerConfigMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of SchedulerConfigMode value.

Method Details

fromString

public static SchedulerConfigMode fromString(String name)

Creates or finds a SchedulerConfigMode from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding SchedulerConfigMode.

values

public static Collection<SchedulerConfigMode> values()

Gets known SchedulerConfigMode values.

Returns:

known SchedulerConfigMode values.

Applies to