Skip to content

Commit 5905a3e

Browse files
authored
remove option to install OHS product (#154)
1 parent f077728 commit 5905a3e

File tree

5 files changed

+2
-14
lines changed

5 files changed

+2
-14
lines changed

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

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ public class DefaultResponseFile implements ResponseFile {
2020
private static final String R_FMW = "Fusion Middleware Infrastructure";
2121
private static final String R_SOA = "SOA Suite";
2222
private static final String R_OSB = "Service Bus";
23-
private static final String R_OHS = "Standalone HTTP Server (Managed independently of WebLogic server)";
24-
private static final String R_OHS_WLS = "Collocated HTTP Server (Managed through WebLogic server)";
2523
private static final String R_IDM =
2624
"Standalone Oracle Identity and Access Manager(Managed independently of WebLogic server)";
2725
private static final String R_IDM_WLS =
@@ -58,13 +56,6 @@ private static String getInstallTypeResponse(InstallerType installerType, FmwIns
5856
case OSB:
5957
response = R_OSB;
6058
break;
61-
case OHS:
62-
if (FmwInstallerType.OHS == fmwInstallerType) {
63-
response = R_OHS;
64-
} else {
65-
response = R_OHS_WLS;
66-
}
67-
break;
6859
case IDM:
6960
if (FmwInstallerType.IDM == fmwInstallerType) {
7061
response = R_IDM;

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ public enum FmwInstallerType {
1818
IDM(InstallerType.FMW, InstallerType.IDM),
1919
IDM_WLS(InstallerType.IDM),
2020
OAM(InstallerType.FMW, InstallerType.OAM), //Identity and Access Manager
21-
OHS(InstallerType.OHS),
22-
OHS_WLS(InstallerType.FMW, InstallerType.OHS),
2321
OIG(InstallerType.FMW, InstallerType.SOA, InstallerType.OSB, InstallerType.IDM),
2422
OUD(InstallerType.OUD), //Oracle Unified Directory
2523
OUD_WLS(InstallerType.FMW, InstallerType.OUD), //Oracle Unified Directory

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ public enum InstallerType {
1313
FMW("fmw"),
1414
SOA("soa"),
1515
OSB("osb"),
16-
OHS("ohs"),
1716
IDM("idm"),
1817
OAM("oam"),
1918
OUD("oud"),

site/create-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Usage: imagetool create [OPTIONS]
2828
| `--passwordFile` | Path to a file containing just the Oracle Support password, see `--user`. | |
2929
| `--patches` | Comma separated list of patch IDs. Example: `12345678,87654321` | |
3030
| `--tag` | (Required) Tag for the final build image. Example: `store/oracle/weblogic:12.2.1.3.0` | |
31-
| `--type` | Installer type. Supported values: `WLS`, `FMW`, `IDM`, `OHS_WLS`, `OHS`, `OSB`, `OUD_WLS`, `SOA_OSB`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
31+
| `--type` | Installer type. Supported values: `WLS`, `FMW`, `IDM`, `OSB`, `OUD_WLS`, `SOA_OSB`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
3232
| `--user` | Oracle support email ID. | |
3333
| `--version` | Installer version. | `12.2.1.3.0` |
3434
| `--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
@@ -32,7 +32,7 @@ Usage: imagetool rebase [OPTIONS]
3232
| `--sourceImage` | (Required) Source Image containing the WebLogic domain. | |
3333
| `--tag` | (Required) Tag for the final build image. Example: `store/oracle/weblogic:12.2.1.3.0` | |
3434
| `--targetImage` | Docker image to extend for the domain's new image. | |
35-
| `--type` | Installer type. Supported values: `WLS`, `FMW`, `IDM`, `OHS_WLS`, `OHS`, `OSB`, `OUD_WLS`, `SOA_OSB`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
35+
| `--type` | Installer type. Supported values: `WLS`, `FMW`, `IDM`, `OSB`, `OUD_WLS`, `SOA_OSB`, `WCP`, `OAM`, `OIG`, `OUD`, `SOA`, `WCC`, `WCS`, `WCP` | `WLS` |
3636
| `--user` | Your Oracle support email ID. | |
3737
| `--version` | Installer version. | `12.2.1.3.0` |
3838

0 commit comments

Comments
 (0)