#Trident config with QoS
1 messages · Page 1 of 1 (latest)
Can you redact your username/password out of your backend and post it too?
I think what you need to plan on doing is having a number of backends, each with its own qos policy and then choose the appropriate backend with labels and selectors.
https://kb.netapp.com/Cloud/Astra/Trident/How_Trident_uses_labels_to_selects_the_correct_backend
I'm pretty sure the ' qosPolicy: "qos_policy" ' line at the end of the storageClass is causing your problems. You can try removing it and seeing if it works.
Hi @odd vault ,
Please find the my backend json file , thanks for your response .
$ cat backend.json
{
"version": 1,
"storageDriverName": "ontap-nas",
"managementLIF": "X.X.X.X",
"dataLIF": "X.X.X.X",
"svm": "X1_svm01",
"username": "admin",
"password": "XXXXXX,
"storagePrefix": "trident_",
}
You need to specify the qos policy in the backend per https://docs.netapp.com/us-en/trident/trident-use/ontap-nas-examples.html#backend-configuration-options
{
"version": 1,
"storageDriverName": "ontap-nas",
"managementLIF": "X.X.X.X",
"dataLIF": "X.X.X.X",
"svm": "X1svm01",
"username": "admin",
"password": "XXXXXX,
"storagePrefix": "trident",
"qosPolicy": "qos_policy"
}
Then take it out of the storageClass as it isn't valid there.