feat(cli): 适配使用uploader上传jar包

This commit is contained in:
2024-03-01 14:32:02 +08:00
parent 826f7bc780
commit 9a6eb1e0a4
26 changed files with 97 additions and 32 deletions

View File

@@ -13,6 +13,7 @@ public class RuntimeInfo {
private String logPath;
private String confPath;
private String dataPath;
private String downloadUrl;
private String kerberosKeytabPath;
private LokiInfo loki;
private String zkUrl;
@@ -69,6 +70,14 @@ public class RuntimeInfo {
this.dataPath = dataPath;
}
public String getDownloadUrl() {
return downloadUrl;
}
public void setDownloadUrl(String downloadUrl) {
this.downloadUrl = downloadUrl;
}
public String getKerberosKeytabPath() {
return kerberosKeytabPath;
}
@@ -134,6 +143,7 @@ public class RuntimeInfo {
", logPath='" + logPath + '\'' +
", confPath='" + confPath + '\'' +
", dataPath='" + dataPath + '\'' +
", downloadUrl='" + downloadUrl + '\'' +
", kerberosKeytabPath='" + kerberosKeytabPath + '\'' +
", loki=" + loki +
", zkUrl='" + zkUrl + '\'' +