-
Notifications
You must be signed in to change notification settings - Fork 13
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
Fix static number of volumes - fixes #11 #12
Fix static number of volumes - fixes #11 #12
Conversation
Thank you, @hpdobrica, for your contribution! You're improving the Memgraph experience for our whole community 😄 We will review this PR as soon as possible and get back to you. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This PR includes updates to enable the increase of the replicate set value to more than 1.
It closes the following issue: #11
It also includes the updates to the README and closes #10.
The Memgraph version has been increased to the latest available 2.16.0
Thanks a lot for the initial push @hpdobrica 🦾 🥳
* fix(storage): use volumeClaimTemplates instead of static PVCs - fixes #11 * feat(storage): enable specifying non-default storage class * delete the extra volume claims. * update README.md and bump up the version. --------- Co-authored-by: Ante Javor <[email protected]>
Hello there, in order to enable running multiple replicas, each with their own storage, i have:
note that this is likely a breaking change which will require reinstall of the chart and migration of data (old single volume was named
memgraph-lib-storage
, new one would bememgraph-lib-storage-memgraph-$POD_NUMBER
, as we are editing the volumeClaimTemplates field:i have also added the option to define a desired storage class to be used when creating the volumes.
this pr fixes #11