-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile
55 lines (45 loc) · 1.52 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
pipeline {
agent {
kubernetes {
yamlFile './CI-CD/builder.yaml'
}
}
stages {
stage('Kaniko Build & Push Image'){
steps{
container('kaniko'){
script{
sh '''
/kaniko/executor --dockerfile `pwd`/CI-CD/dockerfile \
--context `pwd`/CI-CD \
--destination=nexus-repo-svc1.tools.svc.cluster.local:8082/myweb:lts \
--insecure \
--skip-tls-verify
'''
}
}
}
}
stage('Deploy App to Kubernetes') {
steps{
container('kubectl'){
withCredentials([file(credentialsId: 'mykubeconfig', variable: 'KUBECONFIG')]){
sh 'kubectl apply -f `pwd`/CI-CD/mysql.yaml'
sh 'kubectl apply -f `pwd`/CI-CD/app.yaml'
}
}
}
}
}
}
// podTemplate(inheritFrom: 'default')
// {
// node('app:jenkins'){
// stage('List Configmaps') {
// withKubeConfig([namespace: "tools"]) {
// sh 'kubectl get pods'
// sh 'kubectl run nginx --image=nginx'
// }
// }
// }
// }