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

Master #6

Open
wants to merge 9 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ To learn more about Kubernetes and other related topics check the following exam
* [Istio around everything else series](https://rinormaloku.com/series/istio-around-everything-else/)
* [Simple CI/CD for Kubernetes with Azure DevOps](https://www.orange-networks.com/blogs/224-azure-devops-ci-cd-pipeline-to-deploy-to-kubernetes)
* Envoy series - to be added!
#END
33 changes: 33 additions & 0 deletions coit-backend1/Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
pipeline {
agent any

stages {
stage('Checkout') {
steps {
// Pull code from version control repository
git 'https://github.com/KiruthikaES/coit-simple-microservice/coit-backend1.git'
}
}

stage('Build') {
steps {
// Build the application
sh 'mvn clean install'
}
}

stage('Create Artifacts') {
steps {
// Create artifacts (e.g., JAR file, WAR file)
sh 'mvn package'
}

post {
success {
// Archive the artifacts
archiveArtifacts artifacts: '**/target/*.jar', fingerprint: true
}
}
}
}
}
2 changes: 1 addition & 1 deletion coit-backend1/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>com.sa.web</groupId>
<artifactId>sentiment-analysis-web</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1</version>
<packaging>jar</packaging>

<name>sentiment-analysis-web</name>
Expand Down
3 changes: 3 additions & 0 deletions webhook-test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
webhook-test-auto triggering jenkins server-CI
testing - updated webhook url
updated