Skip to content

Commit

Permalink
Move fetching of versions from configs to system vars
Browse files Browse the repository at this point in the history
  • Loading branch information
wcgunter committed Feb 21, 2024
1 parent 1493b65 commit 774a85f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 39 deletions.
6 changes: 0 additions & 6 deletions ci/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,9 +123,6 @@ default_cws_auth_scheme=CAMUNDA
default_history_level=full
default_shutdown_port=38005
metrics_publishing_interval=10
camunda_version=${CAMUNDA_VER}
java_version=${JAVA_HOME_VERSION}
java_home=${JAVA_HOME}
EOF


Expand Down Expand Up @@ -184,9 +181,6 @@ aws_cloudwatch_endpoint=monitoring.us-west-1.amazonaws.com
default_history_level=full
default_shutdown_port=38005
metrics_publishing_interval=10
camunda_version=${CAMUNDA_VER}
java_version=${JAVA_HOME_VERSION}
java_home=${JAVA_HOME}
EOF


Expand Down
19 changes: 0 additions & 19 deletions cws-installer/src/main/java/jpl/cws/task/CwsInstaller.java
Original file line number Diff line number Diff line change
Expand Up @@ -236,11 +236,6 @@ public class CwsInstaller {
private static String aws_sqs_dispatcher_sqsUrl;
private static String aws_sqs_dispatcher_msgFetchLimit;

private static String camunda_version;

private static String java_version;
private static String java_home = System.getenv("JAVA_HOME");


private static Boolean reconfigure = false;

Expand All @@ -265,8 +260,6 @@ public static void main(String args[]) {
}

getVersion();
getCamundaVersion();
getJavaVersion();
getOsName();
getTotalPhysicalMemory();
checkCompiler();
Expand Down Expand Up @@ -386,14 +379,6 @@ private static void getVersion() {
cws_version = getenv("CWS_VER");
}

private static void getCamundaVersion() {
camunda_version = getenv("CAMUNDA_VER");
}

private static void getJavaVersion() {
java_version = getenv("JAVA_HOME_VERSION");
}

private static void getOsName() {
osName = getProperty("os.name");
}
Expand Down Expand Up @@ -3033,10 +3018,6 @@ private static void updateCwsUiProperties() throws IOException {
content = content.replace("__AWS_SQS_DISPATCHER_MSG_FETCH_LIMIT__", aws_sqs_dispatcher_msgFetchLimit);
}

content = content.replace("__CWS_CAMUNDA_VERSION__", camunda_version);
content = content.replace("__CWS_JAVA_VERSION__", java_version);
content = content.replace("__CWS_JAVA_HOME__", java_home);

writeToFile(filePath, content);
copy(
Paths.get(config_work_dir + SEP + "cws-ui" + SEP + "cws-ui.properties"),
Expand Down
13 changes: 3 additions & 10 deletions cws-service/src/main/java/jpl/cws/controller/MvcCore.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@ public class MvcCore {
@Value("${cws.history.days.to.live}") private String historyDaysToLive;
@Value("${cws.history.level}") private String historyLevel;

@Value("${cws.camunda.version}") private String camundaVersion;

@Value("${cws.java.home}") private String javaHome;
@Value("${cws.java.version}") private String javaVersion;

public MvcCore() {}

protected ModelAndView buildModel(String page, String message) {
Expand Down Expand Up @@ -188,11 +183,9 @@ protected ModelAndView buildConfigurationModel(String message) {
model.addObject("tomcatWebapps", tomcatWebapps);
model.addObject("historyDaysToLive", historyDaysToLive);
model.addObject("historyLevel", historyLevel);

model.addObject("camundaVersion", camundaVersion);

model.addObject("javaHome", javaHome);
model.addObject("javaVersion", javaVersion);
model.addObject("javaHome", System.getenv("JAVA_HOME"));
model.addObject("javaVersion", System.getenv("JAVA_HOME_VERSION"));
model.addObject("camundaVersion", System.getenv("CAMUNDA_VER"));

DiskUsage diskUsage = cwsConsoleService.getDiskUsage();

Expand Down
5 changes: 1 addition & 4 deletions utils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ function check_java_requirements () {

JAVA_HOME_VERSION=$("${JAVA_HOME}/bin/java" -version 2>&1 | awk -F '"' '/version/ {print $2}')
print " JAVA_HOME Java version : ${JAVA_HOME_VERSION}"
export JAVA_HOME_VERSION
export JAVA_HOME_VERSION="${JAVA_HOME_VERSION}"

JAVA_PATH_VERSION=$(java -version 2>&1 | awk -F '"' '/version/ {print $2}')
print " PATH Java version : ${JAVA_PATH_VERSION} $(which java)"
Expand Down Expand Up @@ -320,8 +320,5 @@ function auto_conf_data () {
cws_notification_emails=${NOTIFICATION_EMAILS}
cws_token_expiration_hours=240
user_provided_logstash=n
camunda_version=${CAMUNDA_VER}
java_version=${JAVA_HOME_VERSION}
java_home=${JAVA_HOME}
EOF
}

0 comments on commit 774a85f

Please sign in to comment.