forked from leaddevops/samplejavaapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfilek8s
More file actions
33 lines (33 loc) · 788 Bytes
/
Jenkinsfilek8s
File metadata and controls
33 lines (33 loc) · 788 Bytes
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
pipeline {
agent any
stages {
stage('checkout repo') {
steps {
git url: 'https://github.com/lerndevops/DevOpsClassCodes.git '
}
}
stage('build artifact') {
steps {
sh 'mvn clean package'
}
}
stage('build docker image') {
steps {
sh 'docker build -t lerndevops/addressbook .'
}
}
stage('push docker image') {
steps {
withCredentials([string(credentialsId: 'DOCKER_HUB_PWD', variable: 'DOCKER_HUB_PWD')]) {
sh "docker login -u lerndevops -p ${DOCKER_HUB_PWD}"
}
sh 'docker push lerndevops/addressbook'
}
}
stage('Deploy to K8s') {
steps {
sh 'kubectl apply -f addressbook-deploy-k8s.yml'
}
}
}
}