You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: site/creating-domain.md
+8-7Lines changed: 8 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -102,24 +102,25 @@ The following parameters must be provided in the input file:
102
102
| createDomainScript | Script used to create the domain. This parameter should not be modified. | /u01/weblogic/create-domain-script.sh |
103
103
| domainName | Name of the WebLogic domain to create. | base_domain |
104
104
| 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 |
105
109
| managedServerCount | Number of Managed Server instances to generate for the domain. | 2 |
106
110
| managedServerNameBase | Base string used to generate Managed Server names. | managed-server |
107
111
| managedServerPort | Port number for each Managed Server. | 8001 |
112
+
| namespace | The Kubernetes namespace to create the domain in. | default |
108
113
| persistencePath | Physical path of the persistent volume storage. | /scratch/k8s_dir/persistentVolume001 |
109
114
| persistenceSize | Total storage allocated by the persistent volume. | 10Gi |
110
115
| persistenceStorageClass | Name of the storage class to set for the persistent volume and persistent volume claim. | weblogic |
111
116
| persistenceVolumeClaimName | Name of the Kubernetes persistent volume claim for this domain. | pv001-claim |
112
117
| 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 |
114
118
| 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|
116
120
| 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 |
118
123
| 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 |
0 commit comments