@@ -15,31 +15,47 @@ metadata:
1515spec :
1616 # The WebLogic Domain Home
1717 domainHome : %DOMAIN_HOME%
18+
1819 # If the domain home is in the image
1920 domainHomeInImage : %DOMAIN_HOME_IN_IMAGE%
21+
2022 # The WebLogic Server Docker image that the Operator uses to start the domain
2123 image : " %WEBLOGIC_IMAGE%"
24+
2225 # imagePullPolicy defaults to "Always" if image version is :latest
2326 imagePullPolicy : " %WEBLOGIC_IMAGE_PULL_POLICY%"
27+
2428 # Identify which Secret contains the credentials for pulling an image
2529 %WEBLOGIC_IMAGE_PULL_SECRET_PREFIX%imagePullSecrets:
2630 %WEBLOGIC_IMAGE_PULL_SECRET_PREFIX%- name: %WEBLOGIC_IMAGE_PULL_SECRET_NAME%
31+
2732 # Identify which Secret contains the WebLogic Admin credentials (note that there is an example of
2833 # how to create that Secret at the end of this file)
2934 webLogicCredentialsSecret :
3035 name : %WEBLOGIC_CREDENTIALS_SECRET_NAME%
36+
3137 # Whether to include the server out file into the pod's stdout, default is true
3238 includeServerOutInPodLog : %INCLUDE_SERVER_OUT_IN_POD_LOG%
39+
3340 # Whether to enable log home
3441 %LOG_HOME_ON_PV_PREFIX%logHomeEnabled: %LOG_HOME_ENABLED%
42+
3543 # The in-pod location for domain log, server logs, server out, and Node Manager log files
3644 %LOG_HOME_ON_PV_PREFIX%logHome: %LOG_HOME%
45+
46+ # Istio service mesh support is experimental.
47+ %ISTIO_PREFIX%experimental:
48+ %ISTIO_PREFIX% istio:
49+ %ISTIO_PREFIX% enabled: %ISTIO_ENABLED%
50+ %ISTIO_PREFIX% readinessPort: %ISTIO_READINESS_PORT%
51+
3752 # serverStartPolicy legal values are "NEVER", "IF_NEEDED", or "ADMIN_ONLY"
3853 # This determines which WebLogic Servers the Operator will start up when it discovers this Domain
3954 # - "NEVER" will not start any server in the domain
4055 # - "ADMIN_ONLY" will start up only the administration server (no managed servers will be started)
4156 # - "IF_NEEDED" will start all non-clustered servers, including the administration server and clustered servers up to the replica count
4257 serverStartPolicy : " %SERVER_START_POLICY%"
58+
4359 serverPod :
4460 # an (optional) list of environment variable to be set on the servers
4561 env :
5470 %LOG_HOME_ON_PV_PREFIX%volumeMounts:
5571 %LOG_HOME_ON_PV_PREFIX%- mountPath: %DOMAIN_ROOT_DIR%
5672 %LOG_HOME_ON_PV_PREFIX% name: weblogic-domain-storage-volume
73+
5774 # adminServer is used to configure the desired behavior for starting the administration server.
5875 adminServer :
5976 # serverStartState legal values are "RUNNING" or "ADMIN"
6784 %EXPOSE_ADMIN_PORT_PREFIX% nodePort: %ADMIN_NODE_PORT%
6885 # Uncomment to export the T3Channel as a service
6986 %EXPOSE_T3_CHANNEL_PREFIX% - channelName: T3Channel
87+
7088 # clusters is used to configure the desired behavior for starting member servers of a cluster.
7189 # If you use this entry, then the rules will be applied to ALL servers that are members of the named clusters.
7290 clusters :
7593 replicas : %INITIAL_MANAGED_SERVER_REPLICAS%
7694 # The number of managed servers to start for unlisted clusters
7795 # replicas: 1
78- #
79- experimental :
80- istio :
81- enabled : %ISTIO_ENABLED%
82- readinessPort : %ISTIO_READINESS_PORT%
96+
0 commit comments