|
5 | 5 | * [Installation Oveerview](#Installation-Overview) |
6 | 6 | * [Detailed Instructions](#Detailed-instructions) |
7 | 7 | * [Clone the "NetApp/FSx-ONTAP-samples-scripts" repo from GitHub](#Clone-the-NetAppFSx-ONTAP-samples-scripts-repo-from-GitHub) |
8 | | - * [Make any desired changes to the variables.tf file](#Make-any-desired-changes-to-the-variables.tf-file) |
| 8 | + * [Make any desired changes to the variables.tf file](#Make-any-desired-changes-to-the-variablestf-file) |
9 | 9 | * [Initialize the Terraform environment](#Initialize-the-Terraform-environment) |
10 | 10 | * [Deploy the resources](#Deploy-the-resources) |
11 | 11 | * [SSH to the jump server to complete the setup](#SSH-to-the-jump-server-to-complete-the-setup) |
12 | | - * [Configure the 'aws' CLI](#Configure-the-'aws'-CLI) |
| 12 | + * [Configure the 'aws' CLI](#Configure-the-aws-CLI) |
13 | 13 | * [Allow access to the EKS cluster for your user id](#Allow-access-to-the-EKS-cluster-for-your-user-id) |
14 | 14 | * [Configure kubectl to use the EKS cluster](#Configure-kubectl-to-use-the-EKS-cluster) |
15 | 15 | * [Confirm Astra Trident is up and running](#Confirm-Astra-Trident-is-up-and-running) |
16 | 16 | * [Configure the Trident CSI backend to use FSx for NetApp ONTAP](#Configure-the-Trident-CSI-backend-to-use-FSx-for-NetApp-ONTAP) |
17 | 17 | * [Create a Kubernetes storage class](#Create-a-Kubernetes-storage-class) |
18 | 18 | * [Create a stateful application](#Create-a-stateful-application) |
19 | 19 | * [Create a Persistent Volume Claim](#Create-a-Persistent-Volume-Claim) |
20 | | - * [Deploy a MySQL database using the storage created above](#Deploy-a-MySQL-database-using-the-storage-created-above) |
| 20 | + * [Deploy a MySQL database using the PVC](#Deploy-a-MySQL-database-using-the-storage-created-above) |
21 | 21 | * [Populate the MySQL database with data](#Populate-the-MySQL-database-with-data) |
22 | 22 | * [Create a snapshot of the MySQL data](#Create-a-snapshot-of-the-MySQL-data) |
23 | 23 | * [Install the Kubernetes Snapshot CRDs and Snapshot Controller](#Install-the-Kubernetes-Snapshot-CRDs-and-Snapshot-Controller) |
24 | 24 | * [Create a snapshot class based on the CRD instsalled](#Create-a-snapshot-class-based-on-the-CRD-installed) |
25 | 25 | * [Create a snapshot of the MySQL data](#Create-a-snapshot-of-the-MySQL-data) |
26 | 26 | * [Clone the MySQL data to a new storage persistent volume](#Clone-the-MySQL-data-to-a-new-storage-persistent-volume) |
27 | 27 | * [Create a new MySQL database using the cloned volume](#Create-a-new-MySQL-database-using-the-cloned-volume) |
28 | | - * [To confirm that the new database is up and running, log into it and check the data](#To-confirm-that-the-new-database-is-up-and-running,-log-into-it-and-check-the-data) |
| 28 | + * [Confirm that the new database is up and running](#Confirm-that-the-new-database-is-up-and-running) |
29 | 29 | * [Final steps](#Final-steps) |
30 | 30 | * [Author Information](#author-information) |
31 | 31 | * [License](#license) |
@@ -228,7 +228,7 @@ Astra Trident has several different drivers to choose from. You can read more ab |
228 | 228 | drivers it supports in the |
229 | 229 | [Astra Trident documentation.](https://docs.netapp.com/us-en/trident/trident-use/trident-fsx.html#fsx-for-ontap-driver-details) |
230 | 230 |
|
231 | | -If you want to use an iSCSI LUN instead of an NFS file system, please refer to [these instructions](README-san.md#Configure-the-Trident-CSI-backend-to-use-FSx-for-NetApp-ONTAP). |
| 231 | +If you want to use an iSCSI LUN instead of an NFS file system, please refer to [these instructions](README-san.md#configure-the-trident-csi-backend-to-use-fsx-for-netapp-ontap). |
232 | 232 |
|
233 | 233 | In the commands below you're going to need the FSxN ID, the FSX SVM name, and the |
234 | 234 | secret ARN. All of that information can be obtained from the output |
@@ -514,7 +514,8 @@ csi-snapshotter-0 3/3 Running 0 22h |
514 | 514 | mysql-fsx-nas-695b497757-8n6bb 1/1 Running 0 21h |
515 | 515 | mysql-fsx-nas-clone-d66d9d4bf-2r9fw 1/1 Running 0 14s |
516 | 516 | ``` |
517 | | -### To confirm that the new database is up and running, log into it and check the data |
| 517 | +### Confirm that the new database is up and running |
| 518 | +To confirm that hte new database is up and running log into it and check the data by running this command: |
518 | 519 | ```bash |
519 | 520 | kubectl exec -it $(kubectl get pod -l "app=mysql-fsx-nas-clone" --namespace=default -o jsonpath='{.items[0].metadata.name}') -- mysql -u root -p |
520 | 521 | ``` |
|
0 commit comments