Caution! We strongly do not recommend creating Pods and ReplicaSets – these objects are secondary and should be created by other controllers. Access to creating and modifying Pods and ReplicaSets is disabled.

Caution! Currently, the multi-tenancy mode (namespace-based authorization) is implemented according to a temporary scheme and isn’t guaranteed to be entirely safe and secure! The allowAccessToSystemNamespaces, namespaceSelector and limitNamespaces options in the CR will no longer be applied if the authorization system’s webhook is unavailable for some reason. As a result, users will have access to all namespaces. After the webhook availability is restored, the options will become relevant again.

All access rights are configured using Custom Resources.

The module is enabled by default in the following bundles: Default, Managed. The module is disabled by default in the Minimal bundle.

How to explicitly enable the module…

Note that the configOverrides parameter of the InitConfiguration resource is used when installing Deckhouse, not ModuleConfig.

Set the userAuthzEnabled: true or userAuthzEnabled: false in the configOverrides parameter to explicitly enable or disable the module when installing Deckhouse.

Use the userAuthz section of the configOverrides parameter to configure the module when installing Deckhouse.

Set the spec.enabled module parameter to true or false to explicitly enable or disable the module.

Example of enabling the user-authz module:

apiVersion: deckhouse.io/v1alpha1
kind: ModuleConfig
metadata:
  name: user-authz
spec:
  enabled: true

Example of disabling the user-authz module:

apiVersion: deckhouse.io/v1alpha1
kind: ModuleConfig
metadata:
  name: user-authz
spec:
  enabled: false

The module is configured using the ModuleConfig custom resource named user-authz (learn more about setting up Deckhouse…).

Example of the ModuleConfig/user-authz resource for configuring the module:

apiVersion: deckhouse.io/v1alpha1
kind: ModuleConfig
metadata:
  name: user-authz
spec:
  version: 1
  enabled: true
  settings: # <-- Module parameters from the "Parameters" section below.

Parameters

Schema version: 1

  • controlPlaneConfiguratorobject

    Parameters of the control-plane-manager module.

    • controlPlaneConfigurator.enabledboolean

      Passes parameters for configuring authz-webhook to the control-plane-manager module (see the parameters of the control-plane-manager module).

      If this parameter is disabled, the control-plane-manager module assumes that Webhook-based authorization is disabled by default. In this case (if no additional settings are provided), the control-plane-manager module will try to delete all references to the Webhook plugin from the manifest (even if you configure the manifest manually).

      Default: true

      Examples:

      enabled: true
      
      enabled: false
      
  • enableMultiTenancyboolean

    Enable namespace-based authorization (multi-tenancy mode).

    All the kube-apiserver settings required for namespace-based authorization are performed automatically by the control-plane-manager module (more details).

    Available in Enterprise Edition only.

    Default: false

    Examples:

    enableMultiTenancy: true
    
    enableMultiTenancy: false