Model in Image is an alternative to the operator’s Domain in Image and Domain on PV domain home source types. For a comparison, see Choose a domain home source type. Unlike Domain on PV and Domain in Image, Model in Image eliminates the need to pre-create your WebLogic domain home prior to deploying your Domain YAML file.
It enables:
This feature is supported for standard WLS domains. For JRF domains, use Domain on PV.
WDT models are a convenient and simple alternative to WebLogic Scripting Tool (WLST) configuration scripts. They compactly define a WebLogic domain using YAML files and support including application archives in a ZIP file. For a description of the model format and its integration with Model in Image, see Usage and Model files. The WDT model format is fully described in the open source, WebLogic Deploy Tooling GitHub project.
When you deploy a Model in Image domain resource YAML file:
The operator will run a Kubernetes Job called the ‘introspector job’ that:
SerializedSystemIni.dat
.primordial domain
contains the basic configuration including the encrypted salt key. The second part domain config
contains the rest of the configuration config/**/*.xml
. These files are compressed but do not contain any applications, libraries, key stores, and such, because they can be restored from the WDT archives.After the introspector job completes:
DOMAIN_UID-weblogic-domain-introspect-cm***
. These ConfigMaps contain the packaged domains from the introspector job and other information for starting the domain.After completion of the introspector job, the operator will start the domain:
Beginning with WebLogic Server version 14.1.2.0.0, when a domain is production
mode enabled, it is automatically secure mode
enabled, therefore, all communications with the domain are using SSL channels and non-secure listening ports are disabled. If there are no custom certificates configured for the SSL channels, then the server uses the demo SSL certificates.
The demo SSL certificates are now domain specific and generated when the domain is first created,
unlike previous releases, which were distributed with the WebLogic product installation. Oracle recommends using custom SSL
certificates in a production environment.
The certificates are created under the domain home security
folder.
-rw-r----- 1 oracle oracle 1275 Feb 15 15:55 democakey.der
-rw-r----- 1 oracle oracle 1070 Feb 15 15:55 democacert.der
-rw-r----- 1 oracle oracle 1478 Feb 15 15:55 DemoTrust.p12
-rw-r----- 1 oracle oracle 1267 Feb 15 15:55 demokey.der
-rw-r----- 1 oracle oracle 1099 Feb 15 15:55 democert.der
-rw-r----- 1 oracle oracle 1144 Feb 15 15:55 DemoCerts.props
-rw-r----- 1 oracle oracle 2948 Feb 15 15:55 DemoIdentity.p12
For Model in Image domains, whenever you change any security credentials including, but not limited to, the Administration Server credentials, RCU credentials, and such, the domain will be recreated and a new set of demo SSL certificates will be generated. The SSL certificates are valid for 6 months, then they expire.
The demo CA certificate expires in 5 years, however, whenever the domain is recreated, the entire set of certificates are regenerated so you must import the demo CA certificate again.
If you have any external client that needs to communicate with WebLogic Servers using SSL, then you need to import the current self-signing CA certificate, democacert.der
,
into your local trust store.
keytool -importcert -keystore <keystore path> -alias wlscacert -file $HOME/Downloads/democacer.der
If you are using the WebLogic Scripting Tool, before starting the WLST session, you can set the following system properties.
export WLST_PROPERTIES="-Dweblogic.security.TrustKeyStore=DemoTrust -Dweblogic.security.SSL.ignoreHostnameVerification=true"
Model updates can be applied at runtime by changing an image, secrets, a domain resource, or a WDT model ConfigMap after initial deployment.
Some updates may be applied to a running domain without requiring any WebLogic pod restarts (an online update), but others may require rolling the pods to propagate the update’s changes (an offline update), and still others may require shutting down the entire domain before applying the update (a full domain restart update). It is the administrator’s responsibility to make the necessary changes to a domain resource to initiate the correct type of update.
See Runtime updates.
To understand how Model in Image works with CI/CD, see CI/CD considerations.