forked from releaseworks/hellonode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
54 lines (39 loc) · 1.38 KB
/
Jenkinsfile
File metadata and controls
54 lines (39 loc) · 1.38 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
@Library('https://github.com/sealingtech/EDCOP-PIPELINE@master')
def pipeline = new io.edcop.Pipeline()
//def pipeline = new io.estrado.Pipeline()
node {
def app
stage('Clone repository') {
/* Let's make sure we have the repository cloned to our workspace */
checkout scm
}
stage('Build image') {
/* This builds the actual image; synonymous to
* docker build on the command line */
app = docker.build("gcr.io/edcop-public/hellonode")
}
stage('Test image') {
/* Ideally, we would run a test framework against our image.
* For this example, we're using a Volkswagen-type approach ;-) */
app.inside {
sh 'echo "Tests passed"'
}
}
stage('Push image') {
/* Finally, we'll push the image with two tags:
* First, the incremental build number from Jenkins
* Second, the 'latest' tag.
* Pushing multiple tags is cheap, as all the layers are reused. */
docker.withRegistry('https://gcr.io/edcop-public/', 'gcr:edcop-public') {
app.push("${env.BUILD_NUMBER}")
app.push("latest")
}
}
stage('Kubectl test') {
/* Let's make sure we have the repository cloned to our workspace */
pipeline.kubectlTest()
}
stage('helm deploy') {
sh 'helm install hellonode-chart'
}
}