-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
90 lines (90 loc) · 2.06 KB
/
Copy pathJenkinsfile
File metadata and controls
90 lines (90 loc) · 2.06 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
pipeline {
agent any
environment {
ACR_PASS = credentials('ACR_PASS')
}
stages {
stage('dev-build') {
steps {
sh '''
echo "building dev docker compose infrastructure"
docker-compose build
'''
}
}
stage('dev-clean') {
steps {
sh '''
echo "clean up"
docker system prune -f
docker stop $(docker ps -a -q) && docker rm $(docker ps -a -q)
docker images
docker ps -a
'''
}
}
stage('dev-validation') {
steps {
sh '''
echo "running rspec tests"
docker-compose run web ./scripts/start-dev.sh rspec -f d
'''
}
}
stage('prod-build') {
steps {
sh '''
echo "building production docker images"
docker build -t azurechyld.azurecr.io/web:$BUILD_NUMBER -f learn/Dockerfile-prod learn/
docker build -t azurechyld.azurecr.io/logger:$BUILD_NUMBER -f logger/Dockerfile-prod logger/
'''
}
}
stage('prod-clean') {
steps {
sh '''
echo "clean up"
docker system prune -f
docker images
'''
}
}
stage('prod-login') {
steps {
sh '''
echo "login to azure container registry"
docker login --username=azurechyld --password=$ACR_PASS azurechyld.azurecr.io
'''
}
}
stage('prod-push') {
steps {
sh '''
echo "push production docker images to azure container registry"
docker push azurechyld.azurecr.io/web:$BUILD_NUMBER
docker push azurechyld.azurecr.io/logger:$BUILD_NUMBER
'''
}
}
stage('prod-k8s') {
steps {
sh '''
echo "deploy kubernetes to azure container service"
envsubst < jobs.yaml | kubectl apply --force -f -
envsubst < deployment.yaml | kubectl apply -f -
'''
}
}
}
post {
always {
echo "always"
}
success {
echo "success"
}
failure {
echo "failure"
}
}
}