ModuleConfig
Scope: Cluster
Version: v1alpha1
Defines the configuration of the Deckhouse module. The name of the ModuleConfig resource must match the name of the module (for example, control-plane-manager
for the control-plane-manager
module).
Example:
apiVersion: deckhouse.io/v1alpha1
kind: ModuleConfig
metadata:
name: module-1
spec:
enabled: true
settings: {}
version: 1
- spec
Required value
- spec.enabled
Enables or disables the module.
Example:
enabled: 'false'
- spec.managementState
Defines the module management mode.
-
Unmanaged
: A mode for developing or tweaking the module.In this mode:
- Configuration or hook changes are not reconciled, which prevents resources from being updated automatically.
- Resource monitoring is disabled, which prevents deleted resources from being restored.
- All the module’s resources are labeled with
managementState: Unmanaged
. - The
ModuleIsInUnmanagedMode
alert is triggered.
If Deckhouse restarts, the module reapplies its last known state once and then continues in unmanaged mode.
Allowed values:
Unmanaged
Example:
managementState: 'false'
-
- spec.settings
Module settings.
- spec.source
The source of the module it provided by one (otherwise empty).
- spec.updatePolicy
Module update policy.
Example:
updatePolicy: test-alpha
- spec.version
Version of settings schema.
Example:
version: '1'