master #1

Merged
m.lettere merged 8 commits from gCubeSystem/cloudcomputing-platform-portlets:master into master 2024-07-10 10:37:52 +02:00
5 changed files with 56 additions and 30 deletions

View File

@ -4,6 +4,6 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [v1.0.0] - 2023-05-21
## [v1.0.0] - 2023-06-25
First Release

View File

@ -1,35 +1,54 @@
# VERSION=1.0.0-snapshot
#!/bin/bash
# MVN_VERSION=$(mvn -q \
# -Dexec.executable=echo \
# -Dexec.args='${project.version}' \
# --non-recursive \
# exec:exec)
# echo "MVN_VERSION=${MVN_VERSION}"
set -e
# 10.1.30.156
DEST_HOST=lr62-dev
# DEST_HOST=lr62-prod-01
# DEST_HOST=lr62-prod-02
# Define server arrays for different environments
SERVERS_PRE=("lr62-pre-01" "lr62-pre-02")
SERVERS_PROD=("lr62-prod-01" "lr62-prod-02")
SERVERS_DEV=("lr62-dev")
# Set default deployment environment to 'dev', can override with 'pre' or 'prod'
ENVIRONMENT=${1:-dev}
# Select the appropriate server array based on the environment
case "$ENVIRONMENT" in
pre)
SERVERS=("${SERVERS_PRE[@]}")
;;
prod)
SERVERS=("${SERVERS_PROD[@]}")
;;
*)
SERVERS=("${SERVERS_DEV[@]}")
;;
esac
echo "Selected environment: $ENVIRONMENT"
echo "Deploying to servers: ${SERVERS[*]}"
# Retrieve Maven project name
MVN_NAME=$(mvn -q \
-Dexec.executable=echo \
-Dexec.args='${project.artifactId}' \
--non-recursive \
exec:exec)
-Dexec.executable=echo \
-Dexec.args='${project.artifactId}' \
--non-recursive \
exec:exec)
echo "MVN_NAME=${MVN_NAME}"
# Retrieve Maven final name of the build artifact
MVN_FINALNAME=$(mvn -q \
-Dexec.executable=echo \
-Dexec.args='${project.build.finalName}' \
--non-recursive \
exec:exec)
-Dexec.executable=echo \
-Dexec.args='${project.build.finalName}' \
--non-recursive \
exec:exec)
echo "MVN_FINALNAME=${MVN_FINALNAME}"
# Execute Maven clean and package
mvn clean package
scp target/$MVN_FINALNAME.war life@$DEST_HOST:/home/life/Portal-Bundle/deploy/$MVN_NAME.war
ssh $DEST_HOST "sudo journalctl -fl -u liferay"
# Deploy to each server in the selected list
for HOST in "${SERVERS[@]}"; do
scp target/$MVN_FINALNAME.war life@$HOST:/home/life/Portal-Bundle/deploy/$MVN_NAME.war
done
# Tail log from the last server in the list
ssh $HOST "sudo journalctl -fl -u liferay"

View File

@ -11,10 +11,10 @@
<relativePath />
</parent>
<groupId>org.gcube.portlets.user</groupId>
<artifactId>cloudcomputing-platform-portlet</artifactId>
<artifactId>cloudcomputing-platform-portlets</artifactId>
<version>1.0.0</version>
<packaging>war</packaging>
<name>cloudcomputing-platform-portlet Portlets</name>
<name>Cloudcomputing Platform Portlets</name>
<description>
gCube Cloud Computing Platform Portlets.

View File

@ -19,7 +19,7 @@
<mime-type>text/html</mime-type>
</supports>
<portlet-info>
<title>CloudComputerPlatform Boot</title>
<title>CloudComputingPlatform (CCP)</title>
<short-title>CCP Boot</short-title>
<keywords>cloudcomputing, boot, platform, ccn</keywords>
</portlet-info>
@ -39,7 +39,7 @@
<portlet>
<portlet-name>cloudcomputing-config-portlet</portlet-name>
<display-name>CloudComputerPlatform Configuration Portlet</display-name>
<display-name>CloudComputingPlatform Configuration Portlet</display-name>
<portlet-class>
org.gcube.portlets.user.cloudcomputing.CC_ConfigurationPortlet
</portlet-class>
@ -52,7 +52,7 @@
<mime-type>text/html</mime-type>
</supports>
<portlet-info>
<title>CloudComputerPlatform Configuration</title>
<title>CloudComputingPlatform Configuration</title>
<short-title>CCP Configuration</short-title>
<keywords>cloudcomputing, config, configuration, platform, ccn</keywords>
</portlet-info>

View File

@ -11,5 +11,12 @@
redirect-url="${redirect_url}"
url="${auth_url}"/>
<script src="${cdn_url}/boot/d4s-boot.js"></script>
<span>
Run your Methods/Algorithms on the Cloud
<!-- </span>
<span style="display: block; text-align: right;"> -->
<a href="https://dev.d4science.org/ccp" target="_blank">Learn more</a>
</span>
</d4s-boot-2>
</div>