Skip to content

Commit 68e07da

Browse files
rosemarymaranorjeberhard
authored andcommitted
minor edits
1 parent c0fbc8e commit 68e07da

File tree

18 files changed

+27
-26
lines changed

18 files changed

+27
-26
lines changed

docs-source/content/quickstart/cleanup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ weight: 7
1313
```bash
1414
$ helm delete --purge sample-domain1-ingress
1515
```
16-
1. Remove the domain resources by using the sample [`delete-weblogic-domain-resources`](http://github.com/oracle/weblogic-kubernetes-operator/blob/master/kubernetes/samples/scripts/delete-domain/delete-weblogic-domain-resources.sh) script.
16+
1. Remove the domain resources by using the sample [`delete-weblogic-domain-resources`](http://github.com/oracle/weblogic-kubernetes-operator/blob/master/kubernetes/samples/scripts/delete-domain/delete-weblogic-domain-resources.sh) script:
1717

1818
```bash
1919
$ kubernetes/samples/scripts/delete-domain/delete-weblogic-domain-resources.sh -d sample-domain1

docs-source/content/samples/simple/domains/domain-home-in-image/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@ The script will perform the following steps:
5959
* Build a Docker image based on the Docker sample, [Example Image with a WebLogic Server Domain using the Oracle WebLogic Scripting Tooling (WLST)](https://github.com/oracle/docker-images/tree/master/OracleWebLogic/samples/12213-domain-home-in-image) or [Example Image with a WebLogic Server Domain using the Oracle WebLogic Deploy Tooling (WDT)](https://github.com/oracle/docker-images/tree/master/OracleWebLogic/samples/12213-domain-home-in-image-wdt). It will create a sample WebLogic Server domain in the Docker image.
6060
{{% notice warning %}}
6161
Oracle strongly recommends storing the image containing the domain home as private
62-
in the registry (e.g. Oracle Cloud Infrastructure Registry, Docker Hub, etc.) as
62+
in the registry (for example, Oracle Cloud Infrastructure Registry, Docker Hub, and such) as
6363
this image contains sensitive information about the domain including keys and
64-
credentials that are used to access external resources (e.g. datasource password).
64+
credentials that are used to access external resources (for example, data source password).
6565
For more information about
6666
[domain home in image protection]({{<relref "/security/domain-security/image-protection.md#weblogic-domain-in-docker-image-protection">}}),
6767
see the ***Security*** section.

docs-source/content/samples/simple/domains/domain-home-on-pv/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ The following parameters can be provided in the inputs file.
103103
| `productionModeEnabled` | Boolean indicating if production mode is enabled for the domain. | `true` |
104104
| `serverStartPolicy` | Determines which WebLogic Servers will be started up. Legal values are `NEVER`, `IF_NEEDED`, `ADMIN_ONLY`. | `IF_NEEDED` |
105105
| `t3ChannelPort` | Port for the T3 channel of the NetworkAccessPoint. | `30012` |
106-
| `t3PublicAddress` | Public address for the T3 channel. This should be set to the public address of the Kubernetes cluster. This would normally be a load balancer address. <p/>For development environments only: In a single server (all-in-one) Kubernetes deployment, this may be set to the address of the master, or at the very least, it must be set to the address of one of the worker nodes. | If not provided, the script will attempt to set it to the IP address of the kubernetes cluster |
107-
| `weblogicCredentialsSecretName` | Name of the Kubernetes secret for the Administration Server's username and password. If not specified, the value is derived from the `domainUID` as `<domainUID>-weblogic-credentials`. | `domain1-weblogic-credentials` |
106+
| `t3PublicAddress` | Public address for the T3 channel. This should be set to the public address of the Kubernetes cluster. This would normally be a load balancer address. <p/>For development environments only: In a single server (all-in-one) Kubernetes deployment, this may be set to the address of the master, or at the very least, it must be set to the address of one of the worker nodes. | If not provided, the script will attempt to set it to the IP address of the Kubernetes cluster |
107+
| `weblogicCredentialsSecretName` | Name of the Kubernetes secret for the Administration Server's user name and password. If not specified, the value is derived from the `domainUID` as `<domainUID>-weblogic-credentials`. | `domain1-weblogic-credentials` |
108108
| `weblogicImagePullSecretName` | Name of the Kubernetes secret for the Docker Store, used to pull the WebLogic Server image. | `docker-store-secret` |
109109

110110
Note that the names of the Kubernetes resources in the generated YAML files may be formed with the value of some of the properties specified in the `create-inputs.yaml` file. Those properties include the `adminServerName`, `clusterName` and `managedServerNameBase`. If those values contain any characters that are invalid in a Kubernetes service name, those characters are converted to valid values in the generated YAML files. For example, an uppercase letter is converted to a lowercase letter and an underscore `("_")` is converted to a hyphen `("-")`.

docs-source/content/samples/simple/storage/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ A PV and PVC can be shared by multiple WebLogic domains or dedicated to a partic
1414

1515
#### Prerequisites
1616

17-
Please read the [Persistent storage]({{< relref "/userguide/managing-domains/persistent-storage/_index.md" >}}) document before proceeding.
17+
Before you begin, read this document, [Persistent storage]({{< relref "/userguide/managing-domains/persistent-storage/_index.md" >}}).
1818

1919
#### Using the scripts to create a PV and PVC
2020

@@ -60,7 +60,7 @@ The PV and PVC creation inputs can be customized by editing the `create-pv-pvc-i
6060
| `domainUID` | ID of the domain resource to which the generated PV and PVC will be dedicated. Leave it empty if the PV and PVC are going to be shared by multiple domains. | no default |
6161
| `namespace` | Kubernetes namespace to create the PVC. | `default` |
6262
| `baseName` | Base name of the PV and PVC. The generated PV and PVC will be `<baseName>-pv` and `<baseName>-pvc` respectively. | `weblogic-sample` |
63-
| `weblogicDomainStoragePath` | Physical path of the storage for the PV. When `weblogicDomainStorageType` is set to `HOST_PATH`, this value should be set the to path to the domain storage on the Kubernetes host. When `weblogicDomainStorageType` is set to NFS, then `weblogicDomainStorageNFSServer` should be set to the IP address or name of the DNS server, and this value should be set to the exported path on that server. Note that the path where the domain is mounted in the WebLogic containers is not affected by this setting, that is determined when you create your domain. | no default |
63+
| `weblogicDomainStoragePath` | Physical path of the storage for the PV. When `weblogicDomainStorageType` is set to `HOST_PATH`, this value should be set the to path to the domain storage on the Kubernetes host. When `weblogicDomainStorageType` is set to NFS, then `weblogicDomainStorageNFSServer` should be set to the IP address or name of the DNS server, and this value should be set to the exported path on that server. Note that the path where the domain is mounted in the WebLogic containers is not affected by this setting; that is determined when you create your domain. | no default |
6464
| `weblogicDomainStorageReclaimPolicy` | Kubernetes PVC policy for the persistent storage. The valid values are: `Retain`, `Delete`, and `Recycle`. | `Retain` |
6565
| `weblogicDomainStorageSize` | Total storage allocated for the PVC. | `10Gi` |
6666
| `weblogicDomainStorageType` | Type of storage. Legal values are `NFS` and `HOST_PATH`. If using `NFS`, `weblogicDomainStorageNFSServer` must be specified. | `HOST_PATH` |
@@ -180,7 +180,7 @@ spec:
180180

181181
#### Verify the PV and PVC objects
182182

183-
You can use this command to verify the persistent volume was created, note that the `Status` field
183+
You can use this command to verify the persistent volume was created. Note that the `Status` field
184184
should have the value `Bound`, indicating the that persistent volume has been claimed:
185185

186186
```

docs-source/content/userguide/introduction/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Introduction"
33
date: 2019-02-23T16:43:10-05:00
44
weight: 2
5-
description: "Learn about the operator's design, architecture, terms, and prerequisites."
5+
description: "Learn about the operator's design, architecture, important terms, and prerequisites."
66
---
77
{{% children style="h4" description="true" %}}
88

docs-source/content/userguide/introduction/demo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Demo"
33
date: 2019-02-23T20:51:59-05:00
44
draft: false
55
weight: 2
6-
description: "This video provides a demonstration of the WebLogic Server Kubernetes Operator."
6+
description: "Watch a video demonstration of the WebLogic Server Kubernetes Operator."
77
---
88

99
This video provides a demonstration of the WebLogic Server Kubernetes Operator.

docs-source/content/userguide/introduction/design.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ weight: 4
66
description: "The Oracle WebLogic Server Kubernetes Operator (the “operator”) is designed to fulfill a similar role to that which a human operator would fill in a traditional data center deployment. It contains a set of useful built-in knowledge about how to perform various life cycle operations on a domain correctly."
77
---
88

9-
The Oracle WebLogic Server Kubernetes Operator (the “operator”) is designed to fulfill a similar role to that which a human operator would fill in a traditional data center deployment. It contains a set of useful built-in knowledge about how to perform various life cycle operations on a domain correctly.a traditional data center deployment. It contains a set of useful built-in knowledge about how to perform various life cycle operations on a domain correctly.
9+
The Oracle WebLogic Server Kubernetes Operator (the “operator”) is designed to fulfill a similar role to that which a human operator would fill in a traditional data center deployment. It contains a set of useful built-in knowledge about how to perform various life cycle operations on a domain correctly.
1010

1111
Human operators are normally responsible for starting and stopping environments, initiating backups, performing scaling operations, performing manual tasks associated with disaster recovery and high availability needs and coordinating actions with other operators in other data centers. It is envisaged that the operator will have similar responsibilities in a Kubernetes environment.
1212

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ Please be aware of the following important considerations for WebLogic domains r
2525
assume that the domain home is `/shared/domains/DOMAIN_UID`.
2626
{{% notice warning %}}
2727
Oracle strongly recommends storing an image containing a WebLogic domain home
28-
as private in the registry (e.g. Oracle Cloud Infrastructure Registry, Docker Hub, etc.).
29-
A Docker image that contains a WebLogic Domain has sensitive information including
30-
keys and credentials that are used access external resources (e.g. datasource password).
28+
as private in the registry (for example, Oracle Cloud Infrastructure Registry, Docker Hub, and such).
29+
A Docker image that contains a WebLogic domain has sensitive information including
30+
keys and credentials that are used access external resources (for example, data source password).
3131
For more information, see
3232
[domain home in image protection]({{<relref "/security/domain-security/image-protection.md#weblogic-domain-in-docker-image-protection">}})
3333
in the ***Security*** section.

docs-source/content/userguide/managing-domains/domain-in-image/base-images/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ are provided that demonstrate how to create the image using:
129129
* [WebLogic Deploy Tooling](https://github.com/oracle/weblogic-deploy-tooling)
130130
to define the domain.
131131

132-
In these samples you will see a reference to a "base" or `FROM` image. You should use an image
132+
In these samples, you will see a reference to a "base" or `FROM` image. You should use an image
133133
with the mandatory patches installed as this base image. This image could be either
134134
the standard `store/oracle/weblogic:12.2.1.3` pre-patched image or an image you created using the instructions above.
135135

docs-source/content/userguide/managing-domains/domain-lifecycle/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ weight = 8
55
pre = "<b> </b>"
66
+++
77

8-
Learn how you can start, stop, restart, and scale the domain's servers.
8+
Learn how to start, stop, restart, and scale the domain's servers.
99

1010
{{% children style="h4" description="true" %}}

0 commit comments

Comments
 (0)