Available in:  CE, SE, SE+, EE

The module is not enabled by default in any bundles.

How to explicitly enable the module…

Set the spec.enabled module parameter to true or false in the ModuleConfig/csi-nfs resource (create it, if necessary) to explicitly enable or disable the module, or use the deckhouse-controller module command in the d8-system/deckhouse pod.

Example of enabling the module:

  • by using the ModuleConfig resource:

    apiVersion: deckhouse.io/v1alpha1
    kind: ModuleConfig
    metadata:
      name: csi-nfs
    spec:
      enabled: true
    
  • by using the deckhouse-controller command (you need a kubectl, configured to work with the cluster):

    kubectl -ti -n d8-system exec svc/deckhouse-leader -c deckhouse -- deckhouse-controller module enable csi-nfs
    

Example of disabling the module:

  • by using the ModuleConfig resource:

    apiVersion: deckhouse.io/v1alpha1
    kind: ModuleConfig
    metadata:
      name: csi-nfs
    spec:
      enabled: false
    
  • by using the deckhouse-controller command (you need a kubectl, configured to work with the cluster):

    kubectl -ti -n d8-system exec svc/deckhouse-leader -c deckhouse -- deckhouse-controller module disable csi-nfs
    

Settings

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

Example of the ModuleConfig/csi-nfs resource for configuring the module:

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

Parameters

Schema version: 1

  • settings
    object
    • settings.logLevel
      string

      Module log level.

      Default: "DEBUG"

      Allowed values: ERROR, WARN, INFO, DEBUG, TRACE

    • settings.tlsParameters
      object

      This feature is available in SE, SE+, EE, and FE.

      RPC-with-TLS (RFC 9289) configuration.

      • settings.tlsParameters.ca
        string

        Root certificate in PEM format, encoded in Base64, which can be used to verify the NFS server certificate.

      • settings.tlsParameters.mtls
        object

        Configuration of the client certificate verification mode by the NFS server.

        • settings.tlsParameters.mtls.clientCert
          string

          Client certificate in PEM format, encoded in Base64.

        • settings.tlsParameters.mtls.clientKey
          string

          Client key in PEM format, encoded in Base64.

    • settings.v3support
      boolean

      NFS version v3 support. After enabling this setting, rpcbind package will be installed on nodes. When this setting is disabled, it will NOT be removed from the nodes.

      Default: false