@@ -7,15 +7,12 @@ adminPort: 7001
77# Name of the Admin Server
88adminServerName : admin-server
99
10- # Script used to create the domain.
11- createDomainScript : /u01/weblogic/create-domain-script.sh
12-
1310# Name of the WebLogic domain to create
1411domainName : base_domain
1512
1613# Unique id identifying a domain.
1714# This id must be lowercase and unique across all domains in a Kubernetes cluster
18- domainUid : domain1
15+ domainUID : domain1
1916
2017# Determines which WebLogic Servers the Operator will start up
2118# Legal values are "NONE", "ALL", "ADMIN", "SPECIFIED", or "AUTO"
@@ -25,29 +22,32 @@ startupControl: AUTO
2522clusterName : cluster-1
2623
2724# Number of managed servers to generate for the domain
28- managedServerCount : 2
25+ configuredManagedServerCount : 2
2926
3027# Number of managed servers to initially start for the domain
31- managedServerStartCount : 2
28+ initialManagedServerReplicas : 2
3229
3330# Base string used to generate managed server names
3431managedServerNameBase : managed-server
3532
3633# Port number for each managed server
3734managedServerPort : 8001
3835
39- # Persistent volume type, the value must be hostPath or nfs.
40- # If using nfs, nfsServer must be specified.
41- persistenceType : hostPath
36+ # Persistent volume type for the domain's storage.
37+ # The value must be 'HOST_PATH' or 'NFS'.
38+ # If using 'NFS', weblogicDomainStorageNFSServer must be specified.
39+ weblogicDomainStorageType : HOST_PATH
4240
43- # NFS server name or ip. Only used if persistenceType is nfs.
44- nfsServer : nfsServer
41+ # The server name or ip address of the NFS server to use
42+ # for the domain's storage.
43+ # Only used if persistenceType is nfs.
44+ weblogicDomainStorageNFSServer : nfsServer
4545
46- # Physical path of the persistent volume storage
47- persistencePath : /scratch/k8s_dir/persistentVolume001
46+ # Physical path of the domain's persistent storage.
47+ weblogicDomainStoragePath : /scratch/k8s_dir/persistentVolume001
4848
49- # Total storage allocated by the persistent volume
50- persistenceSize : 10Gi
49+ # Total storage allocated to the domain's persistent storage.
50+ weblogicDomainStorageSize : 10Gi
5151
5252# Name of the storage class to set for the persistent volume and persistent volume claim
5353# The default value that will be used is the value of the domainUid input parameter
@@ -69,11 +69,11 @@ productionModeEnabled: true
6969
7070# Name of the Kubernetes secret for the Admin Server's username and password
7171# The name must be lowercase
72- secretName : domain1-weblogic-credentials
72+ weblogicCredentialsSecretName : domain1-weblogic-credentials
7373
7474# Name of the Kubernetes secret to access the Docker Store to pull the WebLogic Server Docker image
7575# The presence of the secret will be validated when this parameter is enabled.
76- # imagePullSecretName :
76+ # weblogicImagePullSecretName :
7777
7878# Port for the T3Channel of the NetworkAccessPoint
7979t3ChannelPort : 30012
@@ -96,14 +96,14 @@ exposeAdminNodePort: false
9696# Name of the domain namespace
9797namespace : default
9898
99- # Load balancer to deploy. Supported values are: traefik, none
100- loadBalancer : traefik
99+ # Load balancer to deploy. Supported values are:TRAEFIK, NONE
100+ loadBalancer : TRAEFIK
101101
102102# Load balancer web port
103103loadBalancerWebPort : 30305
104104
105- # Load balancer admin port
106- loadBalancerAdminPort : 30315
105+ # Load balancer dashboard port
106+ loadBalancerDashboardPort : 30315
107107
108108# Java Option for Weblogic Server
109109javaOptions : -Dweblogic.StdoutDebugEnabled=false
0 commit comments