From 7814beb30042a1cce6f7bfba09921cf58013b1ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Uro=C5=A1=20Pa=C5=A1=C4=8Dinski?= Date: Fri, 10 Nov 2023 22:10:48 +0100 Subject: [PATCH] Improved text --- docs/node/run-your-node/paratime-node.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/node/run-your-node/paratime-node.mdx b/docs/node/run-your-node/paratime-node.mdx index 5c855a7457..5e01c1043f 100644 --- a/docs/node/run-your-node/paratime-node.mdx +++ b/docs/node/run-your-node/paratime-node.mdx @@ -423,13 +423,13 @@ In case of `bwrap` issues you need to adjust your Seccomp or AppArmor profiles t ### Bubblewrap Fails to Create Temporary Directory -If the `/tmp` directory is not writable by the user running the node, the Bubblewrap sandbox may fail to start the ParaTimes. In the logs you will see errors about creating temporary directory, like: +If the `/tmp` directory is not writable by the user running the node, the Bubblewrap sandbox may fail to start the ParaTimes. In the logs you will see errors about creating a temporary directory, like: ```json {"caller":"sandbox.go:546","err":"failed to create temporary directory: mkdir /tmp/oasis-runtime1152692396: read-only file system","level":"error","module":"runtime/host/sandbox","msg":"failed to start runtime","runtime_id":"000000000000000000000000000000000000000000000000a6d1e3ebf60dff6c","ts":"2023-11-09T14:08:50.554629545Z"} ``` -The node might report the status that a runtime has not been provisioned yet, like: +The node might report in the status field that a runtime has not been provisioned yet, like: ```bash $ oasis-node control status -a unix:/node/data/internal.sock | grep status @@ -438,7 +438,7 @@ $ oasis-node control status -a unix:/node/data/internal.sock | grep status This can happen, for example, in Kubernetes, when the `readOnlyRootFilesystem` setting in a Pod or container security context is set to `true`. -To resolve the issue, please make sure that the `/tmp` directory is writable by the user running the node. If you are running the node in Kubernetes, you can set the `readOnlyRootFilesystem` setting to `false`, or better yet, mount a dedicated volume into `/tmp`. It can be very small in size, e.g., `1 Mi` is enough. +To resolve the issue, please make sure that the `/tmp` directory is writable by the user running the node. If you are running the node in Kubernetes, you can set the `readOnlyRootFilesystem` setting to `false`, or better yet, mount a dedicated volume into `/tmp`. It can be very small in size, e.g., `1 MiB` is enough. ### Stake Requirement