Backend deployment
This guide covers Spring Boot backend and PostgreSQL database deployment using the Rahti platform. Follow the instructions carefully and perform the steps one by one.
Register to CSC
Start by registering to CSC by following these instructions.
Configuring the Spring Boot project
Make sure that your Spring Boot project is in the repositoryâs root folder, like this â :
src/
pom.xml
...
That is, it is not inside a sub folder, like this â:
somesubfolder/
src/
pom.xml
...
Add PostgreSQL driver as dependency in your projectâs pom.xml
file. Copy and paste the below snippet, place it as a child element of <dependencies>
element:
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
Create a file named Dockerfile
(no file extension) in your repositoryâs root folder (same folder that has the pom.xml
file). Content of the Dockerfile
for a Spring Boot application should be the following:
FROM eclipse-temurin:17-jdk-focal as builder
WORKDIR /opt/app
COPY .mvn/ .mvn
COPY mvnw pom.xml ./
RUN chmod +x ./mvnw
RUN ./mvnw dependency:go-offline
COPY ./src ./src
RUN ./mvnw clean install -DskipTests
RUN find ./target -type f -name '*.jar' -exec cp {} /opt/app/app.jar \; -quit
FROM eclipse-temurin:17-jre-alpine
COPY --from=builder /opt/app/*.jar /opt/app/
EXPOSE 8080
ENTRYPOINT ["java", "-jar", "/opt/app/app.jar" ]
Create a new deployment profile for your application. You need to create a new file in the src/main/resources/
folder. Name the new file application-rahti.properties
. Content of the application-rahti.properties
should be the following:
spring.datasource.url=jdbc:postgresql://${POSTGRESQL_SERVICE_HOST}:${POSTGRESQL_SERVICE_PORT}/${DB_NAME}
spring.datasource.username=${DB_USER}
spring.datasource.password=${DB_PASSWORD}
spring.jpa.show-sql=true
spring.jpa.generate-ddl=true
spring.jpa.hibernate.ddl-auto=update
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect
spring.datasource.driver-class-name=org.postgresql.Driver
Commit the above changes and push them to your GitHub repository.
Creating a project in CSC
If you already have created a project in CSC, you are unable to create another one. In that case proceed to chapter âCreating a project in Rahtiâ.
Login to CSC at https://my.csc.fi/login using you Haka user account (Haaga-Helia credentials) or your CSC user account (username sent to your email). Navigate to âProjectsâ view and start creating a new project.
Fill in your projectâs information. Choose project name and description freely. Set the âCourse end dateâ to three months from now. In âProject resourcesâ you can set âPrimary science areaâ as ââEngineering and technologyâ and âSecondary science areaâ as âOther engineering and technologiesâ. Read and accept all terms of use and privacy notice. Choose âCreate projectâ to continue.
You have now created your CSC project. Within this project you can start adding CSCâs services. For your deployment you only need Rahti â Container Cloud. Click âAdd servicesâ and select âRahtiâ.
Check your project number in the âProject informationâ section. You will need it later!
Once you have added the Rahti service you might have to wait up to 60 mins for you to gain access after activation. So be patient!
You can add other teams members as the CSC project members by opening the project in the âProjectsâ view and clicking âAdd membersâ in the âMembersâ section.
Creating a project in Rahti
After you have gained access to Rahti service, you can login to Rahti at your CSC projectâs Projects view. Choose your (only) project and scroll down to âServicesâ. Clicking âLoginâ will take you to Rahti landing page.
Proceed the login process, you need to click Login buttons a few times in different pages. Use either Haka or CSC as your authentication method when prompted.
If youâll get an âCould not find userâ error after login, wait for a while (10 minutes or so) and try again.
Successfully logging in directs you to Rahti console. When starting the console for the first time take the siteâs tour showing important navigation options. After the tour you are ready to create your Rahti project.
Click the âProject: All projectsâ dropdown menu and choose âCreate Projectâ or click the text âCreate a Projectâ. If you donât have these options visible in your page, make sure you are in âDeveloperâ view (marked with yellow).
You can have more than one Rahti projects in one CSC Project.
Give your project a name and a display name. In the description write csc_project:<YOUR_CSC_PROJECT_NUMBER>
. You will find your CSC project number in your CSC Projectâs âProject informationâ view. Proceed by clicking Create.
Next you will import your code from a Git repository. The following instructions assume that you have set your GitHub repository Public. In Rahti dashboard make sure you are in âDeveloperâ view: go to â+Addâ and choose âImport from Gitâ.
Copy and paste your GitHub repositoryâs URL into the corresponding form field and choose âDockerfileâ as your âImport Strategyâ if it is not the suggested one. You can leave rest of the form fields to their default values. Move on to âCreateâ.
Successful creation will take you to your projectâs âTopologyâ view. Click the graphical representation of your deployment to open your deployment controls.
You have now deployed your application into Rahti. But it is not in working condition yet. The âCrash Loop BackOffâ error is due to the buildâs trials of connecting to a database that doesnât exist trying to use environment variables that havenât been declared. (You might have to wait a minute to get the error).
In Developer view, go to â+Addâ page and start creating a database for your project. Choose âPostgreSQLâ. Make sure you donât select the Ephemeral version! Click âInstantiate Templateâ to continue the process.
You can leave all the default values in the form where you create your database. Leaving PostgreSQL âConnection Usernameâ and âPasswordâ empty will make the system generate random credentials for you. This is fine within the scope of Haaga-Helia UAS course work.
If you want to specify PostgreSQL âConnection Usernameâ and âPasswordâ, donât use weak a password! Always use strong passwords even when practicing!
Successful creation of a database will show as a new âDeploymentConfigâ object in your âTopologyâ view.
You still need to configure the environmental variables before your applicationâs deployment is finished. In âAdministratorâ view navigate to âWorkloads > Deployments > NAME_OF_YOUR_DEPLOYMENT > Environmentâ.
Set your environment variables as shown below (name: value). Click the circled âAdd from ConfigMap or Secretâ to get more form fields. Make sure that you donât mistype variable names or values!
SPRING_PROFILES_ACTIVE
: set asrahti
DB_NAME
: click âAdd from ConfigMap or Secretâ and choose resource aspostgresql
and key asdatabase-name
DB_PASSWORD
: click âAdd from ConfigMap or Secretâ and choose resource aspostgresql
and key asdatabase-password
DB_USER
: click âAdd from ConfigMap or Secretâ and choose resource aspostgresql
and key asdatabase-user
Click âSaveâ at the bottom of the page to activate your changes.
Congratulations! You have now deployed your Spring application with a proper database to CSC/Rahti!
To get the URL for your app go back to âDeveloper view > Topologyâ. Click your applicationâs âOpen URLâ shortcut or navigate to deploymentâs quick controls (navigation pane on the right) and scroll down to âRoutesâ. It might take few minutes before you are able to access your deploymentâs URL in browser.
Triggering deployment
Deploying the application after changes in the GitHub repository requires a manual step. In the âTopologyâ view click the deployment (has the âDâ symbol before the name). Then, click âStart buildâ from the dialog.