-
Notifications
You must be signed in to change notification settings - Fork 12
DOC-573: add mount PVC topic #330
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
Conversation
✅ Deploy Preview for pedantic-goldberg-f76ec1 ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
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.
Minor comments/suggestions - wonder if it's worth linking https://docs.hazelcast.com/hazelcast/5.5/getting-started/persistence (now that I've fixed it in the Enterprise PR)?
| @@ -0,0 +1,41 @@ | |||
| = Mount Persistent Volume Claims for Hazelcast clusters | |||
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.
| = Mount Persistent Volume Claims for Hazelcast clusters | |
| = Mount Persistent Volume Claims (PVCs) for Hazelcast clusters |
WDYT?
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.
Since the first line explains this "You can mount one or more Persistent Volume Claims (PVCs) directly to your Hazelcast cluster" and in the interest of keeping the headings short, I think it's best to leave as is
|
|
||
| == How it works | ||
|
|
||
| - Define one or more PVCs in the persistenceVolumeClaims section of your Hazelcast custom resource (CR). |
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.
| - Define one or more PVCs in the persistenceVolumeClaims section of your Hazelcast custom resource (CR). | |
| - Define one or more PVCs in the `persistenceVolumeClaims` section of your Hazelcast custom resource (CR). |
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.
done
|
|
||
| == Example: Configure diagnostics with a named PVC | ||
|
|
||
| Below is an example configuration that shows how to define a PVC and use it for diagnostics logging by specifying the pvcName field. The diagnostics logs will be stored in the PVC mounted at `/data/diagnostics-pvc-volume`. |
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.
| Below is an example configuration that shows how to define a PVC and use it for diagnostics logging by specifying the pvcName field. The diagnostics logs will be stored in the PVC mounted at `/data/diagnostics-pvc-volume`. | |
| Below is an example configuration that shows how to define a PVC and use it for diagnostics logging by specifying the `pvcName` field. The diagnostic logs will be stored in the PVC mounted at `/data/diagnostics-pvc-volume`. |
For https://hazelcast.atlassian.net/browse/DOC-573
As part of the Diagnostic Logging work, we need to document how to mount one or more Persistent Volume Claims (PVCs) directly to a Hazelcast cluster.
Sergii suggests this goes into a new topic under Configuration properties.
The work to add the fields to the CRD has been done in PR: https://github.com/hazelcast/hazelcast-platform-operator/pull/1432