Skip to content

Quarkus based application to demonstrate how to enable GitOps principles with ArgoCD and Helm.

Notifications You must be signed in to change notification settings

sabre1041/gitops-helm-quarkus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gitops-helm-quarkus

This project uses a simple Quarkus based application to demonstrate how to enable GitOps principles with ArgoCD and Helm.

Quarkus Basics

Running the application in dev mode

You can run your application in dev mode that enables live coding using:

./mvnw compile quarkus:dev

Packaging and running the application

The application can be packaged using:

./mvnw package

It produces the gitops-helm-quarkus-1.0.0-SNAPSHOT-runner.jar file in the /target directory. Be aware that it’s not an über-jar as the dependencies are copied into the target/lib directory.

If you want to build an über-jar, execute the following command:

./mvnw package -Dquarkus.package.type=uber-jar

The application is now runnable using java -jar target/gitops-helm-quarkus-1.0.0-SNAPSHOT-runner.jar.

Creating a native executable

You can create a native executable using:

./mvnw package -Pnative

Or, if you don't have GraalVM installed, you can run the native executable build in a container using:

./mvnw package -Pnative -Dquarkus.native.container-build=true

You can then execute your native executable with: ./target/gitops-helm-quarkus-1.0.0-SNAPSHOT-runner

If you want to learn more about building native executables, please consult https://quarkus.io/guides/maven-tooling.html.

Application Configuration

The application can be used to illustrate operating in different environments of the Software Development Lifecycle (SDLC) which are driven by declaring environment variables.

By default, a blue background will be displayed when navigating to the application. To simulate the application being deployed to a production environment, set the following environment variable:

ENVIRONMENT=prod

With the above variable set, the background of the application will turn red.

In addition, an optional customized message can be displayed by setting the message environment variable as shown below:

MESSAGE="this is a customized message"

GitOps

To demonstrate how GitOps and in particular, ArgoCD can be used to deploy this application to a Kubernetes and OpenShift environment, refer to the gitops branch for more information.

About

Quarkus based application to demonstrate how to enable GitOps principles with ArgoCD and Helm.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages