Integrate Amazon FSx for NetApp ONTAP
You can integrate your Amazon FSx for NetApp ONTAP file system with Astra Trident to ensure Kubernetes clusters running in Amazon Elastic Kubernetes Service (EKS) can provision block and file persistent volumes backed by ONTAP.
Requirements
In addition to Astra Trident requirements, to integrate FSx for ONTAP with Astra Trident, you need:
-
An existing Amazon EKS cluster or self-managed Kubernetes cluster with
kubectl
installed. -
An existing Amazon FSx for NetApp ONTAP file system and storage virtual machine (SVM) that is reachable from your cluster's worker nodes.
-
Worker nodes that are prepared for NFS or iSCSI.
Ensure you follow the node preparation steps required for Amazon Linux and Ubuntu Amazon Machine Images (AMIs) depending on your EKS AMI type. -
Astra Trident supports SMB volumes mounted to pods running on Windows nodes only. Refer to Prepare to provision SMB volumes for details.
ONTAP SAN and NAS driver integration
If you are configuring for SMB volumes, you must read Prepare to provision SMB volumes before creating the backend. |
-
Deploy Astra Trident using one of the deployment methods.
-
Collect your SVM management LIF DNS name. For example, using the AWS CLI, find the
DNSName
entry underEndpoints
→Management
after running the following command:aws fsx describe-storage-virtual-machines --region <file system region>
-
Create and install certificates for NAS backend authentication or SAN backend authentication.
You can log in to your file system (for example to install certificates) using SSH from anywhere that can reach your file system. Use the fsxadmin
user, the password you configured when you created your file system, and the management DNS name fromaws fsx describe-file-systems
. -
Create a backend file using your certificates and the DNS name of your management LIF, as shown in the sample below:
YAML--- version: 1 storageDriverName: ontap-san backendName: customBackendName managementLIF: svm-XXXXXXXXXXXXXXXXX.fs-XXXXXXXXXXXXXXXXX.fsx.us-east-2.aws.internal svm: svm01 clientCertificate: ZXR0ZXJwYXB...ICMgJ3BhcGVyc2 clientPrivateKey: vciwKIyAgZG...0cnksIGRlc2NyaX trustedCACertificate: zcyBbaG...b3Igb3duIGNsYXNz
JSON{ "version": 1, "storageDriverName": "ontap-san", "backendName": "customBackendName", "managementLIF": "svm-XXXXXXXXXXXXXXXXX.fs-XXXXXXXXXXXXXXXXX.fsx.us-east-2.aws.internal", "svm": "svm01", "clientCertificate": "ZXR0ZXJwYXB...ICMgJ3BhcGVyc2", "clientPrivateKey": "vciwKIyAgZG...0cnksIGRlc2NyaX", "trustedCACertificate": "zcyBbaG...b3Igb3duIGNsYXNz" }
For information about creating backends, see these links:
After deployment, you can create a storage class, provision a volume, and mount the volume in a pod.
Prepare to provision SMB volumes
You can provision SMB volumes using the ontap-nas
driver. Before you complete ONTAP SAN and NAS driver integration complete the following steps.
Before you can provision SMB volumes using the ontap-nas
driver, you must have the following.
-
A Kubernetes cluster with a Linux controller node and at least one Windows worker node running Windows Server 2019. Astra Trident supports SMB volumes mounted to pods running on Windows nodes only.
-
At least one Astra Trident secret containing your Active Directory credentials. To generate secret
smbcreds
:kubectl create secret generic smbcreds --from-literal username=user --from-literal password='password'
-
A CSI proxy configured as a Windows service. To configure a
csi-proxy
, refer to GitHub: CSI Proxy or GitHub: CSI Proxy for Windows for Kubernetes nodes running on Windows.
-
Create SMB shares. You can create the SMB admin shares in one of two ways either using the Microsoft Management Console Shared Folders snap-in or using the ONTAP CLI. To create the SMB shares using the ONTAP CLI:
-
If necessary, create the directory path structure for the share.
The
vserver cifs share create
command checks the path specified in the -path option during share creation. If the specified path does not exist, the command fails. -
Create an SMB share associated with the specified SVM:
vserver cifs share create -vserver vserver_name -share-name share_name -path path [-share-properties share_properties,...] [other_attributes] [-comment text]
-
Verify that the share was created:
vserver cifs share show -share-name share_name
Refer to Create an SMB share for full details.
-
-
When creating the backend, you must configure the following to specify SMB volumes. For all FSx for ONTAP backend configuration options, refer to FSx for ONTAP configuration options and examples.
Parameter Description Example smbShare
You can specify one of the following: the name of an SMB share created using the Microsoft Management Console or ONTAP CLI or a name to allow Astra Trident to create the SMB share.
This parameter is required for Amazon FSx for ONTAP backends.smb-share
nasType
Must set to
smb
. If null, defaults tonfs
.smb
securityStyle
Security style for new volumes.
Must be set tontfs
ormixed
for SMB volumes.ntfs
ormixed
for SMB volumesunixPermissions
Mode for new volumes. Must be left empty for SMB volumes.
""