Skip to content

Commit 9adde58

Browse files
committed
fixing the path for operator cert files
1 parent 3be08ce commit 9adde58

File tree

1 file changed

+2
-2
lines changed
  • integration-tests/src/test/java/oracle/kubernetes/operator/utils

1 file changed

+2
-2
lines changed

integration-tests/src/test/java/oracle/kubernetes/operator/utils/TestUtils.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ public static String getExternalOperatorCertificate(String operatorNS, String us
271271
throws Exception {
272272

273273
File certFile =
274-
new File(userProjectsDir + "/weblogic-operators/" + operatorNS + "/../operator.cert.pem");
274+
new File(userProjectsDir + "/weblogic-operators/" + operatorNS + "/operator.cert.pem");
275275

276276
StringBuffer opCertCmd = new StringBuffer("grep externalOperatorCert ");
277277
opCertCmd
@@ -303,7 +303,7 @@ public static String getExternalOperatorCertificate(String operatorNS, String us
303303
public static String getExternalOperatorKey(String operatorNS, String userProjectsDir)
304304
throws Exception {
305305
File keyFile =
306-
new File(userProjectsDir + "/weblogic-operators/" + operatorNS + "/../operator.key.pem");
306+
new File(userProjectsDir + "/weblogic-operators/" + operatorNS + "/operator.key.pem");
307307

308308
StringBuffer opKeyCmd = new StringBuffer("grep externalOperatorKey ");
309309
opKeyCmd

0 commit comments

Comments
 (0)