hey all. I want to try self-hosted Signoz on AWS E...
# support
p
hey all. I want to try self-hosted Signoz on AWS EKS, however going through documentation I noticed it uses gp2 storage class. Why not gp3? Can we use gp3?
1
a
should be doable. Adding @Prashant Shahi for further help. On a guess, just changing
gp2
to
gp3
does not work? Can you check the default storage class too?
p
Hi @Pavel Ponomaryov, you need not use the gp2 storage class, but opt to use any storage class available. In case of old EKS cluster version, you might need to manually create storage class. For 1.27+,
gp3
comes as the default storage class. You can just remove the custom storage class and global storage class to use that instead. Ref: https://github.com/awslabs/amazon-eks-ami/pull/1197
p
nice, thanks for confirmation