devopsotrator / amazon-eks-jenkins-terraform

These samples focus on Continuous Integration, and contain installation and configuration of Jenkins on Amazon EC2 using Hashicorp Terraform (Open Source)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Continuous Intergration on Amazon EKS


Prerequisites

To implement the instructions in this post, you will need the following accounts:


Architecture

architecture-screenshot


Sample Application Build Status

Understanding the Spring Petclinic application with a few diagrams

Running petclinic locally

Petclinic is a Spring Boot application built using Maven. You can build a jar file and run it from the command line:

git clone https://github.com/aws-samples/amazon-eks-jenkins-terraform
cd amazon-eks-jenkins-terraform
./mvnw package
java -jar target/*.jar

You can then access petclinic here: http://localhost:8080/

petclinic-screenshot

Or you can run it from Maven directly using the Spring Boot Maven plugin. If you do this it will pick up changes that you make in the project immediately (changes to Java source files require a compile as well - most people use an IDE for this):

./mvnw spring-boot:run

About

These samples focus on Continuous Integration, and contain installation and configuration of Jenkins on Amazon EC2 using Hashicorp Terraform (Open Source)

License:MIT No Attribution


Languages

Language:Java 70.9%Language:HTML 13.2%Language:CSS 7.3%Language:HCL 5.8%Language:TSQL 1.6%Language:Shell 1.0%Language:Dockerfile 0.1%