Skip to content

Commit 6847696

Browse files
committed
Keep the order of parameter names and resolve conflicts
2 parents 6652c3d + 8468cb4 commit 6847696

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

site/creating-domain.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,26 +102,27 @@ The following parameters must be provided in the input file:
102102
| createDomainScript | Script used to create the domain. This parameter should not be modified. | /u01/weblogic/create-domain-script.sh |
103103
| domainName | Name of the WebLogic domain to create. | base_domain |
104104
| domainUid | Unique ID that will be used to identify this particular domain. This ID must be unique across all domains in a Kubernetes cluster. | domain1 |
105+
| enableLoadBalancerAdminPort | Determines whether the load balancer administration port should be exposed outside the Kubernetes cluster. | false |
106+
| imagePullSecretName | Name of the Kubernetes secret for the Docker Store, used to pull the WebLogic Server image. | docker-store-secret |
107+
| loadBalancerAdminPort | The node port for the load balancer to accept admin requests. | 30315 |
108+
| loadBalancerWebPort | The node port for the load balancer to accept user traffic. | 30305 |
105109
| managedServerCount | Number of Managed Server instances to generate for the domain. | 2 |
106110
| managedServerNameBase | Base string used to generate Managed Server names. | managed-server |
107111
| managedServerPort | Port number for each Managed Server. | 8001 |
108-
| persistenceType | Persistent volume type. The parameter value must be hostPath or nfs. If set to 'nfs', nfsServer must be specified | hostPath |
112+
| namespace | The Kubernetes namespace to create the domain in. | default |
109113
| nfsServer | NFS server name or ip. | nfsServer |
110114
| persistencePath | Physical path of the persistent volume storage. | /scratch/k8s_dir/persistentVolume001 |
111115
| persistenceSize | Total storage allocated by the persistent volume. | 10Gi |
112116
| persistenceStorageClass | Name of the storage class to set for the persistent volume and persistent volume claim. | weblogic |
117+
| persistenceType | Persistent volume type. The parameter value must be hostPath or nfs. If set to 'nfs', nfsServer must be specified | hostPath |
113118
| persistenceVolumeClaimName | Name of the Kubernetes persistent volume claim for this domain. | pv001-claim |
114119
| persistenceVolumeName | Name of the Kubernetes persistent volume for this domain. | pv001 |
115-
| replaceExistingDomain | If set to 'true' the script will remove any data it finds in the persistent volume before creating the new domain. Use with caution. | false |
116120
| productionModeEnabled | Boolean indicating if production mode is enabled for the domain. | true |
117-
| secretsMountPath | Path for mounting secrets. This parameter should not be modified. | /var/run/secrets-domain1 |
121+
| replaceExistingDomain | If set to 'true' the script will remove any data it finds in the persistent volume before creating the new domain. Use with caution. | false |
118122
| secretName | Name of the Kubernetes secret for the Administration Server's username and password. | domain1-weblogic-credentials |
119-
| imagePullSecretName | Name of the Kubernetes secret for the Docker Store, used to pull the WebLogic Server image. | docker-store-secret |
123+
| secretsMountPath | Path for mounting secrets. This parameter should not be modified. | /var/run/secrets-domain1 |
124+
| startupControl | Determines which WebLogic servers will be started up. Legal values are 'NONE', 'ALL', 'ADMIN', 'SPECIFIED', or 'AUTO' | AUTO |
120125
| T3ChannelPort | Port for the T3Channel of the NetworkAccessPoint. | 7002 |
121-
| namespace | The Kubernetes namespace to create the domain in. | default |
122-
| loadBalancerAdminPort | The node port for the load balancer to accept admin requests. | 30315 |
123-
| loadBalancerWebPort | The node port for the load balancer to accept user traffic. | 30305 |
124-
| enableLoadBalancerAdminPort | Determines whether the load balancer administration port should be exposed outside the Kubernetes cluster. | false |
125126

126127
## Limitations of the create domain script
127128

0 commit comments

Comments
 (0)