File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
src/test/java/oracle/weblogic/kubernetes/actions Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 53
53
<wko .it.okd.cluster>${env.OKD} </wko .it.okd.cluster>
54
54
<wko .it.oracle.db.operator.release>${env.ORACLE_DB_OPERATOR_RELEASE} </wko .it.oracle.db.operator.release>
55
55
<wko .it.oraclelinux.test.version>${env.ORACLELINUX_TEST_VERSION} </wko .it.oraclelinux.test.version>
56
- <wko .it.wdt.version>${wdt.version} </wko .it.wdt.version>
57
56
<wko .it.wdt.download.url>${wdt.download.url} </wko .it.wdt.download.url>
58
57
<wko .it.wit.download.url>${wit.download.url} </wko .it.wit.download.url>
59
58
<wko .it.remoteconsole.download.url>${remoteconsole.download.url} </wko .it.remoteconsole.download.url>
215
214
<wko .it.okd.cluster>${wko.it.okd.cluster} </wko .it.okd.cluster>
216
215
<wko .it.oracle.db.operator.release>${wko.it.oracle.db.operator.release} </wko .it.oracle.db.operator.release>
217
216
<wko .it.oraclelinux.test.version>${wko.it.oraclelinux.test.version} </wko .it.oraclelinux.test.version>
218
- <wko .it.wdt.version>${wko.it.wdt.version} </wko .it.wdt.version>
219
217
<wko .it.wdt.download.url>${wko.it.wdt.download.url} </wko .it.wdt.download.url>
220
218
<wko .it.wit.download.url>${wko.it.wit.download.url} </wko .it.wit.download.url>
221
219
<wko .it.remoteconsole.download.url>${wko.it.remoteconsole.download.url} </wko .it.remoteconsole.download.url>
Original file line number Diff line number Diff line change @@ -50,8 +50,11 @@ public interface ActionConstants {
50
50
"https://github.com/oracle/weblogic-deploy-tooling/releases/latest" ;
51
51
public static final String WDT_DOWNLOAD_URL =
52
52
getNonEmptySystemProperty ("wko.it.wdt.download.url" , WDT_DOWNLOAD_URL_DEFAULT );
53
- public static final String WDT_VERSION =
54
- getNonEmptySystemProperty ("wko.it.wdt.version" , "latest" );
53
+ //WDT_VERSION is used as the sub-directory identifier when we need to find out
54
+ //from where we can locate weblogic-deploy.zip file. Right now when we install WDT
55
+ //we always put zip file under "latest" sub-directory no matter using "latest" branch or
56
+ //explicit version download URL or custom download URL.
57
+ public static final String WDT_VERSION = "latest" ;
55
58
public static final String WDT_DOWNLOAD_FILENAME_DEFAULT = "weblogic-deploy.zip" ;
56
59
57
60
public static final String IMAGE_TOOL = WORK_DIR + "/imagetool/bin/imagetool.sh" ;
You can’t perform that action at this time.
0 commit comments