-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathJenkinsfile
104 lines (103 loc) · 3.07 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
def project = 'skilltree-kubernetes'
def imageTag = "gcr.io/${project}/sample:${env.BRANCH_NAME}.${env.BUILD_NUMBER}"
pipeline {
agent {
kubernetes {
label 'sample'
yaml """
apiVersion: v1
kind: Pod
metadata:
labels:
component: ci
spec:
# Use service account that can deploy to all namespaces
serviceAccountName: cd-jenkins
containers:
- name: node
image: node:8.11.4
command:
- cat
tty: true
- name: gcloud
image: gcr.io/cloud-builders/gcloud
command:
- cat
tty: true
- name: kubectl
image: gcr.io/cloud-builders/kubectl
command:
- cat
tty: true
"""
}
}
stages {
stage('Test') {
steps {
container('node') {
sh "npm install"
sh "npm test"
}
}
post {
always {
junit "reports/unittest.xml"
}
}
}
stage('Build and push image with Container Builder') {
steps {
container('gcloud') {
sh "gcloud builds submit -t ${imageTag} ."
}
}
}
stage('Deploy Canary') {
// Canary branch
when { branch 'canary' }
steps {
container('kubectl') {
// Change deployed image in canary to the one we just built
sh("kubectl get ns production || kubectl create ns production")
sh("sed -i.bak 's#gcr.io/${project}/sample:v1#${imageTag}#' ./kubernetes/canary/*.yml")
sh("kubectl --namespace=production apply -f kubernetes/service/")
sh("kubectl --namespace=production apply -f kubernetes/canary/")
}
}
}
stage('Deploy Production') {
// Production branch
when { branch 'master' }
steps {
container('kubectl') {
// Change deployed image in canary to the one we just built
sh("kubectl get ns production || kubectl create ns production")
sh("sed -i.bak 's#gcr.io/${project}/sample:v1#${imageTag}#' ./kubernetes/production/*.yml")
sh("kubectl --namespace=production apply -f kubernetes/service/")
sh("kubectl --namespace=production apply -f kubernetes/production/")
}
}
}
stage('Deploy Dev') {
// Developer Branches
when {
not { branch 'master' }
not { branch 'canary' }
}
steps {
container('kubectl') {
// Create namespace if it doesn't exist
sh("kubectl get ns ${env.BRANCH_NAME} || kubectl create ns ${env.BRANCH_NAME}")
// Don't use public load balancing for development branches
sh("sed -i.bak 's#LoadBalancer#ClusterIP#' ./kubernetes/service/sample-service.yml")
sh("sed -i.bak 's#gcr.io/${project}/sample:v1#${imageTag}#' ./kubernetes/dev/*.yml")
sh("kubectl --namespace=${env.BRANCH_NAME} apply -f kubernetes/service/")
sh("kubectl --namespace=${env.BRANCH_NAME} apply -f kubernetes/dev/")
echo 'To access your environment run `kubectl proxy`'
echo "Then access your service via http://localhost:8001/api/v1/proxy/namespaces/${env.BRANCH_NAME}/services/sample:3000/"
}
}
}
}
}