This module manages the iscsi service on Debian and Redhat family nodes.
This module installs and configures the iscsi packages (Redhat's iscsid or Debian's open-iscsi) and manages it's configuration. This allows nodes to connect to iscsi servers, such as the AWS Storage Gateway.
- This module manages the iscsi configuration and ensures it's service is running.
- A new fact, "iscsi_initiator", exposes the unique identifier for the iscsi node.
In order to use the bundled fact you need to have pluginsync enabled.
The simplest way to use this module is to include the iscsi::initiator class.
include iscsi::initiator
This class also supports a variety of options, such as CHAP authentication.
class { 'iscsi::initiator':
startup => "automatic",
node_authmethod => 'CHAP'
node_username => 'iqn.1993-08.org.debian:01:3181f68bc3dd',
node_password => 'jXb8F5uR22KhpJkFTTTYtA',
node_username_in => $::iscsi_initiator,
node_password_in => 'C9LbgUQGAXGuv4bEjGxgYt',
}
- [iscsi_initiator] This fact gives the initiator name (ie, "iqn.1993-08.org.debian:01:3181f68bc3dd"). It's important to note that this fact returns false during the first run where the module is installed as the iqn is created when the package is installed, after facts are evaluated.
-
[node_authmethod] - ISCSI authentication method. Defaults to false.
-
[node_username] - Username server uses to authenticate to client. Defaults to false.
-
[node_password] - Password server uses to authenticate to client. Defaults to false.
-
[node_username_in] - Username client uses to authenticate to server. Defaults to false.
-
[node_password_in] - Password client uses to authenticate to server. Defaults to false.
-
[discovery_authmethod] - ISCSI authentication method. Defaults to false.
-
[discovery_username] - Node (server) username for discovery. Defaults to false.
-
[discovery_password] - Node (server) username for discovery. Defaults to false.
-
[discovery_username_in] - Initiator (client) username for discovery. Defaults to false.
-
[discovery_password_in] - Initiator (client) username for discovery. Defaults to false.
-
[startup] - Whether to use automatic or manual startup. Defaults to manual.
-
[leading_login] - Whether to login to targets one at a time (true) or to attempt each connection (false). Defaults to true.
-
[replacement_timeout] - Defaults to 120.
-
[login_timeout] - Defaults to 15.
-
[logout_timeout] - Defaults to 15.
-
[noop_out_interval] - Defaults to 5.
-
[noop_out_timeout] - Defaults to 5.
-
[abort_timeout] - Defaults to 15.
-
[lu_reset_timeout] - Defaults to 30.
-
[tgt_reset_timeout] - Defaults to 30.
-
[initial_login_retry_max] - Defaults to 8.
-
[session_cmds_max] - Defaults to 128.
-
[session_queue_depth] - Defaults to 32.
-
[xmit_thread_priority] - Defaults to -20.
-
[initialR2T] - Defaults to false.
-
[immediateData] - Defaults to true.
-
[firstBurstLength] - Defaults to 262144.
-
[maxBurstLength] - Defaults to 16776192.
-
[maxRecvDataSegmentLength] - Defaults to 262144.
-
[maxXmitDataSegmentLength] - Defaults to 0.
-
[headerDigest] - Defaults to "None".
-
[dataDigest] - Defaults to "None"
-
[nr_sessions] - Defaults to 1.
-
[MaxRecvDataSegmentLength] - Defaults to 32768.
-
[fastAbort] - Defaults to true.
-
[iscsid_conf] - Defaults to "/etc/iscsi/iscsid.conf".
-
[iscsid_startup] - Sets the restart script for the service. The default depends on the operating system.
This module currently handles installation and services, but does not yet provide functionality to mount the specific drives. This has to be done manually using iscsiadm.
Contributions are always welcome. Please read the Contributing Guide to get started.