Skip to content

Commit b79e017

Browse files
committed
doc updates
1 parent 389214b commit b79e017

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ The fastest way to experience the operator is to follow the [Quick start guide](
2222

2323
```diff
2424
+ The current release of the operator is 2.0-rc2, a release candidate for our 2.0 release.
25-
+ This release candidate was published on Jan. 10, 2019.
25+
+ This release candidate was published on Jan. 17, 2019.
2626
+ We expect to publish the final 2.0 release later in January, 2019.
2727
+ We expect that there will be some minor changes to documentation and samples in the final 2.0 release.
2828
+ However, this release candidate is suitable for testing and early adopters.

kubernetes/samples/scripts/create-weblogic-domain-pv-pvc/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ The PV and PVC creation inputs can be customized by editing the `create-pv-pvc-i
5353
| `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 |
5454
| `namespace` | Kubernetes namespace to create the PVC. | `default` |
5555
| `baseName` | Base name of the PV and PVC. The generated PV and PVC will be `<baseName>-pv` and `<baseName>-pvc` respectively. | `weblogic-sample` |
56-
| `weblogicDomainStoragePath` | Physical path of the storage for the PV. | no default |
56+
| `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 |
5757
| `weblogicDomainStorageReclaimPolicy` | Kubernetes PVC policy for the persistent storage. The valid values are: `Retain`, `Delete`, and `Recycle`. | `Retain` |
5858
| `weblogicDomainStorageSize` | Total storage allocated for the PVC. | `10Gi` |
5959
| `weblogicDomainStorageType` | Type of storage. Legal values are `NFS` and `HOST_PATH`. If using `NFS`, `weblogicDomainStorageNFSServer` must be specified. | `HOST_PATH` |
60-
| `weblogicDomainStorageNFSServer`| Name of the IP address of the NFS server. This setting only applies if `weblogicDomainStorateType` is `NFS`. | no default |
60+
| `weblogicDomainStorageNFSServer`| Name or IP address of the NFS server. This setting only applies if `weblogicDomainStorateType` is `NFS`. | no default |
6161

6262
## Shared versus dedicated PVC
6363

kubernetes/samples/scripts/create-weblogic-domain-pv-pvc/create-pv-pvc-inputs.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,13 @@ weblogicDomainStorageType: HOST_PATH
2525
#weblogicDomainStorageNFSServer: nfsServer
2626

2727
# Physical path of the persistent storage.
28+
# When weblogicDomainStorageType is set to HOST_PATH, this value should be set the to path to the
29+
# domain storage on the Kubernetes host.
30+
# When weblogicDomainStorageType is set to NFS, then weblogicDomainStorageNFSServer should be set
31+
# to the IP address or name of the DNS server, and this value should be set to the exported path
32+
# on that server.
33+
# Note that the path where the domain is mounted in the WebLogic containers is not affected by this
34+
# setting, that is determined when you create your domain.
2835
# The following line must be uncomment and customized:
2936
#weblogicDomainStoragePath: /scratch/k8s_dir
3037

site/domains.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,10 @@ You can modify the WebLogic domain configuration for both the "domain in persist
111111

112112
Configuration overrides allow changing a configuration without modifying its original `config.xml` or system resource XML files, and also support parameterizing overrides so that you can inject values into them from Kubernetes secrets. For example, you can inject database user names, passwords, and URLs that are stored in a secret.
113113

114+
### About the Domain resource
115+
116+
More information about the Domain resource can be found [here](domain-resource.md).
117+
114118
### Managing lifecycle operations including shutting down and deleting domains
115119

116120
In Operator 2.0, you can perform lifecycle operations on WebLogic servers, clusters, or domains.

site/recent-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This document tracks recent changes to the operator, especially ones that introd
44

55
| Date | Version | Introduces backward incompatibilities | Change |
66
| --- | --- | --- | --- |
7-
| January 10, 2019 | v2.0-rc2 | yes |
7+
| January 17, 2019 | v2.0-rc2 | yes | Schema updates are completed, and various bug fixes.
88
| December 20, 2018 | v2.0-rc1 | yes | Operator is now installed via Helm charts, replacing the earlier scripts. The operator now supports the domain home on persistent volume or in Docker image use cases, which required a redesign of the domain schema. You can override the domain configuration using configuration override templates. Now load balancers and Ingresses can be independently configured. You can direct WebLogic logs to a persistent volume or to the pod's log. Added lifecycle support for servers and significantly enhanced configurability for generated pods. The final v2.0 release will be the initial release where the operator team intends to provide backward compatibility as part of future releases.
99
| March 20, 2018 | v1.1 | yes | Several files and input parameters have been renamed. This affects how operators and domains are created. It also changes generated Kubernetes artifacts, therefore customers must recreate their operators and domains.
1010
| April 4, 2018 | v1.0 | yes | Many Kubernetes artifact names and labels have changed. Also, the names of generated YAML files for creating a domain's PV and PVC have changed. Because of these changes, customers must recreate their operators and domains.

0 commit comments

Comments
 (0)