Skip to content

Commit 5c79b59

Browse files
authored
Merge pull request #229 from oracle/RMnamechanges
change capitalization scheme
2 parents 3e8185c + 0afc2b5 commit 5c79b59

File tree

1 file changed

+31
-31
lines changed

1 file changed

+31
-31
lines changed

site/name-changes.md

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Oracle WebLogic Server Kubernetes Operator Name Changes
1+
# Oracle WebLogic Server Kubernetes Operator name changes
22

33
The initial version of the WebLogic Server Kubernetes Operator did not use consistent conventions for many customer visible names.
44

@@ -14,41 +14,41 @@ We're not providing an upgrade tool or backward compatibility with the previous
1414

1515
This document lists the customer visible naming changes. Also, the WebLogic Server Kubernetes Operator documentation has been updated.
1616

17-
## Customer Visible Files
17+
## Customer visible files
1818

19-
### Files for Creating and Deleting Operators and Domains
19+
### Files for creating and deleting operators and domains
2020

21-
The following files are used to create the operator and to create and delete domains.
21+
The following files are used to create the operator, and to create and delete domains.
2222

23-
| Previous File Name | New File Name |
23+
| Previous file name | New file name |
2424
| --- | --- |
2525
| `kubernetes/create-domain-job.sh` | `kubernetes/create-weblogic-domain.sh` |
2626
| `kubernetes/create-domain-job-inputs.yaml` | `kubernetes/create-weblogic-domain-inputs.yaml` |
2727
| `kubernetes/create-operator-inputs.yaml` | `kubernetes/create-weblogic-operator-inputs.yaml` |
2828
| `kubernetes/create-weblogic-operator.sh` | same |
2929
| `kubernetes/delete-domain.sh` | `kubernetes/delete-weblogic-operator-resources.sh` |
3030

31-
### Generated YAML Files for Operators and Domains
31+
### Generated YAML files for operators and domains
3232

3333
The create scripts generate a number of YAML files that are used to configure the corresponding Kubernetes artifacts for the operator and the domains.
3434
Typically, customers do not use these YAML files. However, customers can look at them. They can also change the operator and domain configuration by editing these files and reapplying them.
3535

36-
#### Directory for the Generated YAML Files
36+
#### Directory for the generated YAML files
3737

3838
Previously, these files were placed in the `kubernetes` directory (for example, `kubernetes/weblogic-operator.yaml`). Now, they are placed in per-operator and per-domain directories (because a Kubernetes cluster can have more than one operator and an operator can manage more than one domain).
3939

40-
The customer must create a directory that will parent the per-operator and per-domain directories, and use the `-o` option to pass the name of that directory to the create script, for example:
40+
The customer must create a directory that will parent the per-operator and per-domain directories, and use the `-o` option to pass the name of that directory to the create script, for example,
4141
`mkdir /scratch/my-user-projects
4242
create-weblogic-operator.sh -o /scratch/my-user-projects`.
4343
The pathname can be either a full path name or a relative path name. If it's a relative pathname, then it's relative to the directory of the shell invoking the create script.
4444

45-
The per-operator directory name is:
45+
The per-operator directory name is
4646
`<user project dir from -o>/weblogic-operators/<operator namespace from the input YAML file's namespace property>`.
4747

48-
Similarly, the per-domain directory name is:
48+
Similarly, the per-domain directory name is
4949
`<user project dir from -o>/weblogic-domains/<domain uid from the input YAML file's domainUid property>`.
5050

51-
#### What If I Mess Up Creating a Domain or Operator And Want To Do It Again?
51+
#### What if I mess up creating a domain or operator and want to do it again?
5252

5353
* Remove the resources that were created for the domain:
5454
* `kubernetes/delete-weblogic-domain-resources.sh yourDomainUID`
@@ -61,7 +61,7 @@ Similarly, the per-domain directory name is:
6161

6262
If you run the create script without cleaning up the previously generated directory, the create script will tell you about the offending files and then exit without creating anything.
6363

64-
#### Location of the Input YAML Files
64+
#### Location of the input YAML files
6565

6666
The create scripts support an `-i` option for specifying the location of the inputs file. Similar to the `-o` option, the path can be either a full path name or a relative path name. Relative path names are relative to the directory of the shell invoking the create script.
6767

