Prepare the worker node
All worker nodes in the Kubernetes cluster must be able to mount the volumes you have provisioned for your pods. To prepare the worker nodes, you must install NFS, iSCSI, or NVMe/TCP tools based on your driver selection.
Selecting the right tools
If you are using a combination of drivers, you should install all required tools for your drivers. Recent versions of RedHat CoreOS have the tools installed by default.
Install the NFS tools if you are using: ontap-nas
, ontap-nas-economy
, ontap-nas-flexgroup
, azure-netapp-files
, gcp-cvs
.
Install the iSCSI tools if you are using: ontap-san
, ontap-san-economy
, solidfire-san
.
Install the NVMe tools if you are using ontap-san
for nonvolatile memory express (NVMe) over TCP (NVMe/TCP) protocol.
We recommend ONTAP 9.12 or later for NVMe/TCP. |
Node service discovery
Astra Trident attempts to automatically detect if the node can run iSCSI or NFS services.
Node service discovery identifies discovered services but does not guarantee services are properly configured. Conversely, the absence of a discovered service does not guarantee the volume mount will fail. |
Astra Trident creates events for the node to identify the discovered services. To review these events, run:
kubectl get event -A --field-selector involvedObject.name=<Kubernetes node name>
Astra Trident identifies services enabled for each node on the Trident node CR. To view the discovered services, run:
tridentctl get node -o wide -n <Trident namespace>
NFS volumes
Install the NFS tools using the commands for your operating system. Ensure the NFS service is started up during boot time.
sudo yum install -y nfs-utils
sudo apt-get install -y nfs-common
Reboot your worker nodes after installing the NFS tools to prevent failure when attaching volumes to containers. |
iSCSI volumes
Astra Trident can automatically establish an iSCSI session, scan LUNs, and discover multipath devices, format them, and mount them to a pod.
iSCSI self-healing capabilities
For ONTAP systems, Astra Trident runs iSCSI self-healing every five minutes to:
-
Identify the desired iSCSI session state and the current iSCSI session state.
-
Compare the desired state to the current state to identify needed repairs. Astra Trident determines repair priorities and when to preempt repairs.
-
Perform repairs required to return the current iSCSI session state to the desired iSCSI session state.
Logs of self-healing activity are located in the trident-main container on the respective Daemonset pod. To view logs, you must have set debug to "true" during Astra Trident installation.
|
Astra Trident iSCSI self-healing capabilities can help prevent:
-
Stale or unhealthy iSCSI sessions that could occur after a network connectivity issue. In the case of a stale session, Astra Trident waits seven minutes before logging out to reestablish the connection with a portal.
For example, if CHAP secrets were rotated on the storage controller and the network loses connectivity, the old (stale) CHAP secrets could persist. Self-healing can recognize this and automatically reestablish the session to apply the updated CHAP secrets. -
Missing iSCSI sessions
-
Missing LUNs
Install the iSCSI tools
Install the iSCSI tools using the commands for your operating system.
-
Each node in the Kubernetes cluster must have a unique IQN. This is a necessary prerequisite.
-
If using RHCOS version 4.5 or later, or other RHEL-compatible Linux distribution, with the
solidfire-san
driver and Element OS 12.5 or earlier, ensure that the CHAP authentication algorithm is set to MD5 in/etc/iscsi/iscsid.conf
. Secure FIPS-compliant CHAP algorithms SHA1, SHA-256, and SHA3-256 are available with Element 12.7.sudo sed -i 's/^\(node.session.auth.chap_algs\).*/\1 = MD5/' /etc/iscsi/iscsid.conf
-
When using worker nodes that run RHEL/RedHat CoreOS with iSCSI PVs, specify the
discard
mountOption in the StorageClass to perform inline space reclamation. Refer to RedHat documentation.
-
Install the following system packages:
sudo yum install -y lsscsi iscsi-initiator-utils sg3_utils device-mapper-multipath
-
Check that iscsi-initiator-utils version is 6.2.0.874-2.el7 or later:
rpm -q iscsi-initiator-utils
-
Set scanning to manual:
sudo sed -i 's/^\(node.session.scan\).*/\1 = manual/' /etc/iscsi/iscsid.conf
-
Enable multipathing:
sudo mpathconf --enable --with_multipathd y --find_multipaths n
Ensure etc/multipath.conf
containsfind_multipaths no
underdefaults
. -
Ensure that
iscsid
andmultipathd
are running:sudo systemctl enable --now iscsid multipathd
-
Enable and start
iscsi
:sudo systemctl enable --now iscsi
-
Install the following system packages:
sudo apt-get install -y open-iscsi lsscsi sg3-utils multipath-tools scsitools
-
Check that open-iscsi version is 2.0.874-5ubuntu2.10 or later (for bionic) or 2.0.874-7.1ubuntu6.1 or later (for focal):
dpkg -l open-iscsi
-
Set scanning to manual:
sudo sed -i 's/^\(node.session.scan\).*/\1 = manual/' /etc/iscsi/iscsid.conf
-
Enable multipathing:
sudo tee /etc/multipath.conf <<-'EOF defaults { user_friendly_names yes find_multipaths no } EOF sudo systemctl enable --now multipath-tools.service sudo service multipath-tools restart
Ensure etc/multipath.conf
containsfind_multipaths no
underdefaults
. -
Ensure that
open-iscsi
andmultipath-tools
are enabled and running:sudo systemctl status multipath-tools sudo systemctl enable --now open-iscsi.service sudo systemctl status open-iscsi
For Ubuntu 18.04, you must discover target ports with iscsiadm
before startingopen-iscsi
for the iSCSI daemon to start. You can alternatively modify theiscsi
service to startiscsid
automatically.
Configure or disable iSCSI self healing
You can configure the following Astra Trident iSCSI self-healing settings to fix stale sessions:
-
iSCSI self-healing interval: Determines the frequency at which iSCSI self-healing is invoked (default: 5 minutes). You can configure it to run more frequently by setting a smaller number or less frequently by setting a larger number.
Setting the iSCSI self-healing interval to 0 stops iSCSI self-healing completely. We do not recommend disabling iSCSI Self-healing; it should only be disabled in certain scenarios when iSCSI self-healing is not working as intended or for debugging purposes. |
-
iSCSI Self-Healing Wait Time: Determines the duration iSCSI self-healing waits before logging out of an unhealthy session and trying to log in again (default: 7 minutes). You can configure it to a larger number so that sessions that are identified as unhealthy have to wait longer before being logged out and then an attempt is made to log back in, or a smaller number to log out and log in earlier.
To configure or change iSCSI self-healing settings, pass the iscsiSelfHealingInterval
and iscsiSelfHealingWaitTime
parameters during the helm installation or helm update.
The following example sets the iSCSI self-healing interval to 3 minutes and self-healing wait time to 6 minutes:
helm install trident trident-operator-100.2402.0.tgz --set iscsiSelfHealingInterval=3m0s --set iscsiSelfHealingWaitTime=6m0s -n trident
To configure or change iSCSI self-healing settings, pass the iscsi-self-healing-interval
and iscsi-self-healing-wait-time
parameters during the tridentctl installation or update.
The following example sets the iSCSI self-healing interval to 3 minutes and self-healing wait time to 6 minutes:
tridentctl install --iscsi-self-healing-interval=3m0s --iscsi-self-healing-wait-time=6m0s -n trident
NVMe/TCP volumes
Install the NVMe tools using the commands for your operating system.
|
sudo yum install nvme-cli sudo yum install linux-modules-extra-$(uname -r) sudo modprobe nvme-tcp
sudo apt install nvme-cli sudo apt -y install linux-modules-extra-$(uname -r) sudo modprobe nvme-tcp
Verify installation
After installation, verify that each node in the Kubernetes cluster has a unique NQN using the command:
cat /etc/nvme/hostnqn
Astra Trident modifies the ctrl_device_tmo value to ensure NVMe doesn't give up on the path if it goes down. Do not change this setting.
|