Skip to content

Commit 490e707

Browse files
committed
Update text for a GID annotated Persistent Volume
1 parent 6c48ab2 commit 490e707

File tree

1 file changed

+5
-5
lines changed
  • docs-source/content/userguide/managing-domains/persistent-storage

1 file changed

+5
-5
lines changed

docs-source/content/userguide/managing-domains/persistent-storage/_index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,23 +30,23 @@ $ mkdir -m 777 -p /path/to/domain1PersistentVolume
3030

3131
Currently, we recommend that you use NFS version 3.0 for running WebLogic Server on OCI Container Engine for Kubernetes. During certification, we found that when using NFS 4.0, the servers in the WebLogic domain went into a failed state intermittently. Because multiple threads use NFS (default store, diagnostics store, Node Manager, logging, and `domain_home`), there are issues when accessing the file store. These issues are removed by changing the NFS to version 3.0.
3232

33-
#### Persistent Volume GID Annotation
33+
#### Persistent volume GID annotation
3434

3535
The `HOST_PATH` directory permissions can be made more secure by using a Kubernetes annotation on the
3636
persistent volume that provides the group identifier (GID) which will be added to pods using the persistent volume.
3737

38-
For example, if the GID of the directory is `6789` then the directory can be updated to remove permissions
38+
For example, if the GID of the directory is `6789`, then the directory can be updated to remove permissions
3939
other than for the user and group along with the persistent volume being annotated with the specified GID:
4040

4141
```bash
4242
$ chmod 770 /path/to/domain1PersistentVolume
4343
$ kubectl annotate pv domain1-weblogic-sample-pv pv.beta.kubernetes.io/gid=6789
4444
```
4545

46-
After the domain is created and servers are running, the group ownership of the persistent volume files
47-
can be update to the specified GID which will provide read access to the group members. Normally
46+
Typically, after the domain is created and servers are running, the group ownership of the persistent volume files
47+
can be updated to the specified GID which will provide read access to the group members. Normally
4848
files created from a pod onto the persistent volume will have UID `1000` and GID `1000` which is the
49-
`oracle` user from the WebLogic docker image.
49+
`oracle` user from the WebLogic Docker image.
5050

5151
An example of updating the group ownership on the persistent volume would be as follows:
5252

0 commit comments

Comments
 (0)