@@ -72,19 +72,19 @@ Previously, `kubernetes/create-domain-job.sh` used `kubernetes/create-domain-job
7272
Also, we do not want the customer to have to change files in the operator's install directory. Because of this, the `-i` option MUST be specified when calling `kubernetes/create-weblogic-operator.sh`. The basic flow is:
7373

7474
* Pick a user projects directory, for example, `/scratch/my-user-projects`
75-
* `mkdir /scratch/my-user-projects`
75+
* `mkdir /scratch/my-user-projects`
7676
* Pick a unique ID for the domain, for example, `foo.com`
77-
* `cp kubernetes/create-weblogic-domain-inputs.yaml my-inputs.yaml`
78-
* Set the domainUid in `my-inputs.yaml` to `foo.com`
79-
* `kubernetes/create-weblogic-operator.sh -i my-inputs.yaml -o /scratch/my-user-projects`
77+
* `cp kubernetes/create-weblogic-domain-inputs.yaml my-inputs.yaml`
78+
* Set the `domainUid` in `my-inputs.yaml` to `foo.com`
79+
* `kubernetes/create-weblogic-operator.sh -i my-inputs.yaml -o /scratch/my-user-projects`
8080

8181
**Note:** `my-inputs.yaml` will be copied to `/scratch/my-user-projects/weblogic-domains/foo.com/create-weblogic-domain-inputs.yaml`
8282

83-
#### File Names of the Generated YAML Files
83+
#### File names of the generated YAML files
8484

8585
The names of several of the generated YAML files have changed.
8686

87-
| Previous File Name | New File Name |
87+
| Previous file name | New file name |
8888
| --- | --- |
8989
| `domain-custom-resource.yaml` | same |
9090
| `domain-job.yaml` | `create-weblogic-domain-job.yaml` |
@@ -95,7 +95,7 @@ The names of several of the generated YAML files have changed.
9595
| `traefik-rbac.yaml` | `weblogic-domain-traefik-security-${clusterName, lower case}.yaml` |
9696
| `weblogic-operator.yaml` | same |
9797

98-
## Input File Contents
98+
## Input file contents
9999
Some of the contents of the inputs files have changed:
100100
* Some properties have been renamed
101101
* Some properties that are no longer needed have been removed
@@ -104,27 +104,27 @@ Some of the contents of the inputs files have changed:
104104

105105
### create-weblogic-operator-inputs.yaml
106106

107-
#### Property Names
107+
#### Property names
108108

109-
| Previous Property Name | New Property Name |
109+
| Previous property name | New property name |
110110
| --- | --- |
111111
| `image` | `weblogicOperatorImage` |
112112
| `imagePullPolicy` | `weblogicOperatorImagePullPolicy` |
113113
| `imagePullSecretName` | `weblogicOperatorImagePullSecretName` |
114114

115-
#### Property Values
115+
#### Property values
116116

117-
| Previous Property Name | Property Name | Old Property Value | New Property Value |
117+
| Previous property name | Property name | Old property value | New property value |
118118
| --- | --- | --- | --- |
119119
| `externalRestOption` | `externalRestOption` | `none` | `NONE` |
120120
| `externalRestOption` | `externalRestOption` | `custom-cert` | `CUSTOM_CERT` |
121121
| `externalRestOption` | `externalRestOption` | `self-signed-cert` | `SELF_SIGNED_CERT` |
122122

123123
### create-weblogic-domain-inputs.yaml
124124

125-
#### Property Names
125+
#### Property names
126126

127-
| Previous Property Name | New Property Name |
127+
| Previous property name | New property name |
128128
| --- | --- |
129129
| `createDomainScript` | This property has been removed |
130130
| `domainUid` | `domainUID` |
@@ -141,27 +141,27 @@ Some of the contents of the inputs files have changed:
141141
| `persistenceVolumeName` | This property has been removed |
142142
| `secretName` | `weblogicCredentialsSecretName` |
143143

144-
#### Properties That Must be Customized
144+
#### Properties that must be customized
145145
The following input properties, which used to have default values, now must be uncommented and customized.
146146

147-
| Previous Property Name | New Property Name | Previous Default Value | Notes |
147+
| Previous property name | New property name | Previous Default Value | Notes |
148148
| --- | --- | --- | --- |
149149
| `domainUid` | `domainUID` | `domain1` | Because the domain UID is supposed to be unique across the Kubernetes cluster, the customer must choose one. |
150150
| `persistencePath` | `weblogicDomainStoragePath` | `/scratch/k8s_dir/persistentVolume001` | The customer must select a directory for the domain's storage. |
151151
| `nfsServer` | `weblogicDomainStorageNFSServer` | `nfsServer` | If `weblogicDomainStorageType` is NFS, then the customer must specify the name or IP of the NFS server. |
152152

153-
#### Property Values
153+
#### Property values
154154

155-
| Previous Property Name | New Property Name | Old Property Value | New Property Value |
155+
| Previous property name | New property name | Old property value | New property value |
156156
| --- | --- | --- | --- |
157157
| `loadBalancer` | `loadBalancer` | `none` | `NONE` |
158158
| `loadBalancer` | `loadBalancer` | `traefik` | `TRAEFIK` |
159159
| `persistenceType` | `weblogicDomainStorageType` | `hostPath` | `HOST_PATH` |
160160
| `persistenceType` | `weblogicDomainStorageType` | `nfs` | `NFS` |
161161

162-
## Kubernetes Artifact Names
162+
## Kubernetes artifact names
163163

164-
| Artifact Type | Previous Name | New Name |
164+
| Artifact type | Previous name | New name |
165165
| --- | --- | --- |
166166
| persistent volume | `${domainUid}-${persistenceVolume}` or `${persistenceVolume}` | `${domainUID}-weblogic-domain-pv` |
167167
| persistent volume claim | `${domainUid}-${persistenceVolumeClaim}` or `${persistenceVolumeClaim}` | `${domainUID}-weblogic-domain-pvc` |

0 commit comments

Comments
 (0)