From 13e799c354ec4f9a150fd3cadbad524b76a7804d Mon Sep 17 00:00:00 2001 From: john doe Date: Thu, 25 Apr 2024 13:53:48 +0200 Subject: [PATCH] add readme --- z2/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/z2/README.md b/z2/README.md index 7faa439..e61a204 100644 --- a/z2/README.md +++ b/z2/README.md @@ -102,6 +102,27 @@ The `frontend` service is a ervice resource that exposes the `frontend` deployme Port: `3000` Target Port: `3000` + +### PersistentVolumeClaim + +The `PersistentVolumeClaim` (is a resource that requests storage for a Pod. In this case, the PVC is used to request storage for the `p2p-node` Pod. + +- **Metadata:** + - Name: `node-data` + - Namespace: `veritas` + +- **Spec:** + - **Access Modes:** `ReadWriteOnce` + + The PVC requests a volume with read-write access for a single node. + + - **Resources:** + - **Requests:** + - Storage: `300Mi` + + The PVC requests 300Mi of storage. + + # Accessibility the frontend can be accessed through localhost:3000 on any web browser and the rpc server runs on localhost:6000