Skip to content

Commit 189e92b

Browse files
Merge pull request #27 from janleemans/jleemans-issue26
Issue #26 Documentation NFS Volume
2 parents dc271ea + 5e7f3b7 commit 189e92b

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

docs/sidb/README.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ nodeSelector:
307307
```
308308

309309
##### OCI NFS Volume Static Provisioning
310-
Similar to the block volume static provisioning, you have to manually create a file system resource from the OCI console, and fetch its `OCID, Mount Target and Export Path`. Mention these values in the following YAML file to create the persistent volume:
310+
Similar to the block volume static provisioning, you have to manually create a file system resource from the OCI console, and fetch its `OCID, Mount Target IP Address and Export Path`. Mention these values in the following YAML file to create the persistent volume:
311311

312312
```yaml
313313
apiVersion: v1
@@ -323,10 +323,17 @@ spec:
323323
persistentVolumeReclaimPolicy: Retain
324324
csi:
325325
driver: fss.csi.oraclecloud.com
326-
volumeHandle: "<OCID of the file system>:<Mount Target>/<Export Path>"
326+
volumeHandle: "<OCID of the file system>:<Mount Target IP Address>:/<Export Path>"
327327
```
328328

329-
**Note:** Whenever a mount target is provisioned in OCI, its `Reported Size (GiB)` values are very large. This is visible on the mount target page when logged in to the OCI console. Some applications will fail to install if the results of a space requirements check show too much available disk space. So specify, in gibibytes (GiB), the maximum capacity reported by file systems exported through this mount target. This setting does not limit the actual amount of data you can store.
329+
**Note:**
330+
- Example volumeHandle in the above config file :
331+
332+
`volumeHandle: "ocid1.filesystem.oc1.eu_frankfurt_1.aaaaaqe3bj...eaaa:10.0.10.156:/FileSystem-20220713-1036-02"`
333+
334+
- Whenever a mount target is provisioned in OCI, its `Reported Size (GiB)` values are very large. This is visible on the mount target page when logged in to the OCI console. Some applications will fail to install if the results of a space requirements check show too much available disk space. So in the OCI Console, click the little "Pencil" icon besides the **Reported Size** parameter of the Mount Target to specify, in gigabytes (GiB), the maximum capacity reported by file systems exported through this mount target. This setting does not limit the actual amount of data you can store.
335+
336+
- Make sure to open the required ports to access the NFS volume from the K8S cluster: add the required ports to the security list of the subnet where your K8S nodes are connected to; see **[here](https://docs.oracle.com/en-us/iaas/Content/File/Tasks/securitylistsfilestorage.htm)** for the details.
330337

331338
### Configuring a Database
332339
The `OraOperator` facilitates you to configure the database. Various database configuration options are explained in the following subsections:

0 commit comments

Comments
 (0)