@@ -14,7 +14,7 @@ createDomainScript: /u01/weblogic/create-domain-script.sh
14
14
domainName : base_domain
15
15
16
16
# Unique id identifying a domain.
17
- # This id must be unique across all domains in a Kubernetes cluster
17
+ # This id must be lowercase and unique across all domains in a Kubernetes cluster
18
18
domainUid : domain1
19
19
20
20
# Cluster name
@@ -40,34 +40,29 @@ persistenceSize: 10Gi
40
40
41
41
# Name of the storage class to set for the persistent volume and persistent volume claim
42
42
# The default value that will be used is the value of the domainUid input parameter
43
+ # The name of the storage class must be in lowercase
43
44
# persistenceStorageClass:
44
45
45
- # Name of the Kubernetes persistent volume claim for this domain
46
+ # Name of the Kubernetes persistent volume claim for this domain. Name must be lowercase.
46
47
# The persistent volume claim name will be prepended with '${domainUid}-' by create-domain-job.sh
47
48
# if it is not already
48
49
persistenceVolumeClaimName : pv001-claim
49
50
50
- # Name of the Kubernetes persistent volume for this domain
51
+ # Name of the Kubernetes persistent volume for this domain. Name must be lowercase.
51
52
# The persistent volume name will be prepended with '${domainUid}-' by create-domain-job.sh
52
53
# if it is not already
53
54
persistenceVolumeName : pv001
54
55
55
- # Boolean indiciating whether to erase/overwrite an existing data found in the persistent volume
56
- # WARNING: if you set this to true, then ALL data found in the persistent volume will be deleted!
57
- replaceExistingDomain : false
58
-
59
56
# Boolean indicating if production mode is enabled for the domain
60
57
productionModeEnabled : true
61
58
62
- # Path for mounting secrets
63
- secretsMountPath : /var/run/secrets-domain1
64
-
65
59
# Name of the Kubernetes secret for the Admin Server's username and password
60
+ # The name must be lowercase
66
61
secretName : domain1-weblogic-credentials
67
62
68
63
# Name of the Kubernetes secret to access the Docker Store to pull the WebLogic Server Docker image
69
64
# The presence of the secret will be validated when this parameter is enabled.
70
- # imagePullSecretName: docker-store-secret
65
+ # imagePullSecretName:
71
66
72
67
# Port for the T3Channel of the NetworkAccessPoint
73
68
t3ChannelPort : 30012
@@ -98,3 +93,6 @@ loadBalancerWebPort: 30305
98
93
99
94
# Load balancer admin port
100
95
loadBalancerAdminPort : 30315
96
+
97
+ # Java Option for Weblogic Server
98
+ javaOptions : -Dweblogic.StdoutDebugEnabled=false
0 commit comments