forked from yuvipanda/kubessh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
39 lines (33 loc) · 1.21 KB
/
Jenkinsfile
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
/* pipeline 변수 설정 */
def app
node {
// gitlab으로부터 소스 다운하는 stage
stage('Checkout') {
checkout scm
}
// mvn 툴 선언하는 stage, 필자의 경우 maven 3.6.0을 사용중
stage('Ready'){
echo "Ready to build"
echo "${env.BUILD_NUMBER}"
echo "${env.GIT_COMMIT}"
}
//dockerfile기반 빌드하는 stage ,git소스 root에 dockerfile이 있어야한다
stage('Build image'){
app = docker.build("harbor.cu.ac.kr/swlabssh/swlabssh")
}
//docker image를 push하는 stage, 필자는 dockerhub에 이미지를 올렸으나 보통 private image repo를 별도 구축해서 사용하는것이 좋음
stage('Push image') {
def BUILD_NUMBER_1 = BUILD_NUMBER.toInteger() + 3
docker.withRegistry("https://harbor.cu.ac.kr", "harbor") {
app.push("latest")
app.push("${BUILD_NUMBER_1}")
}
}
//stage('Kubernetes deploy') {
// sh "kubectl delete -f /services/dcucode/oj-backend_only_con.yaml -n dcucode-test"
// sh "kubectl apply -f /services/dcucode/oj-backend_only_con.yaml -n dcucode-test"
//}
stage('Complete') {
sh "echo 'The end'"
}
}