-
Notifications
You must be signed in to change notification settings - Fork 0
/
JenkinsfileKubernetes
41 lines (30 loc) · 1.1 KB
/
JenkinsfileKubernetes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
node{
stage('SCM Checkout'){
git credentialsId: 'GIT_CREDENTIALS', url: 'https://github.com/MithunTechnologiesDevOps/spring-boot-mongo-docker.git',branch: 'master'
}
stage(" Maven Clean Package"){
def mavenHome = tool name: "Maven-3.6.1", type: "maven"
def mavenCMD = "${mavenHome}/bin/mvn"
sh "${mavenCMD} clean package"
}
stage('Build Docker Image'){
sh 'docker build -t dockerhandson/spring-boot-mongo .'
}
stage('Push Docker Image'){
withCredentials([string(credentialsId: 'DOKCER_HUB_PASSWORD', variable: 'DOKCER_HUB_PASSWORD')]) {
sh "docker login -u dockerhandson -p ${DOKCER_HUB_PASSWORD}"
}
sh 'docker push dockerhandson/spring-boot-mongo'
}
stage("Deploy To Kuberates Cluster"){
kubernetesDeploy(
configs: 'springBootMongo.yml',
kubeconfigId: 'KUBERNATES_CONFIG',
enableConfigSubstitution: true
)
}
/**
stage("Deploy To Kuberates Cluster"){
sh 'kubectl apply -f springBootMongo.yml'
} **/
}