@@ -7,15 +7,12 @@ adminPort: 7001
7
7
# Name of the Admin Server
8
8
adminServerName : admin-server
9
9
10
- # Script used to create the domain.
11
- createDomainScript : /u01/weblogic/create-domain-script.sh
12
-
13
10
# Name of the WebLogic domain to create
14
11
domainName : base_domain
15
12
16
13
# Unique id identifying a domain.
17
14
# This id must be lowercase and unique across all domains in a Kubernetes cluster
18
- domainUid : domain1
15
+ domainUID : domain1
19
16
20
17
# Determines which WebLogic Servers the Operator will start up
21
18
# Legal values are "NONE", "ALL", "ADMIN", "SPECIFIED", or "AUTO"
@@ -25,29 +22,32 @@ startupControl: AUTO
25
22
clusterName : cluster-1
26
23
27
24
# Number of managed servers to generate for the domain
28
- managedServerCount : 2
25
+ configuredManagedServerCount : 2
29
26
30
27
# Number of managed servers to initially start for the domain
31
- managedServerStartCount : 2
28
+ initialManagedServerReplicas : 2
32
29
33
30
# Base string used to generate managed server names
34
31
managedServerNameBase : managed-server
35
32
36
33
# Port number for each managed server
37
34
managedServerPort : 8001
38
35
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
42
40
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
45
45
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
48
48
49
- # Total storage allocated by the persistent volume
50
- persistenceSize : 10Gi
49
+ # Total storage allocated to the domain's persistent storage.
50
+ weblogicDomainStorageSize : 10Gi
51
51
52
52
# Name of the storage class to set for the persistent volume and persistent volume claim
53
53
# The default value that will be used is the value of the domainUid input parameter
@@ -69,11 +69,11 @@ productionModeEnabled: true
69
69
70
70
# Name of the Kubernetes secret for the Admin Server's username and password
71
71
# The name must be lowercase
72
- secretName : domain1-weblogic-credentials
72
+ weblogicCredentialsSecretName : domain1-weblogic-credentials
73
73
74
74
# Name of the Kubernetes secret to access the Docker Store to pull the WebLogic Server Docker image
75
75
# The presence of the secret will be validated when this parameter is enabled.
76
- # imagePullSecretName :
76
+ # weblogicImagePullSecretName :
77
77
78
78
# Port for the T3Channel of the NetworkAccessPoint
79
79
t3ChannelPort : 30012
@@ -96,14 +96,14 @@ exposeAdminNodePort: false
96
96
# Name of the domain namespace
97
97
namespace : default
98
98
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
101
101
102
102
# Load balancer web port
103
103
loadBalancerWebPort : 30305
104
104
105
- # Load balancer admin port
106
- loadBalancerAdminPort : 30315
105
+ # Load balancer dashboard port
106
+ loadBalancerDashboardPort : 30315
107
107
108
108
# Java Option for Weblogic Server
109
109
javaOptions : -Dweblogic.StdoutDebugEnabled=false
0 commit comments