Skip to content

Commit 8468cb4

Browse files
authored
Merge pull request #147 from oracle/startup-control-md
Add startupControl parameter to the table, and fix the ordering
2 parents aeebf7d + 3fb392c commit 8468cb4

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

site/creating-domain.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,24 +102,25 @@ 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 |
112+
| namespace | The Kubernetes namespace to create the domain in. | default |
108113
| persistencePath | Physical path of the persistent volume storage. | /scratch/k8s_dir/persistentVolume001 |
109114
| persistenceSize | Total storage allocated by the persistent volume. | 10Gi |
110115
| persistenceStorageClass | Name of the storage class to set for the persistent volume and persistent volume claim. | weblogic |
111116
| persistenceVolumeClaimName | Name of the Kubernetes persistent volume claim for this domain. | pv001-claim |
112117
| persistenceVolumeName | Name of the Kubernetes persistent volume for this domain. | pv001 |
113-
| 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 |
114118
| productionModeEnabled | Boolean indicating if production mode is enabled for the domain. | true |
115-
| secretsMountPath | Path for mounting secrets. This parameter should not be modified. | /var/run/secrets-domain1 |
119+
| 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
| secretName | Name of the Kubernetes secret for the Administration Server's username and password. | domain1-weblogic-credentials |
117-
| imagePullSecretName | Name of the Kubernetes secret for the Docker Store, used to pull the WebLogic Server image. | docker-store-secret |
121+
| secretsMountPath | Path for mounting secrets. This parameter should not be modified. | /var/run/secrets-domain1 |
122+
| startupControl | Determines which WebLogic servers will be started up. Legal values are 'NONE', 'ALL', 'ADMIN', 'SPECIFIED', or 'AUTO' | AUTO |
118123
| T3ChannelPort | Port for the T3Channel of the NetworkAccessPoint. | 7002 |
119-
| namespace | The Kubernetes namespace to create the domain in. | default |
120-
| loadBalancerAdminPort | The node port for the load balancer to accept admin requests. | 30315 |
121-
| loadBalancerWebPort | The node port for the load balancer to accept user traffic. | 30305 |
122-
| enableLoadBalancerAdminPort | Determines whether the load balancer administration port should be exposed outside the Kubernetes cluster. | false |
123124

124125
## Limitations of the create domain script
125126

0 commit comments

Comments
 (0)