We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Current template does not let configure Parameters or Annotations of Storage Class.
For example,
gp2
kind: StorageClass apiVersion: storage.k8s.io/v1 metadata: name: ebs-sc provisioner: ebs.csi.aws.com volumeBindingMode: WaitForFirstConsumer parameters: csi.storage.k8s.io/fstype: xfs type: gp2 {% if restrict_az_provisioning %} allowedTopologies: - matchLabelExpressions: - key: topology.ebs.csi.aws.com/zone values: {% for value in aws_ebs_availability_zones %} - {{ value }} {% endfor %} {% endif %}
type
gp3
iops
throughput
The text was updated successfully, but these errors were encountered:
/assign
Sorry, something went wrong.
Kubespray's AWS EBS CSI is outdated. We may upgrade to the latest version first.
No branches or pull requests
What would you like to be added
Current template does not let configure Parameters or Annotations of Storage Class.
For example,
gp2
type which is not the best practice anymore (https://aws.amazon.com/blogs/storage/migrate-your-amazon-ebs-volumes-from-gp2-to-gp3-and-save-up-to-20-on-costs/)Why is this needed
type
of ebs and usegp3
(or other types based on need)iops
orthroughput
of EBSThe text was updated successfully, but these errors were encountered: