Skip to content

Commit 92e3d9c

Browse files
committed
Minor cleanup.
1 parent ac06497 commit 92e3d9c

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

documentation/site/content/managing-domains/persistent-storage/oci-fss-pv.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@ an update to properly initialize the file ownership on the persistent volume
1111
when the domain is initially created."
1212
---
1313

14-
Refer to the OCI documentation for [setting up storage for kubernetes clusters](https://docs.oracle.com/en-us/iaas/Content/ContEng/Tasks/contengcreatingpersistentvolumeclaim.htm) for details.
14+
#### References
1515

16-
For provisioning PVCs on the OCI File Storage Service, refer to the documentation [here](https://docs.oracle.com/en-us/iaas/Content/ContEng/Tasks/contengcreatingpersistentvolumeclaim_Provisioning_PVCs_on_FSS.htm#Provisioning_Persistent_Volume_Claims_on_the_FileStorageService).
16+
- [Provisioning PVCs on the File Storage Service (FSS)](https://docs.oracle.com/en-us/iaas/Content/ContEng/Tasks/contengcreatingpersistentvolumeclaim_Provisioning_PVCs_on_FSS.htm#Provisioning_Persistent_Volume_Claims_on_the_FileStorageService) in the OCI documentation.
17+
- [Setting up storage for kubernetes clusters](https://docs.oracle.com/en-us/iaas/Content/ContEng/Tasks/contengcreatingpersistentvolumeclaim.htm) in the OCI documentation.
1718

1819
If you are running your Kubernetes cluster on Oracle Container Engine
1920
for Kubernetes (commonly known as OKE), and you use Oracle Cloud Infrastructure File Storage (FSS)
@@ -25,17 +26,17 @@ when the domain is initially created.
2526
File permission handling on persistent volumes can differ between
2627
cloud providers and even with the underlying storage handling on
2728
Linux based systems.
28-
The operator will create directories on the PV under the shared mount path.
29-
These instructions provide one option to update the file ownership and permissions.
29+
The operator requires permissions to create directories on the persistent volume under the shared mount path.
30+
The following instructions provide an option to update the file ownership and permissions.
3031
{{% /notice %}}
3132

3233

3334
#### Updating the permissions of shared directory on Persistent storage
34-
The operator provides a utility script `pv-pvc-helper.sh` as part of the lifecycle scripts to change the ownership and permissions of the shared directory on Persistent storage.
35+
The operator provides a utility script `pv-pvc-helper.sh` as part of the lifecycle scripts to change the ownership and permissions of the shared directory on the Persistent storage.
3536

3637
This script launches a Pod and mounts the specified PVC in the Pod containers at the specified mount path. You can then exec in the Pod and manually change the permissions or ownership.
3738

38-
For more details, see the `Examine, change permissions or delete PV contents` section in the [README](https://github.com/oracle/weblogic-kubernetes-operator/tree/{{< latestMinorVersion >}}/kubernetes/samples/scripts/domain-lifecycle/README.md) file for the `pv-pvc-helper.sh` script details.
39+
See the `pv-pvc-helper.sh` in `Examine, change permissions or delete PV contents` section in the [README](https://github.com/oracle/weblogic-kubernetes-operator/tree/{{< latestMinorVersion >}}/kubernetes/samples/scripts/domain-lifecycle/README.md) file for the script details.
3940

4041
For example, run the following command to create the pod.
4142

documentation/site/content/managing-domains/persistent-storage/pv-pvc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ PersistentVolumes can point to different storage locations, for example NFS serv
2020

2121
**Note regarding HostPath**: In a single-node Kubernetes cluster, such as may be used for testing or proof of concept activities, `HOST_PATH` provides the simplest configuration. In a multinode Kubernetes cluster, a `HOST_PATH` that is located on shared storage mounted by all nodes in the Kubernetes cluster is the simplest configuration. If nodes do not have shared storage, then NFS is probably the most widely available option. There are other options listed in the referenced table.
2222

23-
The operator provides a sample script to create the PersistentVolume and PersistentVolumeClaim for the domain. this script must be executed before creating the domain. Beginning with Operator 4.1.0, for Domain on PV [domain home source type]({{< relref "/managing-domains/choosing-a-model/_index.md" >}}), the operator provides options to create the PV and PVC. See [Domain on PV documentation]({{< relref "/managing-domains/domain-on-pv/_index.md" >}}) for more details.
23+
The operator provides a sample script to create the PersistentVolume and PersistentVolumeClaim for the domain. this script must be executed before creating the domain. Beginning with Operator 4.1.0, for Domain on PV [domain home source type]({{< relref "/managing-domains/choosing-a-model/_index.md" >}}), the operator provides options to create the PV and PVC during the domain initialization. See [Domain on PV documentation]({{< relref "/managing-domains/domain-on-pv/_index.md" >}}) or the `domain.spec.configuration.initializeDomainOnPV` section in the domain resource [schema](https://github.com/oracle/weblogic-kubernetes-operator/blob/{{< latestMinorVersion >}}/documentation/domains/Domain.md) for more details.
2424

2525
#### Persistent Volumes using HostPath approach
2626
The `HOST_PATH` provider is the simplest case for creating a Persistent Volume. It requires creating a directory on the Kubernetes master and ensuring that it has the correct permissions:

kubernetes/samples/scripts/domain-lifecycle/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ For information on how to start, stop, restart, and scale WebLogic Server instan
2929
- [`waitForDomain.sh`](#waitfordomainsh)
3030
- [Examine, change permissions or delete PV contents](#examine-change-or-delete-pv-contents)
3131
- [`pv-pvc-helper.sh`](#pv-pvc-helpersh)
32+
- [OPSS Wallet utility](#opss-wallet-utility)
33+
- [`opss-wallet.sh`](#opss-walletsh)
3234

3335
### Prerequisites
3436

@@ -316,6 +318,8 @@ $ kubectl delete pod pvhelper -n <namespace>
316318

317319
### OPSS Wallet utility
318320

321+
#### `opss-wallet.sh`
322+
319323
The OPSS wallet utility is a helper script for JRF type domains that can save an OPSS key
320324
wallet from a running domain's introspector configmap to a file, and/or
321325
restore an OPSS key wallet file to a Kubernetes secret for use by a

0 commit comments

Comments
 (0)