Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature #43

Open
wants to merge 58 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
472a1df
Jenkins File Created
devopscbabu Nov 11, 2022
661c43d
Updated Jenkinsfile
devopscbabu Nov 11, 2022
4cebba9
Updated
devopscbabu Nov 24, 2022
0c4dc8d
Updated
devopscbabu Nov 24, 2022
a72f56b
Updated with Package
devopscbabu Nov 24, 2022
16324ec
Create file1.txt
devopscbabu Dec 28, 2022
3c950ad
Update file1.txt
devopscbabu Dec 28, 2022
32fb248
Update file1.txt
devopscbabu Dec 28, 2022
0dcde8d
Update file1.txt
devopscbabu Dec 28, 2022
8cde650
Update file1.txt
devopscbabu Dec 29, 2022
2bcdd9f
removed mojo plugin
devopscbabu Dec 29, 2022
0cc6679
updated
devopscbabu Dec 29, 2022
3ca9f3e
added maven war dependencies
devopscbabu Dec 29, 2022
6cb9d3c
updated
devopscbabu Dec 29, 2022
87a62b5
updated
devopscbabu Dec 29, 2022
37edc8c
Update pom.xml
devopscbabu Dec 29, 2022
1cb3cff
war plugin added
devopscbabu Dec 29, 2022
d68c8d0
Update pom.xml
devopscbabu Dec 29, 2022
fefe1c0
Update pom.xml
devopscbabu Dec 29, 2022
e0a5f6d
Update file1.txt
devopscbabu Jan 7, 2023
437bd05
updated Jenkinsfile
devopscbabu Jan 11, 2023
d6cc843
updated terraform tool
devopscbabu Jan 11, 2023
49c87bf
updated docker login details
devopscbabu Jan 11, 2023
e633f7e
updated Dockerhub repo
devopscbabu Jan 12, 2023
85ffe20
Created Dockerfile
devopscbabu Jan 12, 2023
438dc6e
created inventory
devopscbabu Jan 12, 2023
30f7ae6
created Ansible playbook for deploying
devopscbabu Jan 12, 2023
bb0ffb1
created provider.tf
devopscbabu Jan 12, 2023
14ab3d8
created Instance.tf
devopscbabu Jan 12, 2023
5e3ee43
updated ansible
devopscbabu Jan 12, 2023
29d1814
updated
devopscbabu Jan 12, 2023
24ca814
updated
devopscbabu Jan 16, 2023
a23566f
updated
devopscbabu Jan 16, 2023
71ba94d
updated env
devopscbabu Jan 16, 2023
9044c72
updated
devopscbabu Jan 16, 2023
f5757ae
updated
devopscbabu Jan 16, 2023
0cbc3c9
Update dev.inv
devopscbabu Jan 16, 2023
4ed32fb
Update Jenkinsfile
devopscbabu Jan 16, 2023
6c13024
updated
devopscbabu Jan 16, 2023
542404d
Update provider.tf
devopscbabu Jan 16, 2023
0bb79ed
created sonar properties file
devopscbabu Jan 20, 2023
39104ab
updated the properties
devopscbabu Jan 26, 2023
948f501
Update sonar-project.properties
devopscbabu Jan 26, 2023
16867f2
Update sonar-project.properties
devopscbabu Jan 26, 2023
aa7b8ed
updated sonar properties
devopscbabu Jan 26, 2023
3ff7cb1
Update sonar-project.properties
devopscbabu Jan 26, 2023
daba32c
Update sonar-project.properties
devopscbabu Jan 26, 2023
c6894b4
Update pom.xml
devopscbabu Jan 26, 2023
003918f
Update pom.xml
devopscbabu Jan 26, 2023
e353713
Update pom.xml
devopscbabu Jan 26, 2023
6e8f218
Update sonar-project.properties
devopscbabu Jan 26, 2023
f835ab8
Update sonar-project.properties
devopscbabu Jan 26, 2023
f56d989
Update sonar-project.properties
devopscbabu Jan 26, 2023
dbc9f17
Update pom.xml
devopscbabu Jan 26, 2023
829c974
Update pom.xml
devopscbabu Jan 26, 2023
bdc7c34
Update pom.xml
devopscbabu Jan 26, 2023
f4f20d7
Create babu
devopscbabu Jul 14, 2023
4a9ed65
Update file1.txt
devopscbabu Aug 13, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
FROM tomcat:8
COPY target/*.war /usr/local/tomcat/webapps/addressbook.war
54 changes: 54 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
pipeline {
agent any

tools {
maven 'M2_HOME'
terraform 'Terraform-1.3.7'
}
environment {
AWS_ACCESS_KEY_ID = '${Access_Key}'
AWS_SECRET_KEY = '${Secret_Key}'
}

stages {
stage('Checkout') {
steps {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://github.com/devopscbabu/DevOpsAddressBook.git']]])
}
}
stage('Compile') {
steps {
sh 'mvn clean package'
}
}
stage('Docker Build') {
steps {
sh 'docker build -t cbabu85/devopsaddressbook .'
}
}
stage('Docker Push') {
steps {
withCredentials([string(credentialsId: 'docker-hub', variable: 'dockerHubPwd')]) {
sh 'docker login -u cbabu85 -p ${dockerHubPwd}'
}
sh 'docker push cbabu85/devopsaddressbook'
}
}
stage('Terraform init') {
steps {
sh 'terraform init'
}
}
stage('Terraform Apply') {
steps {
sh 'terraform apply --auto-approve'
sleep 20
}
}
stage('Docker Deploy using Ansible') {
steps {
ansiblePlaybook credentialsId: 'terraform-docker', disableHostKeyChecking: true, installation: 'ansible', inventory: 'dev.inv', playbook: 'deploy-docker.yml'
}
}
}
}
1 change: 1 addition & 0 deletions babu
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Welcome to my Class
10 changes: 10 additions & 0 deletions create-instance.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
resource "aws_instance" "MyInstance" {
ami = "ami-0f69bc5520884278e"
instance_type = "t2.micro"
key_name = "Mypemfile"
security_groups = ["sg-0ffb58db1648fe3a1"]

tags = {
Name = "Terraform_Docker"
}
}
35 changes: 35 additions & 0 deletions deploy-docker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
---
- hosts: dev
become: True
tasks:
- name: install python pip
apt:
name: python-pip
state: present

- name: Install docker with python module
pip:
name: docker-py
state: present

- name: Install docker
apt:
name: docker
state: present

- name: start docker
service:
name: docker
state: started
enabled: yes

- name: docker run user
shell: usermod -a -G docker ubuntu

- name: Start the container
docker_container:
name: project-app
image: "cbabu85/addressbook"
state: started
published_ports:
- 0.0.0.0:8090:8090
2 changes: 2 additions & 0 deletions dev.inv
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[dev]
172.31.11.176 ansible_user=ubuntu
7 changes: 7 additions & 0 deletions file1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
hi
hfdjdk
Hello msater
fhdkcksdksnn
bfbfbhf
l;'kl;kl.l
tyjytj
54 changes: 35 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<failOnMissingWebXml>false</failOnMissingWebXml>
<vaadin.version>8.0.0.alpha2</vaadin.version>
<vaadin.plugin.version>${vaadin.version}</vaadin.plugin.version>

</properties>

<repositories>
Expand Down Expand Up @@ -55,7 +56,8 @@


<dependencies>
<dependency>

<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-server</artifactId>
<version>${vaadin.version}</version>
Expand All @@ -65,6 +67,7 @@
<artifactId>vaadin-compatibility-shared</artifactId>
<version>${vaadin.version}</version>
</dependency>

<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-compatibility-client-compiled</artifactId>
Expand Down Expand Up @@ -162,12 +165,17 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.2</version>
<version>3.8.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.3.1</version>
</plugin>
<plugin>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
Expand Down Expand Up @@ -195,7 +203,7 @@
</plugins>
<finalName>addressbook</finalName>
</build>


<reporting>
<plugins>
Expand All @@ -204,10 +212,10 @@
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.19.1</version>
</plugin>

</plugins>
</reporting>

<profiles>
<profiles>
<profile>
<id>development</id>
<activation>
Expand Down Expand Up @@ -251,6 +259,8 @@
<failurePriority>2</failurePriority>
</configuration>
</plugin>



<!-- FINDBUGS -->
<plugin>
Expand Down Expand Up @@ -330,15 +340,17 @@
<ignoreIdentifiers>true</ignoreIdentifiers>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.4.0</version>
<configuration>
<effort>Max</effort>
<xmlOutput>true</xmlOutput>
<effort>Max</effort>
<xmlOutput>true</xmlOutput>
</configuration>
</plugin>
</plugin>
-->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
Expand Down Expand Up @@ -417,17 +429,19 @@
</build>
<reporting>
<plugins>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura.version}</version>
<configuration>
<formats>
<formats>
<format>html</format>
<format>xml</format>
</formats>
</formats>
</configuration>
</plugin>
-->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
Expand All @@ -453,16 +467,18 @@
<configLocation>addressbook-build/checkstyle.xml</configLocation>
</configuration>
</plugin>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>2.4.0</version>
<configuration>
<configuration>
<effort>Max</effort>
<xmlOutput>true</xmlOutput>
</configuration>
</plugin>
<plugin>
</configuration>
</plugin>
-->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.7</version>
<configuration>
Expand Down
5 changes: 5 additions & 0 deletions provider.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
provider "aws" {
region = "ap-south-1"
access_key = "AKIARSATK$CBXE42KNO7Z"
secret_key = "SoJ+9fN+tnwqp$/RvKNHgYp1fguPj+PfdwmaRvnuN"
}
30 changes: 30 additions & 0 deletions sonar-project.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# must be unique in a given SonarQube instance
#sonar.projectKey=sonaranalysiskey
#sonar.projectKey=Sonarqubescan
sonar.projectKey=sonarscan
#sonar.projectKey=mavenjavaproject
#sonar.organization=devopscbabu
sonar.host.url=http://13.232.193.103:9000
sonar.login=ec5e3ffb98dce31af2b2a25c0399040a455ee0f3

# --- optional properties ---

# defaults to project key
#sonar.projectName=maven-sonarscanner
# defaults to 'not provided'
#sonar.projectVersion=1.0

# Path is relative to the sonar-project.properties file. Defaults to .
sonar.sources=.

# Encoding of the source code. Default is default system encoding
#sonar.sourceEncoding=UTF-8
#sonar.sources=src/main/java

# Language
sonar.language=java

# Comma-separated paths to directories containing the compiled bytecode files corresponding to your source files
sonar.java.binaries=.
#sonar.sources=.
#sonar.java.binaries=**/target/classes