-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add workshop: Multi-Cloud Apps with GraalVM - Up and Running
parent b1031bf author Olya Gupalo <[email protected]> 1724918445 +0300 committer Olya Gupalo <[email protected]> 1725086369 +0300 parent b1031bf author Olya Gupalo <[email protected]> 1724918445 +0300 committer Olya Gupalo <[email protected]> 1725086348 +0300 parent b1031bf author Olya Gupalo <[email protected]> 1724918445 +0300 committer Olya Gupalo <[email protected]> 1725086251 +0300 parent b1031bf author Olya Gupalo <[email protected]> 1724918445 +0300 committer Olya Gupalo <[email protected]> 1725086130 +0300 Add workshop: Multi-Cloud Apps with GraalVM - Up and Running
- Loading branch information
Showing
537 changed files
with
119,487 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Github Actions Pipeline | ||
on: [push, pull_request] | ||
jobs: | ||
build: | ||
name: Run Jwebserver | ||
runs-on: ubuntu-20.04 # Docker changed its behavior on Ubuntu 22.04 | ||
timeout-minutes: 30 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up GraalVM | ||
uses: graalvm/setup-graalvm@v1 | ||
with: | ||
java-version: '23-ea' | ||
distribution: 'graalvm' | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Run Spring Boot Web Server | ||
run: | | ||
# Build JAR (Debian Slim) | ||
./build-jar.sh | ||
# | ||
# Build Jlink custom runtime (Distroless Java Base) | ||
./build-jlink.sh | ||
# | ||
# Build dynamic image (Distroless Java Base) | ||
./build-dynamic-image.sh | ||
# | ||
# Build dynamic image, optimized for size (Distroless Java Base) | ||
./build-dynamic-image-optimized.sh | ||
# | ||
# Setup musl toolchain | ||
./setup-musl.sh | ||
export PATH="$PWD/musl-toolchain/bin:$PATH" | ||
# | ||
# Build mostly static image (Distroless Base) | ||
./build-mostly-static-image.sh | ||
# | ||
# Build fully static image (Scratch) | ||
./build-static-image.sh | ||
# | ||
# Download upx | ||
./setup-upx.sh | ||
# | ||
# Build fully static compressed image (Scratch UPX) | ||
./build-static-upx-image.sh | ||
# | ||
# Compare file sizes | ||
ls -lh target/webserver* | ||
docker images webserver | ||
- name: Archive production artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: native-binaries-${{ matrix.os }} | ||
path: | | ||
target/webserver* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Dependencies | ||
upx | ||
x86_64-linux-musl-native/ | ||
zlib-1.2.13/ | ||
|
||
# Build results | ||
jlink-jre/ | ||
webserver.dynamic | ||
webserver.mostly-static | ||
webserver.static | ||
webserver.static-upx | ||
webserver-sbom | ||
webserver-compacted-gc | ||
cp.txt | ||
target/ | ||
|
||
# VS Code | ||
.vscode/ | ||
.DS_Store | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.5/apache-maven-3.8.5-bin.zip | ||
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.2.0/maven-wrapper-3.2.0.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM container-registry.oracle.com/graalvm/jdk:21 AS build | ||
COPY . /webserver | ||
WORKDIR /webserver | ||
RUN ./mvnw clean package | ||
|
||
FROM gcr.io/distroless/java21-debian12 | ||
COPY --from=build /webserver/target/webserver-0.0.1-SNAPSHOT.jar webserver-0.0.1-SNAPSHOT.jar | ||
EXPOSE 8080 | ||
ENTRYPOINT ["java", "-jar", "webserver-0.0.1-SNAPSHOT.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM gcr.io/distroless/base-debian12 | ||
COPY target/webserver.mostly-static / | ||
EXPOSE 8080 | ||
ENTRYPOINT ["/webserver.mostly-static"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM gcr.io/distroless/java-base-debian12 | ||
COPY target/webserver / | ||
EXPOSE 8080 | ||
ENTRYPOINT ["/webserver"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM gcr.io/distroless/java-base-debian12 | ||
COPY target/webserver.dynamic-optimized / | ||
EXPOSE 8080 | ||
ENTRYPOINT ["/webserver.dynamic-optimized"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM container-registry.oracle.com/graalvm/jdk:21 AS build | ||
COPY . /webserver | ||
WORKDIR /webserver | ||
RUN ./mvnw clean package | ||
RUN ./mvnw dependency:build-classpath -Dmdep.outputFile=cp.txt | ||
RUN jdeps --ignore-missing-deps -q --recursive --multi-release 21 --print-module-deps --class-path $(cat cp.txt) target/webserver-0.0.1-SNAPSHOT.jar | ||
RUN jlink \ | ||
--module-path ${JAVA_HOME}/jmods \ | ||
--add-modules java.base,java.compiler,java.desktop,java.instrument,java.management,java.naming,java.net.http,java.prefs,java.rmi,java.scripting,java.security.jgss,java.sql,jdk.jfr,jdk.unsupported,org.graalvm.nativeimage \ | ||
--verbose \ | ||
--strip-debug \ | ||
--compress zip-9 \ | ||
--no-header-files \ | ||
--no-man-pages \ | ||
--strip-java-debug-attributes \ | ||
--output jlink-jre | ||
|
||
FROM gcr.io/distroless/java-base-debian12 | ||
COPY --from=build /webserver/target/webserver-0.0.1-SNAPSHOT.jar webserver-0.0.1-SNAPSHOT.jar | ||
COPY --from=build /webserver/jlink-jre jlink-jre | ||
EXPOSE 8080 | ||
ENTRYPOINT ["jlink-jre/bin/java", "-jar", "webserver-0.0.1-SNAPSHOT.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM scratch | ||
WORKDIR /tmp | ||
COPY target/webserver.static / | ||
EXPOSE 8080 | ||
ENTRYPOINT ["/webserver.static"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM scratch | ||
WORKDIR /tmp | ||
COPY target/webserver.static-upx / | ||
EXPOSE 8080 | ||
ENTRYPOINT ["/webserver.static-upx"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
|
||
./build-jar.sh | ||
./build-jlink.sh | ||
./build-dynamic-image.sh | ||
./build-mostly-static-image.sh | ||
./build-static-image.sh | ||
./build-static-upx-image.sh | ||
|
||
echo "Generated Executables" | ||
ls -lh target/webserver* | ||
|
||
echo "Generated Docker Container Images" | ||
docker images webserver |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
# Compile with fully dynamically linked shared libraries; optimize for size | ||
./mvnw -Dmaven.test.skip=true -Pdynamic-size-optimized native:compile | ||
|
||
# Distroless Java Base-provides glibc and other libraries needed by the JDK | ||
docker build . -f Dockerfile.distroless-java-base.dynamic-optimized -t webserver:distroless-java-base.dynamic-optimized |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
# Compile with fully dynamically linked shared libraries | ||
./mvnw -Dmaven.test.skip=true native:compile | ||
|
||
# Distroless Java Base-provides glibc and other libraries needed by the JDK | ||
docker build . -f Dockerfile.distroless-java-base.dynamic -t webserver:distroless-java-base.dynamic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/bin/sh | ||
|
||
# Distroless Java Base-provides glibc and other libraries needed by the JDK | ||
docker build . -f Dockerfile.debian-slim.uber-jar -t webserver:debian-slim.jar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
|
||
rm -rf jlink-jre cp.txt | ||
|
||
# Distroless Java Base-provides glibc and other libraries needed by the JDK | ||
docker build . -f Dockerfile.distroless-java-base.jlink -t webserver:distroless-java-base.jlink |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
# Compile linking zlib and JDK shared libraries except the standard C library (libc); optimize for size | ||
./mvnw -Dmaven.test.skip=true -Pnative,mostly-static native:compile | ||
|
||
# Distroless Base (provides glibc) | ||
docker build . -f Dockerfile.distroless-base.mostly -t webserver:distroless-base.mostly-static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#!/bin/sh | ||
|
||
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) | ||
|
||
TOOLCHAIN_DIR=${SCRIPT_DIR}/musl-toolchain | ||
PATH=${TOOLCHAIN_DIR}/bin:${PATH} | ||
|
||
# Create a statically linked binary that can be used without any additional library dependencies; optimize for size | ||
./mvnw -Dmaven.test.skip=true -Pnative,fully-static native:compile | ||
|
||
# Scratch-nothing | ||
docker build . -f Dockerfile.scratch.static -t webserver:scratch.static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
|
||
rm -f target/webserver.static-upx | ||
|
||
# Compress with UPX | ||
./upx --lzma --best -o target/webserver.static-upx target/webserver.static | ||
|
||
# Scratch--fully static and compressed | ||
docker build . -f Dockerfile.scratch.static-upx -t webserver:scratch.static-upx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/sh | ||
set +e | ||
|
||
./mvnw clean | ||
rm -rf jlink-jre cp.txt | ||
docker images webserver -q | grep -v TAG | awk '{print($1)}' | xargs docker rmi |
Oops, something went wrong.