Skip to content

Commit 7bad1b1

Browse files
authored
added WLS installer types for the slim and development installers (#191)
1 parent 89563d8 commit 7bad1b1

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

imagetool/src/main/java/com/oracle/weblogic/imagetool/installer/FmwInstallerType.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
* Supported Fusion Middleware installer sets.
1111
*/
1212
public enum FmwInstallerType {
13+
WLSSLIM(InstallerType.WLSSLIM),
14+
WLSDEV(InstallerType.WLSDEV),
1315
WLS(InstallerType.WLS), //WebLogic Server
1416
FMW(InstallerType.FMW), //WebLogic Server Infrastructure (JRF)
1517
OSB(InstallerType.FMW, InstallerType.OSB), //Service Bus

imagetool/src/main/java/com/oracle/weblogic/imagetool/installer/InstallerType.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
*/
1010
public enum InstallerType {
1111

12+
WLSDEV("wlsdev"),
13+
WLSSLIM("wlsslim"),
1214
WLS("wls"),
1315
FMW("fmw"),
1416
SOA("soa"),

site/create-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Usage: imagetool create [OPTIONS]
3131
| `--patches` | Comma separated list of patch IDs. Example: `12345678,87654321` | |
3232
| `--pull` | Always attempt to pull a newer version of base images during the build. | |
3333
| `--tag` | (Required) Tag for the final build image. Example: `store/oracle/weblogic:12.2.1.3.0` | |
34-
| `--type` | Installer type. Supported values: `WLS`, `FMW`, `IDM`, `OSB`, `OUD_WLS`, `SOA_OSB`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
34+
| `--type` | Installer type. Supported values: `WLS`, `WLSDEV`, `WLSSLIM`, `FMW`, `IDM`, `OSB`, `OUD_WLS`, `SOA_OSB`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
3535
| `--user` | Oracle support email ID. | |
3636
| `--version` | Installer version. | `12.2.1.3.0` |
3737
| `--wdtArchive` | Path to the WDT archive file used by the WDT model. | |

site/rebase-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Usage: imagetool rebase [OPTIONS]
3535
| `--sourceImage` | (Required) Source Image containing the WebLogic domain. | |
3636
| `--tag` | (Required) Tag for the final build image. Example: `store/oracle/weblogic:12.2.1.3.0` | |
3737
| `--targetImage` | Docker image to extend for the domain's new image. | |
38-
| `--type` | Installer type. Supported values: `WLS`, `FMW`, `IDM`, `OSB`, `OUD_WLS`, `SOA_OSB`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
38+
| `--type` | Installer type. Supported values: `WLS`, `WLSDEV`, `WLSSLIM`, `FMW`, `IDM`, `OSB`, `OUD_WLS`, `SOA_OSB`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
3939
| `--user` | Your Oracle support email ID. | |
4040
| `--version` | Installer version. | `12.2.1.3.0` |
4141

0 commit comments

Comments
 (0)