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/1.11/content/userguide/tools/create-aux-image.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -7,10 +7,10 @@ description: "The createAuxImage command creates a new container image with WDT
7
7
---
8
8
9
9
10
-
The `createAuxImage` command helps build a container image from a given base OS image.
11
-
Auxiliary images are very small images providing the WDT install files with WDT models, archives, and variables
10
+
The `createAuxImage` command helps build a container image from a given base OS image.
11
+
Auxiliary images are very small images providing the WDT install files with WDT models, archives, and variables
12
12
for [WebLogic Kubernetes Operator - Auxiliary Images](https://oracle.github.io/weblogic-kubernetes-operator/userguide/managing-domains/model-in-image/auxiliary-images/).
13
-
These images are an alternative approach for including Model-in-Image model files, application archive files, WebLogic Deploying Tooling installation files, or other types of files,
13
+
These images are an alternative approach for including Model-in-Image model files, application archive files, WebLogic Deploying Tooling installation files, or other types of files,
14
14
in your WebLogic Server Kubernetes Operator environment.
15
15
16
16
There are a number of optional parameters for this feature. The required option for the command is marked.
|`--tag`| (Required) Tag for the final build image. Example: `store/oracle/mydomain:1`||
25
-
|`--additionalBuildCommands`| Path to a file with additional build commands. For more details, see [Additional information](#additional-information). |
26
-
|`--additionalBuildFiles`| Additional files that are required by your `additionalBuildCommands`. A comma separated list of files that should be copied to the build context. |
25
+
|`--additionalBuildCommands`| Path to a file with additional build commands. For more details, see [Additional information](#--additionalbuildcommands). |
26
+
|`--additionalBuildFiles`| Additional files that are required by your `additionalBuildCommands`. A comma separated list of files that should be copied to the build context. See [Additional information](#--additionalbuildfiles). |
27
27
|`--builder`, `-b`| Executable to process the Dockerfile. Use the full path of the executable if not on your path. |`docker`|
28
28
|`--buildNetwork`| Networking mode for the RUN instructions during the image build. See `--network` for Docker `build`. ||
29
29
|`--chown`|`userid:groupid` for JDK/Middleware installs and patches. |`oracle:oracle`|
|`--packageManager`| Override the default package manager for the base image's operating system. Supported values: `APK`, `APTGET`, `NONE`, `YUM`, `ZYPPER`||
35
35
|`--pull`| Always attempt to pull a newer version of base images during the build. ||
36
36
|`--skipcleanup`| Do not delete the build context folder, intermediate images, and failed build containers. For debugging purposes. ||
37
-
|`--target`| Select the target environment in which the created image will be used. Supported values: `Default` (Docker/Kubernetes), `OpenShift`|`Default`|
37
+
|`--target`| Select the target environment in which the created image will be used. Supported values: `Default` (Docker/Kubernetes), `OpenShift`. See [Additional information](#--target).|`Default`|
38
38
|`--wdtArchive`| A WDT archive ZIP file or comma-separated list of files. ||
39
39
|`--wdtHome`| The target folder in the image for the WDT install and models. |`/auxiliary`|
40
40
|`--wdtModel`| A WDT model file or a comma-separated list of files. ||
41
41
|`--wdtModelHome`| The target location in the image to copy WDT model, variable, and archive files. |`{wdtHome}/models`|
42
42
|`--wdtVariables`| A WDT variables file or comma-separated list of files. ||
43
-
|`--wdtVersion`| WDT version to be installed in the container image in {wdtHome}/weblogic-deploy. For more details, see [Additional information](#additional-information). |`latest`|
43
+
|`--wdtVersion`| WDT version to be installed in the container image in `{wdtHome}/weblogic-deploy`. For more details, see [Additional information](#--wdtversion). |`latest`|
44
44
45
45
### Additional information
46
46
@@ -93,7 +93,7 @@ Use the same value for `--target` when creating images with `create` and `create
93
93
#### `--wdtVersion`
94
94
95
95
As of version 1.11.0, you may opt to install WDT and the model files in separate images. By default, the cached `wdt_latest`
96
-
version of WDT is installed in the Auxiliary image with the selected models, archives, and variable files. If you use
96
+
version of WDT is installed in the Auxiliary image with the selected models, archives, and variable files. If you use
97
97
`--wdtVersion=none` (case insensitive), the auxiliary image will be created without installing WDT.
|`--tag`| (Required) Tag for the final build image. Example: `store/oracle/weblogic:12.2.1.3.0`||
22
-
|`--additionalBuildCommands`| Path to a file with additional build commands. For more details, see [Additional information](#additional-information). |
23
-
|`--additionalBuildFiles`| Additional files that are required by your `additionalBuildCommands`. A comma separated list of files that should be copied to the build context. |
22
+
|`--additionalBuildCommands`| Path to a file with additional build commands. For more details, see [Additional information](#--additionalbuildcommands). |
23
+
|`--additionalBuildFiles`| Additional files that are required by your `additionalBuildCommands`. A comma separated list of files that should be copied to the build context. See [Additional information](#--additionalbuildfiles). |
24
24
|`--builder`, `-b`| Executable to process the Dockerfile. Use the full path of the executable if not on your path. |`docker`|
25
25
|`--buildNetwork`| Networking mode for the RUN instructions during the image build. See `--network` for Docker `build`. ||
26
26
|`--chown`|`userid:groupid` for JDK/Middleware installs and patches. |`oracle:oracle`|
|`--inventoryPointerInstallLoc`| Target location for the inventory pointer file. ||
35
35
|`--jdkVersion`| Version of the server JDK to install. |`8u202`|
36
36
|`--latestPSU`| Find and apply the latest PatchSet Update. ||
37
-
|`--recommendedPatches`| Find and apply the latest PatchSet Update and recommended patches. This takes precedence over --latestPSU ||
38
37
|`--opatchBugNumber`| The patch number for OPatch (patching OPatch). |`28186730`|
39
38
|`--packageManager`| Override the default package manager for the base image's operating system. Supported values: `APK`, `APTGET`, `NONE`, `OS_DEFAULT`, `YUM`, `ZYPPER`|`OS_DEFAULT`|
40
39
|`--password`| Request password for the Oracle Support `--user` on STDIN, see `--user`. ||
41
40
|`--passwordEnv`| Environment variable containing the Oracle Support password, see `--user`. ||
42
41
|`--passwordFile`| Path to a file containing just the Oracle Support password, see `--user`. ||
43
42
|`--patches`| Comma separated list of patch IDs. Example: `12345678,87654321`||
44
43
|`--pull`| Always attempt to pull a newer version of base images during the build. ||
44
+
|`--recommendedPatches`| Find and apply the latest PatchSet Update and recommended patches. This takes precedence over `--latestPSU`. ||
45
45
|`--resourceTemplates`| One or more files containing placeholders that need to be resolved by the Image Tool. See [Resource Template Files](#resource-template-files). ||
46
46
|`--skipcleanup`| Do not delete the build context folder, intermediate images, and failed build containers. For debugging purposes. ||
47
47
|`--strictPatchOrdering`| Instruct OPatch to apply patches one at a time (uses `apply` instead of `napply`). ||
48
-
|`--target`| Select the target environment in which the created image will be used. Supported values: `Default` (Docker/Kubernetes), `OpenShift`|`Default`|
48
+
|`--target`| Select the target environment in which the created image will be used. Supported values: `Default` (Docker/Kubernetes), `OpenShift`. See [Additional information](#--target).|`Default`|
|`--user`| Oracle support email ID. When supplying `user`, you must supply the password either as an environment variable using `--passwordEnv`, or as a file using `--passwordFile`, or interactively, on the command line with `--password`. ||
51
51
|`--version`| Installer version. |`12.2.1.3.0`|
52
52
|`--wdtArchive`| A WDT archive ZIP file or comma-separated list of files. ||
53
53
|`--wdtDomainHome`| Path to the `-domain_home` for WDT. |`/u01/domains/base_domain`|
Copy file name to clipboardExpand all lines: documentation/1.11/content/userguide/tools/rebase-image.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -19,8 +19,8 @@ Usage: imagetool rebase [OPTIONS]
19
19
| --- | --- | --- |
20
20
|`--sourceImage`| (Required) Source Image containing the WebLogic domain. ||
21
21
|`--tag`| (Required) Tag for the final build image. Example: `store/oracle/weblogic:12.2.1.3.0`||
22
-
|`--additionalBuildCommands`| Path to a file with additional build commands. For more details, see [Additional information](#additional-information). |
23
-
|`--additionalBuildFiles`| Additional files that are required by your `additionalBuildCommands`. A comma separated list of files that should be copied to the build context. |
22
+
|`--additionalBuildCommands`| Path to a file with additional build commands. For more details, see [Additional information](#--additionalbuildcommands). |
23
+
|`--additionalBuildFiles`| Additional files that are required by your `additionalBuildCommands`. A comma separated list of files that should be copied to the build context. See [Additional information](#--additionalbuildfiles). |
24
24
|`--builder`, `-b`| Executable to process the Dockerfile. Use the full path of the executable if not on your path. |`docker`|
25
25
|`--buildNetwork`| Networking mode for the RUN instructions during the image build. See `--network` for Docker `build`. ||
26
26
|`--chown`|`userid:groupid` for JDK/Middleware installs and patches. |`oracle:oracle`|
@@ -33,20 +33,20 @@ Usage: imagetool rebase [OPTIONS]
33
33
|`--inventoryPointerInstallLoc`| Target location for the inventory pointer file. ||
34
34
|`--jdkVersion`| Version of the server JDK to install. |`8u202`|
35
35
|`--latestPSU`| Find and apply the latest PatchSet Update. ||
36
-
|`--recommendedPatches`| Find and apply the latest PatchSet Update and recommended patches. This takes precedence over --latestPSU ||
37
36
|`--opatchBugNumber`| The patch number for OPatch (patching OPatch). |`28186730`|
38
37
|`--packageManager`| Override the default package manager for the base image's operating system. Supported values: `APK`, `APTGET`, `NONE`, `OS_DEFAULT`, `YUM`, `ZYPPER`|`OS_DEFAULT`|
39
38
|`--password`| Request password for the Oracle Support `--user` on STDIN, see `--user`. ||
40
39
|`--passwordEnv`| Environment variable containing the Oracle Support password, see `--user`. ||
41
40
|`--passwordFile`| Path to a file containing just the Oracle Support password, see `--user`. ||
42
41
|`--patches`| Comma separated list of patch IDs. Example: `12345678,87654321`||
43
42
|`--pull`| Always attempt to pull a newer version of base images during the build. ||
43
+
|`--recommendedPatches`| Find and apply the latest PatchSet Update and recommended patches. This takes precedence over `--latestPSU`. ||
44
44
|`--skipcleanup`| Do not delete the build context folder, intermediate images, and failed build containers. For debugging purposes. ||
45
45
|`--strictPatchOrdering`| Instruct OPatch to apply patches one at a time (uses `apply` instead of `napply`). ||
46
-
|`--target`| Select the target environment in which the created image will be used. Supported values: `Default` (Docker/Kubernetes), `OpenShift`|`Default`|
46
+
|`--target`| Select the target environment in which the created image will be used. Supported values: `Default` (Docker/Kubernetes), `OpenShift`. See [Additional information](#--target).|`Default`|
47
47
|`--targetImage`| Container image to extend for the domain's new image. ||
|`--user`| Your Oracle support email ID. When supplying `user`, you must supply the password either as an environment variable using `--passwordEnv`, or as a file using `--passwordFile`, or interactively, on the command line with `--password`.||
Copy file name to clipboardExpand all lines: documentation/1.11/content/userguide/tools/update-image.md
+16-15
Original file line number
Diff line number
Diff line change
@@ -14,45 +14,40 @@ command to update the existing container images created with the Image Tool. Fo
14
14
* Deploy a new application to an existing domain
15
15
* Modify the domain configuration (add a data source, change a port number, and such)
16
16
17
-
**NOTE**: The WebLogic Image Tool does not support a Stack Patch Bundle (SPB; see Doc ID [2764636.1](https://support.oracle.com/rs?type=doc&id=2764636.1)), because an SPB is _not_ a patch but a mechanism for applying all PSU and recommended CPU and SPU patches to a WebLogic Server installation, similar to invoking the Image Tool `update` command with the `--recommendedPatches` option.
17
+
**NOTE**: The WebLogic Image Tool does not support a Stack Patch Bundle (SPB; see Doc ID [2764636.1](https://support.oracle.com/rs?type=doc&id=2764636.1)), because an SPB is _not_ a patch but a mechanism for applying all PSU and recommended CPU and SPU patches to a WebLogic Server installation.
18
18
19
19
The required options for the `update` command are marked.
20
20
21
-
**NOTE**: You can provide the password in one of the three ways:
22
-
23
-
* Plain text
24
-
* Environment variable
25
-
* File containing the password
26
-
27
21
```
28
22
Usage: imagetool update [OPTIONS]
29
23
Update WebLogic Docker image with selected patches
30
24
31
25
```
32
26
| Parameter | Definition | Default |
33
27
| --- | --- | --- |
34
-
|`--fromImage`| (Required) Container image to be updated. The `fromImage` option serves as a starting point for the new image to be created. |`weblogic:12.2.1.3.0`|
28
+
|`--fromImage`| (Required) Container image to be updated. The `fromImage` option serves as a starting point for the new image to be created. ||
35
29
|`--tag`| (Required) Tag for the final build image. Example: `store/oracle/weblogic:12.2.1.3.0`||
36
-
|`--additionalBuildCommands`| Path to a file with additional build commands. For more details, see [Additional information](#additional-information). |
37
-
|`--additionalBuildFiles`| Additional files that are required by your `additionalBuildCommands`. A comma separated list of files that should be copied to the build context. |
30
+
|`--additionalBuildCommands`| Path to a file with additional build commands. For more details, see [Additional information](#--additionalbuildcommands). |
31
+
|`--additionalBuildFiles`| Additional files that are required by your `additionalBuildCommands`. A comma separated list of files that should be copied to the build context. See [Additional information](#--additionalbuildfiles). |
38
32
|`--builder`, `-b`| Executable to process the Dockerfile. Use the full path of the executable if not on your path. |`docker`|
39
33
|`--buildNetwork`| Networking mode for the RUN instructions during the image build. See `--network` for Docker `build`. ||
40
34
|`--chown`|`userid:groupid` for JDK/Middleware installs and patches. |`oracle:oracle`|
41
35
|`--dryRun`| Skip Docker build execution and print the Dockerfile to stdout. ||
42
36
|`--httpProxyUrl`| Proxy for the HTTP protocol. Example: `http://myproxy:80` or `http:user:passwd@myproxy:8080`||
43
37
|`--httpsProxyUrl`| Proxy for the HTTPS protocol. Example: `https://myproxy:80` or `https:user:passwd@myproxy:8080`||
44
-
|`--latestPSU`| (DEPRECATED) Find and apply the latest PatchSet Update, see [Additional information](#additional-information). ||
38
+
|`--latestPSU`| (DEPRECATED) Find and apply the latest PatchSet Update, see [Additional information](#--latestpsu). ||
45
39
|`--opatchBugNumber`| The patch number for OPatch (patching OPatch). |`28186730`|
46
40
|`--password`| Request password for the Oracle Support `--user` on STDIN, see `--user`. ||
47
41
|`--passwordEnv`| Environment variable containing the Oracle Support password, see `--user`. ||
48
42
|`--passwordFile`| Path to a file containing just the Oracle Support password, see `--user`. ||
49
43
|`--patches`| Comma separated list of patch IDs. Example: `12345678,87654321`||
50
44
|`--pull`| Always attempt to pull a newer version of base images during the build. ||
45
+
|`--recommendedPatches`| (DEPRECATED) Find and apply the latest PatchSet Update and recommended patches. This takes precedence over `--latestPSU`. See [Additional information](#--recommendedpatches). ||
51
46
|`--resourceTemplates`| One or more files containing placeholders that need to be resolved by the Image Tool. See [Resource Template Files](#resource-template-files). ||
52
47
|`--skipcleanup`| Do not delete the build context folder, intermediate images, and failed build containers. For debugging purposes. ||
53
48
|`--strictPatchOrdering`| Instruct OPatch to apply patches one at a time (uses `apply` instead of `napply`). ||
54
-
|`--target`| Select the target environment in which the created image will be used. Supported values: `Default` (Docker/Kubernetes), `OpenShift`|`Default`|
55
-
|`--user`| Oracle support email ID. ||
49
+
|`--target`| Select the target environment in which the created image will be used. Supported values: `Default` (Docker/Kubernetes), `OpenShift`. See [Additional information](#--target).|`Default`|
50
+
|`--user`| Oracle support email ID. When supplying `user`, you must supply the password either as an environment variable using `--passwordEnv`, or as a file using `--passwordFile`, or interactively, on the command line with `--password`. ||
56
51
|`--wdtArchive`| A WDT archive ZIP file or comma-separated list of files. ||
57
52
|`--wdtDomainHome`| Path to the `-domain_home` for WDT. |`/u01/domains/base_domain`|
0 commit comments