-
Notifications
You must be signed in to change notification settings - Fork 15
/
Jenkinsfile
154 lines (145 loc) · 4.53 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
pipeline {
agent {
kubernetes {
label 'jenkins-pod'
defaultContainer 'jnlp'
yaml """
apiVersion: v1
kind: Pod
metadata:
labels:
app: jenkins-slave-pod
annotations:
k8s.aliyun.com/eci-cpu: 2
k8s.aliyun.com/eci-memory: 4Gi
spec:
# nodeSelector:
# type: virtual-kubelet
# tolerations:
# - key: virtual-kubelet.io/provider
# operator: Exists
containers:
- name: golang
image: golang:1.12
command:
- cat
tty: true
- name: kaniko
image: registry.cn-beijing.aliyuncs.com/acs-sample/jenkins-slave-kaniko:0.6.0
command:
- cat
tty: true
volumeMounts:
- name: ymian
mountPath: /root/.docker
- name: kubectl
image: roffe/kubectl:v1.13.2
command:
- cat
tty: true
- name: busybox
image: ymian/busybox
command:
- cat
tty: true
volumes:
- name: ymian
secret:
# you can replace secret to yours
secretName: ymian
items:
- key: .dockerconfigjson
path: config.json
"""
}
}
stages {
stage('Build') {
steps {
container('golang') {
sh """
go build -mod vendor -v
"""
}
}
}
stage('Image Build And Publish') {
steps {
container("kaniko") {
// you can replace `--destination=ymian/gin-sample` to yours
sh "kaniko -f `pwd`/Dockerfile -c `pwd` -d registry.cn-shenzhen.aliyuncs.com/ymian/gin-sample"
}
}
}
stage('Deploy to pro') {
when {
branch "master"
}
steps {
container("kubectl") {
withKubeConfig(
[
// you can replace `mo` to yours
credentialsId: 'pro-env',
serverUrl: 'https://kubernetes.default.svc.cluster.local'
]
) {
sh '''
kubectl apply -f `pwd`/deploy/deploy.yaml -n pro
kubectl wait --for=condition=Ready pod -l app=gin-sample --timeout=60s -n pro
'''
}
}
}
}
stage('Deploy other') {
when {
not { branch "master" }
}
steps {
container("kubectl") {
withKubeConfig(
[
// you can replace `mo` to yours
credentialsId: 'test-env',
serverUrl: 'https://kubernetes.default.svc.cluster.local'
]
) {
sh '''
kubectl apply -f `pwd`/deploy/deploy.yaml -n test
kubectl wait --for=condition=Ready pod -l app=gin-sample --timeout=60s -n test
'''
}
}
}
}
stage('Test') {
when {
not { branch "master" }
}
steps {
container("busybox") {
sh "./validate.sh"
}
}
}
}
post {
always {
notifyBuild()
}
}
}
def notifyBuild() {
def subject = "${currentBuild.result}: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]'"
def details = """<p>STARTED: Job '${env.JOB_NAME} [${env.BUILD_NUMBER}]':</p>
<p>Check console output at "<a href='${env.BUILD_URL}'>${env.JOB_NAME} [${env.BUILD_NUMBER}]</a>"</p>"""
emailext (
subject: subject,
mimeType: 'text/html',
// body: details,
body: '''${JELLY_SCRIPT, template="html"}''',
to: '[email protected]',
recipientProviders: [developers(), buildUser(), requestor(), upstreamDevelopers()]
)
}