You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: documentation/3.2/content/_index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ You can:
11
11
* Supply WebLogic domain configuration using:
12
12
*_Domain in PV_: Locates WebLogic domain homes in a Kubernetes PersistentVolume (PV). This PV can reside in an NFS file system or other Kubernetes volume types.
13
13
*_Domain in Image_: Includes a WebLogic domain home in a container image.
14
-
*_Model in Image_: Includes [WebLogic Server Deploy Tooling](https://github.com/oracle/weblogic-deploy-tooling) models and archives in a container image.
14
+
*_Model in Image_: Includes [WebLogic Server Deploy Tooling](https://oracle.github.io/weblogic-deploy-tooling/) models and archives in a container image.
15
15
* Configure deployment of WebLogic domains as a Kubernetes resource (using a Kubernetes custom resource definition).
16
16
* Override certain aspects of the WebLogic domain configuration; for example, use a different database password for different deployments.
17
17
* Start and stop servers and clusters in the domain based on declarative startup parameters and desired states.
Copy file name to clipboardExpand all lines: documentation/3.2/content/faq/newbie.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -36,7 +36,7 @@ When using the operator, each deployed domain is specified by a domain resource
36
36
37
37
Multiple deployments of the same domain are supported by specifying a unique `domain-uid` string for each deployed domain and specifying a different domain resource. The `domain-uid` is in turn used by the operator as the name-prefix and/or label for the domain's Kubernetes resources that the operator deploys for you. The WebLogic configuration of a domain's deployments optionally can by customized by specifying configuration overrides in the domain resource -- which, for example, is useful for overriding the configuration of a data source URL, user name, or password.
38
38
39
-
The operator does not specify how a WebLogic domain home configuration is created. You can use WLST, REST, or a very convenient new tool called [WebLogic Server Deploy Tooling](https://github.com/oracle/weblogic-deploy-tooling) (WDT). WDT allows you to compactly specify WebLogic configuration and deployments (including JMS, data sources, applications, authenticators, and such) using a YAML file and a ZIP file (which include the binaries). The operator [samples]({{< relref "/samples/simple/_index.md" >}}) show how to create domains using WLST and using WDT.
39
+
The operator does not specify how a WebLogic domain home configuration is created. You can use WLST, REST, or a very convenient new tool called [WebLogic Server Deploy Tooling](https://oracle.github.io/weblogic-deploy-tooling/) (WDT). WDT allows you to compactly specify WebLogic configuration and deployments (including JMS, data sources, applications, authenticators, and such) using a YAML file and a ZIP file (which include the binaries). The operator [samples]({{< relref "/samples/simple/_index.md" >}}) show how to create domains using WLST and using WDT.
40
40
41
41
42
42
**Q:** Is the Administration Server required? Node Manager?
Copy file name to clipboardExpand all lines: documentation/3.2/content/samples/simple/azure-kubernetes-service/model-in-image.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -202,7 +202,7 @@ The sample includes a predefined archive directory in `/tmp/mii-sample/archives/
202
202
The archive top directory, named `wlsdeploy`, contains a directory named `applications`, which includes an ‘exploded’ sample JSP web application in the directory, `myapp-v1`. Three useful aspects to remember about WDT archives are:
203
203
- A model image can contain multiple WDT archives.
204
204
- WDT archives can contain multiple applications, libraries, and other components.
205
-
- WDT archives have a [well defined directory structure](https://github.com/oracle/weblogic-deploy-tooling/blob/master/site/archive.md), which always has `wlsdeploy` as the top directory.
205
+
- WDT archives have a [well defined directory structure](https://oracle.github.io/weblogic-deploy-tooling/concepts/archive/), which always has `wlsdeploy` as the top directory.
206
206
207
207
The application displays important details about the WebLogic Server instance that it’s running on: namely its domain name, cluster name, and server name, as well as the names of any data sources that are targeted to the server.
Copy file name to clipboardExpand all lines: documentation/3.2/content/samples/simple/domains/model-in-image/_index.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -30,7 +30,7 @@ description: "Sample for supplying a WebLogic Deploy Tooling (WDT) model that th
30
30
31
31
This sample demonstrates deploying a Model in Image [domain home source type]({{< relref "/userguide/managing-domains/choosing-a-model/_index.md" >}}). Unlike Domain in 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. Instead, Model in Image uses a WebLogic Deploy Tooling (WDT) model to specify your WebLogic configuration.
32
32
33
-
WDT models are a convenient and simple alternative to WebLogic Scripting Tool (WLST) configuration scripts and templates. They compactly define a WebLogic domain using YAML files and support including application archives in a ZIP file. The WDT model format is described in the open source, [WebLogic Deploy Tooling](https://github.com/oracle/weblogic-deploy-tooling) GitHub project, and the required directory structure for a WDT archive is specifically discussed [here](https://github.com/oracle/weblogic-deploy-tooling/blob/master/site/archive.md).
33
+
WDT models are a convenient and simple alternative to WebLogic Scripting Tool (WLST) configuration scripts and templates. They compactly define a WebLogic domain using YAML files and support including application archives in a ZIP file. The WDT model format is described in the open source, [WebLogic Deploy Tooling](https://oracle.github.io/weblogic-deploy-tooling/) GitHub project, and the required directory structure for a WDT archive is specifically discussed [here](https://oracle.github.io/weblogic-deploy-tooling/concepts/archive/).
34
34
35
35
For more information on Model in Image, see the [Model in Image user guide]({{< relref "/userguide/managing-domains/model-in-image/_index.md" >}}). For a comparison of Model in Image to other domain home source types, see [Choose a domain home source type]({{< relref "/userguide/managing-domains/choosing-a-model/_index.md" >}}).
36
36
@@ -146,5 +146,5 @@ For more information, see the [Cannot pull image FAQ]({{<relref "/faq/cannot-pul
146
146
147
147
For references to the relevant user documentation, see:
148
148
-[Model in Image]({{< relref "/userguide/managing-domains/model-in-image/_index.md" >}}) user documentation
149
-
-[Oracle WebLogic Server Deploy Tooling](https://github.com/oracle/weblogic-deploy-tooling)
Copy file name to clipboardExpand all lines: documentation/3.2/content/samples/simple/domains/model-in-image/initial.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ The sample includes a predefined archive directory in `/tmp/mii-sample/archives/
55
55
The archive top directory, named `wlsdeploy`, contains a directory named `applications`, which includes an 'exploded' sample JSP web application in the directory, `myapp-v1`. Three useful aspects to remember about WDT archives are:
56
56
- A model image can contain multiple WDT archives.
57
57
- WDT archives can contain multiple applications, libraries, and other components.
58
-
- WDT archives have a [well defined directory structure](https://github.com/oracle/weblogic-deploy-tooling/blob/master/site/archive.md), which always has `wlsdeploy` as the top directory.
58
+
- WDT archives have a [well defined directory structure](https://oracle.github.io/weblogic-deploy-tooling/concepts/archive/), which always has `wlsdeploy` as the top directory.
59
59
60
60
{{%expand "If you are interested in the web application source, click here to see the JSP code." %}}
Copy file name to clipboardExpand all lines: documentation/3.2/content/samples/simple/domains/model-in-image/prerequisites.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,7 @@ weight: 1
44
44
{{< rawhtml >}}
45
45
<a name="resume"></a>
46
46
{{< /rawhtml >}}
47
+
47
48
1. Make sure an operator is set up to manage namespace `sample-domain1-ns`. Also, make sure a Traefik ingress controller is managing the same namespace and listening on port 30305.
48
49
49
50
For example, follow the same steps as the [Quick Start](https://oracle.github.io/weblogic-kubernetes-operator/quickstart/) guide up through the [Prepare for a domain]({{< relref "/quickstart/prepare.md" >}}) step.
@@ -141,7 +142,7 @@ weight: 1
141
142
If you prefer, you can create your own base image and then substitute this image name in the WebLogic Image Tool `--fromImage` parameter throughout this sample. For example, you may wish to start with a base image that has patches applied. See [Preparing a Base Image]({{< relref "/userguide/base-images/_index.md" >}}).
142
143
{{% /notice %}}
143
144
144
-
1. Download the latest [WebLogic Deploy Tooling](https://github.com/oracle/weblogic-deploy-tooling) (WDT) and [WebLogic Image Tool](https://github.com/oracle/weblogic-image-tool) (WIT) installer ZIP files to your `/tmp/mii-sample/model-images` directory. Both WDT and WIT are required to create your Model in Image container images.
145
+
1. Download the latest [WebLogic Deploy Tooling](https://github.com/oracle/weblogic-deploy-tooling/releases) (WDT) and [WebLogic Image Tool](https://github.com/oracle/weblogic-image-tool/releases) (WIT) installer ZIP files to your `/tmp/mii-sample/model-images` directory. Both WDT and WIT are required to create your Model in Image container images.
145
146
146
147
```shell
147
148
$ cd /tmp/mii-sample/model-images
@@ -180,7 +181,7 @@ weight: 1
180
181
has a version of WDT in its `--type wdt --version latest` location, then the
Copy file name to clipboardExpand all lines: documentation/3.2/content/samples/simple/tanzu-kubernetes-service/_index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -215,7 +215,7 @@ The sample includes a predefined archive directory in `/tmp/mii-sample/archives/
215
215
The archive top directory, named `wlsdeploy`, contains a directory named `applications`, which includes an ‘exploded’ sample JSP web application in the directory, `myapp-v1`. Three useful aspects to remember about WDT archives are:
216
216
- A model image can contain multiple WDT archives.
217
217
- WDT archives can contain multiple applications, libraries, and other components.
218
-
- WDT archives have a [well defined directory structure](https://github.com/oracle/weblogic-deploy-tooling/blob/master/site/archive.md), which always has `wlsdeploy` as the top directory.
218
+
- WDT archives have a [well defined directory structure](https://oracle.github.io/weblogic-deploy-tooling/concepts/archive/), which always has `wlsdeploy` as the top directory.
219
219
220
220
The application displays important details about the WebLogic Server instance that it’s running on: namely its domain name, cluster name, and server name, as well as the names of any data sources that are targeted to the server.
Copy file name to clipboardExpand all lines: documentation/3.2/content/userguide/base-images/_index.md
+14-14Lines changed: 14 additions & 14 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -92,14 +92,14 @@ Additional information about using this image is available in the Oracle Contain
92
92
93
93
The Oracle WebLogic Server Kubernetes Operator and WebLogic Server 12.2.1.3.0 image requires patch 29135930.
94
94
This patch has some prerequisite patches that will also need to be applied. The WebLogic Server 12.2.1.4.0 image does not require any patches. To create and customize the WebLogic Server image,
95
-
and apply the required patches, use the [WebLogic Image Tool](https://github.com/oracle/weblogic-image-tool).
95
+
and apply the required patches, use the [WebLogic Image Tool](https://oracle.github.io/weblogic-image-tool/).
96
96
97
-
To use the Image Tool, follow the [Setup](https://github.com/oracle/weblogic-image-tool/blob/master/README.md#setup) instructions
98
-
and [Quick Start](https://github.com/oracle/weblogic-image-tool/blob/master/site/quickstart.md) Guide.
97
+
To use the Image Tool, follow the [Setup](https://oracle.github.io/weblogic-image-tool/quickstart/setup/) instructions
98
+
and [Quick Start](https://oracle.github.io/weblogic-image-tool/quickstart/quickstart/) Guide.
99
99
100
100
To build the WebLogic Server image and apply the patches:
101
101
102
-
1. Add the Server JRE and the WebLogic Server installer to the [`cache` command](https://github.com/oracle/weblogic-image-tool/blob/master/site/cache.md).
102
+
1. Add the Server JRE and the WebLogic Server installer to the [`cache` command](https://oracle.github.io/weblogic-image-tool/userguide/tools/cache/).
103
103
104
104
```shell
105
105
$ imagetool cache addInstaller \
@@ -113,7 +113,7 @@ To build the WebLogic Server image and apply the patches:
2. Use the [Create Tool](https://github.com/oracle/weblogic-image-tool/blob/master/site/create-image.md)
116
+
2. Use the [Create Tool](https://oracle.github.io/weblogic-image-tool/userguide/tools/create-image/)
117
117
to build the image and apply the patches.
118
118
119
119
For the Create Tool to download the patches, you must supply your My Oracle Support credentials.
@@ -140,7 +140,7 @@ You can also create an image with the WebLogic domain inside the image.
140
140
are provided that demonstrate how to create the image using either:
141
141
142
142
* WLST to define the domain, or
143
-
* [WebLogic Deploy Tooling](https://github.com/oracle/weblogic-deploy-tooling) to define the domain.
143
+
* [WebLogic Deploy Tooling](https://oracle.github.io/weblogic-deploy-tooling/) to define the domain.
144
144
145
145
In these samples, you will see a reference to a "base" or `FROM` image. You should use an image
146
146
with the mandatory patches installed as this base image. This image could be either
@@ -157,14 +157,14 @@ including keys and credentials that are used to access external resources
157
157
158
158
#### Patch WebLogic Server images
159
159
160
-
Use the [WebLogic Image Tool](https://github.com/oracle/weblogic-image-tool) (WIT) to patch
160
+
Use the [WebLogic Image Tool](https://oracle.github.io/weblogic-image-tool/) (WIT) to patch
161
161
WebLogic Server images with quarterly Patch Set Updates (PSUs), which include security fixes, or with one-off patches.
162
162
163
-
Use either the WIT [`create`](https://github.com/oracle/weblogic-image-tool/blob/master/site/create-image.md) or
164
-
[`update`](https://github.com/oracle/weblogic-image-tool/blob/master/site/update-image.md) command, however,
163
+
Use either the WIT [`create`](https://oracle.github.io/weblogic-image-tool/userguide/tools/create-image/) or
164
+
[`update`](https://oracle.github.io/weblogic-image-tool/userguide/tools/update-image/) command, however,
165
165
patching using the `create`command results in a smaller WebLogic Server image size. Note that you will need to
166
166
download the WebLogic Server 12.2.1.4.0 installer and JDK installer prior to running the `create` command. For details, see
167
-
the WIT [Quick Start](https://github.com/oracle/weblogic-image-tool/blob/master/site/quickstart.md) guide.
167
+
the WIT [Quick Start](https://oracle.github.io/weblogic-image-tool/quickstart/quickstart/) guide.
168
168
169
169
Example: Create an image named `sample:wls` with the WebLogic Server 12.2.1.4.0 slim installer, JDK 8u291, a slim version of the Oracle Linux 7 container image,
170
170
and latest PSU and recommended CPU and SPU patches applied.
@@ -181,12 +181,12 @@ to update the running domain differs depending on the [domain home source type](
181
181
difference between the domain home source types is the location of the domain home:
182
182
183
183
* Domain in PV: The container image contains the JDK and WebLogic Server binaries. The domain home is located in a Persistent Volume (PV).
184
-
* Model in Image: The container image contains the JDK, WebLogic Server binaries, and a [WebLogic Deployment Tooling](https://github.com/oracle/weblogic-deploy-tooling) (WDT) installation, WDT model file, and application archive file.
184
+
* Model in Image: The container image contains the JDK, WebLogic Server binaries, and a [WebLogic Deployment Tooling](https://oracle.github.io/weblogic-deploy-tooling/) (WDT) installation, WDT model file, and application archive file.
185
185
* Domain in Image: The container image contains the JDK, WebLogic Server binaries, and domain home.
186
186
187
187
For Domain in PV, the operator can apply the update to the running domain without modifying the patched container image. For Model in Image (MII) and Domain in Image,
188
188
before the operator can apply the update, the patched container images must be modified to add the domain home or a
189
-
WDT model and archive. You use WebLogic Image Tool (WIT) [Rebase Image](https://github.com/oracle/weblogic-image-tool/blob/master/site/rebase-image.md)
189
+
WDT model and archive. You use WebLogic Image Tool (WIT) [Rebase Image](https://oracle.github.io/weblogic-image-tool/userguide/tools/rebase-image/)
190
190
to update the Oracle Home of the original image using the patched Oracle Home from a patched container image.
191
191
192
192
In all three domain home source types, you edit the [Domain Resource]({{< relref "/userguide/managing-domains/domain-resource#domain-resource-attribute-references">}})
@@ -202,7 +202,7 @@ of the WebLogic domain to update the Oracle Home of the servers.
202
202
For information on server restarts, see [Restarting]({{< relref "/userguide/managing-domains/domain-lifecycle/restarting.md">}}).
203
203
204
204
##### Model in Image
205
-
Use the WIT [`rebase`](https://github.com/oracle/weblogic-image-tool/blob/master/site/rebase-image.md) command
205
+
Use the WIT [`rebase`](https://oracle.github.io/weblogic-image-tool/userguide/tools/rebase-image/) command
206
206
to update the Oracle Home foran existing image with the model and archive filesin the image using the patched Oracle Home from a
207
207
patched container image. Then, the operator performs a [rolling update]({{< relref "/userguide/managing-domains/domain-lifecycle/restarting#overview">}})
208
208
of the domain, updating the Oracle Home of each server pod.
@@ -221,7 +221,7 @@ $ imagetool rebase --tag mydomain:v2 --sourceImage mydomain:v1 --targetImage ora
221
221
Then, edit the Domain Resource image reference with the new image name/tag (`mydomain:2`).
222
222
223
223
##### Domain in Image
224
-
Use the WIT [`rebase`](https://github.com/oracle/weblogic-image-tool/blob/master/site/rebase-image.md) command to update the Oracle Home
224
+
Use the WIT [`rebase`](https://oracle.github.io/weblogic-image-tool/userguide/tools/rebase-image/) command to update the Oracle Home
225
225
for an existing domain image using the patched Oracle Home from a patched container image. Then, the operator performs a
226
226
[rolling update]({{< relref "/userguide/managing-domains/domain-lifecycle/restarting#overview">}}) of the domain,
Copy file name to clipboardExpand all lines: documentation/3.2/content/userguide/cicd/tools.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ description: "Tools that are available to build CI/CD pipelines."
8
8
9
9
#### WebLogic Deploy Tooling (WDT)
10
10
11
-
You can use several of the [WDT tools](https://github.com/oracle/weblogic-deploy-tooling)
11
+
You can use several of the [WDT tools](https://oracle.github.io/weblogic-deploy-tooling/)
12
12
in a CI/CD pipeline. For example, the
13
13
`createDomain` tool creates a new domain based on a simple model, and
14
14
`updateDomain` (and `deployApps`) uses the same model concept to update
@@ -30,7 +30,7 @@ that you supply a domain home.
30
30
Other than the tools themselves, there are three components to the WDT tools:
31
31
32
32
-*The Domain Model* - Metadata model describing the desired domain.
33
-
The metadata domain model can be written in YAML or JSON and is documented [here](https://github.com/oracle/weblogic-deploy-tooling/blob/master/site/model.md).
33
+
The metadata domain model can be written in YAML or JSON and is documented [here](https://oracle.github.io/weblogic-deploy-tooling/concepts/model/).
34
34
-*The Archive ZIP* - Binaries to supplement the model.
35
35
All binaries needed to supplement the model must be specified in an archive
36
36
file, which is just a ZIP file with a specific directory structure. Optionally,
0 commit comments