-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RWX not recognized #20
Comments
Reading through mq.yaml, it looks like the problem is that the installation instructions are wrong. There is an additional --set required for RWXStorageClassName (in addition to dns.RWX.storageClassName. The following worked:
|
For AWS deployments, you need to set up EFS Create an IAM policy to grant EFS permissions with the name AmazonEKS_EFS_CSI_Driver_Policy
Create a service account with this policy for EFS access
Install the EFS driver
You should see a response like this:
Retrieve the EKS cluster’s VPC:
(or just look it up in the console, e.g. something like vpc-0e9920e88fb6788fe Look up the EKS Cluster’s CIDR:
(or just look it up in the console, e.g. EKS clusters usually default to is 10.100.0.0/16 Look up the VPC’s security group:
Or just look it up in the console: you'll find the security group for your EKS cluster looks like sg-0afdd009a4f2ae974 Create an inbound rule to allow EFS traffic with the EKS using the values you "found" above:
Create an EFS files system for the cluster
Get the list of subnets for the EKS cluster from the management console or with the command:
For each PRIVATE Subnet in the cluster
Create a storage class for EFS:
This process sets up a shareable filesystem that you can reference through the storageClassName efs-sc |
Installing in AWS EKS
Error: INSTALLATION FAILED: execution error at (netmaker/templates/mq.yaml:103:23): A valid .Values.RWXStorageClassName entry required! Specify an available RWX storage class.
I have tried using both EBS and EFS (AWS' nfs implementation).
What does netmaker SPECIFICALLY require, or, how is it determining that my storage class is not RWX or RWO when it is the OV/PVC that sets the access mode?
The text was updated successfully, but these errors were encountered: